aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/state_test.go
blob: cd7f568045c27da7c0f697508ab5c1187a787065 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package state

import (
    "bytes"
    "math/big"
    "testing"

    "github.com/dexon-foundation/dexon/common"
    "github.com/dexon-foundation/dexon/crypto"
    "github.com/dexon-foundation/dexon/ethdb"
    checker "gopkg.in/check.v1"
)

type StateSuite struct {
    db    *ethdb.MemDatabase
    state *StateDB
}

var _ = checker.Suite(&StateSuite{})

var toAddr = common.BytesToAddress

func (s *StateSuite) TestDump(c *checker.C) {
    // generate a few entries
    obj1 := s.state.GetOrNewStateObject(toAddr([]byte{0x01}))
    obj1.AddBalance(big.NewInt(22))
    obj2 := s.state.GetOrNewStateObject(toAddr([]byte{0x01, 0x02}))
    obj2.SetCode(crypto.Keccak256Hash([]byte{3, 3, 3, 3, 3, 3, 3}), []byte{3, 3, 3, 3, 3, 3, 3})
    obj3 := s.state.GetOrNewStateObject(toAddr([]byte{0x02}))
    obj3.SetBalance(big.NewInt(44))

    // write some of them to the trie
    s.state.updateStateObject(obj1)
    s.state.updateStateObject(obj2)
    s.state.Commit(false)

    // check that dump contains the state objects that are in trie
    got := string(s.state.Dump())
    want := `{
    "root": "71edff0130dd2385947095001c73d9e28d862fc286fca2b922ca6f6f3cddfdd2",
    "accounts": {
        "0000000000000000000000000000000000000001": {
            "balance": "22",
            "nonce": 0,
            "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
            "codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
            "code": "",
            "storage": {}
        },
        "0000000000000000000000000000000000000002": {
            "balance": "44",
            "nonce": 0,
            "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
            "codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
            "code": "",
            "storage": {}
        },
        "0000000000000000000000000000000000000102": {
            "balance": "0",
            "nonce": 0,
            "root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
            "codeHash": "87874902497a5bb968da31a2998d8f22e949d1ef6214bcdedd8bae24cca4b9e3",
            "code": "03030303030303",
            "storage": {}
        }
    }
}`
    if got != want {
        c.Errorf("dump mismatch:\ngot: %s\nwant: %s\n", got, want)
    }
}

func (s *StateSuite) SetUpTest(c *checker.C) {
    s.db = ethdb.NewMemDatabase()
    s.state, _ = New(common.Hash{}, NewDatabase(s.db))
}

func (s *StateSuite) TestNull(c *checker.C) {
    address := common.HexToAddress("0x823140710bf13990e4500136726d8b55")
    s.state.CreateAccount(address)
    //value := common.FromHex("0x823140710bf13990e4500136726d8b55")
    var value common.Hash

    s.state.SetState(address, common.Hash{}, value)
    s.state.Commit(false)

    if value := s.state.GetState(address, common.Hash{}); value != (common.Hash{}) {
        c.Errorf("expected empty current value, got %x", value)
    }
    if value := s.state.GetCommittedState(address, common.Hash{}); value != (common.Hash{}) {
        c.Errorf("expected empty committed value, got %x", value)
    }
}

func (s *StateSuite) TestSnapshot(c *checker.C) {
    stateobjaddr := toAddr([]byte("aa"))
    var storageaddr common.Hash
    data1 := common.BytesToHash([]byte{42})
    data2 := common.BytesToHash([]byte{43})

    // snapshot the genesis state
    genesis := s.state.Snapshot()

    // set initial state object value
    s.state.SetState(stateobjaddr, storageaddr, data1)
    snapshot := s.state.Snapshot()

    // set a new state object value, revert it and ensure correct content
    s.state.SetState(stateobjaddr, storageaddr, data2)
    s.state.RevertToSnapshot(snapshot)

    c.Assert(s.state.GetState(stateobjaddr, storageaddr), checker.DeepEquals, data1)
    c.Assert(s.state.GetCommittedState(stateobjaddr, storageaddr), checker.DeepEquals, common.Hash{})

    // revert up to the genesis state and ensure correct content
    s.state.RevertToSnapshot(genesis)
    c.Assert(s.state.GetState(stateobjaddr, storageaddr), checker.DeepEquals, common.Hash{})
    c.Assert(s.state.GetCommittedState(stateobjaddr, storageaddr), checker.DeepEquals, common.Hash{})
}

func (s *StateSuite) TestSnapshotEmpty(c *checker.C) {
    s.state.RevertToSnapshot(s.state.Snapshot())
}

// use testing instead of checker because checker does not support
// printing/logging in tests (-check.vv does not work)
func TestSnapshot2(t *testing.T) {
    state, _ := New(common.Hash{}, NewDatabase(ethdb.NewMemDatabase()))

    stateobjaddr0 := toAddr([]byte("so0"))
    stateobjaddr1 := toAddr([]byte("so1"))
    var storageaddr common.Hash

    data0 := common.BytesToHash([]byte{17})
    data1 := common.BytesToHash([]byte{18})

    state.SetState(stateobjaddr0, storageaddr, data0)
    state.SetState(stateobjaddr1, storageaddr, data1)

    // db, trie are already non-empty values
    so0 := state.getStateObject(stateobjaddr0)
    so0.SetBalance(big.NewInt(42))
    so0.SetNonce(43)
    so0.SetCode(crypto.Keccak256Hash([]byte{'c', 'a', 'f', 'e'}), []byte{'c', 'a', 'f', 'e'})
    so0.suicided = false
    so0.deleted = false
    state.setStateObject(so0)

    root, _ := state.Commit(false)
    state.Reset(root)

    // and one with deleted == true
    so1 := state.getStateObject(stateobjaddr1)
    so1.SetBalance(big.NewInt(52))
    so1.SetNonce(53)
    so1.SetCode(crypto.Keccak256Hash([]byte{'c', 'a', 'f', 'e', '2'}), []byte{'c', 'a', 'f', 'e', '2'})
    so1.suicided = true
    so1.deleted = true
    state.setStateObject(so1)

    so1 = state.getStateObject(stateobjaddr1)
    if so1 != nil {
        t.Fatalf("deleted object not nil when getting")
    }

    snapshot := state.Snapshot()
    state.RevertToSnapshot(snapshot)

    so0Restored := state.getStateObject(stateobjaddr0)
    // Update lazily-loaded values before comparing.
    so0Restored.GetState(state.db, storageaddr)
    so0Restored.Code(state.db)
    // non-deleted is equal (restored)
    compareStateObjects(so0Restored, so0, t)

    // deleted should be nil, both before and after restore of state copy
    so1Restored := state.getStateObject(stateobjaddr1)
    if so1Restored != nil {
        t.Fatalf("deleted object not nil after restoring snapshot: %+v", so1Restored)
    }
}

func compareStateObjects(so0, so1 *stateObject, t *testing.T) {
    if so0.Address() != so1.Address() {
        t.Fatalf("Address mismatch: have %v, want %v", so0.address, so1.address)
    }
    if so0.Balance().Cmp(so1.Balance()) != 0 {
        t.Fatalf("Balance mismatch: have %v, want %v", so0.Balance(), so1.Balance())
    }
    if so0.Nonce() != so1.Nonce() {
        t.Fatalf("Nonce mismatch: have %v, want %v", so0.Nonce(), so1.Nonce())
    }
    if so0.data.Root != so1.data.Root {
        t.Errorf("Root mismatch: have %x, want %x", so0.data.Root[:], so1.data.Root[:])
    }
    if !bytes.Equal(so0.CodeHash(), so1.CodeHash()) {
        t.Fatalf("CodeHash mismatch: have %v, want %v", so0.CodeHash(), so1.CodeHash())
    }
    if !bytes.Equal(so0.code, so1.code) {
        t.Fatalf("Code mismatch: have %v, want %v", so0.code, so1.code)
    }

    if len(so1.dirtyStorage) != len(so0.dirtyStorage) {
        t.Errorf("Dirty storage size mismatch: have %d, want %d", len(so1.dirtyStorage), len(so0.dirtyStorage))
    }
    for k, v := range so1.dirtyStorage {
        if so0.dirtyStorage[k] != v {
            t.Errorf("Dirty storage key %x mismatch: have %v, want %v", k, so0.dirtyStorage[k], v)
        }
    }
    for k, v := range so0.dirtyStorage {
        if so1.dirtyStorage[k] != v {
            t.Errorf("Dirty storage key %x mismatch: have %v, want none.", k, v)
        }
    }
    if len(so1.originStorage) != len(so0.originStorage) {
        t.Errorf("Origin storage size mismatch: have %d, want %d", len(so1.originStorage), len(so0.originStorage))
    }
    for k, v := range so1.originStorage {
        if so0.originStorage[k] != v {
            t.Errorf("Origin storage key %x mismatch: have %v, want %v", k, so0.originStorage[k], v)
        }
    }
    for k, v := range so0.originStorage {
        if so1.originStorage[k] != v {
            t.Errorf("Origin storage key %x mismatch: have %v, want none.", k, v)
        }
    }
}