quorum/core/state/state_test.go

231 lines
7.1 KiB
Go
Raw Normal View History

2015-07-06 17:54:22 -07:00
// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
2015-07-06 17:54:22 -07:00
//
// The go-ethereum library is free software: you can redistribute it and/or modify
2015-07-06 17:54:22 -07:00
// 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,
2015-07-06 17:54:22 -07:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-07-06 17:54:22 -07:00
// 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/>.
2015-07-06 17:54:22 -07:00
2014-10-31 06:43:14 -07:00
package state
import (
"bytes"
2015-02-20 02:37:33 -08:00
"math/big"
2015-03-19 02:57:02 -07:00
"testing"
2015-02-20 02:37:33 -08:00
checker "gopkg.in/check.v1"
2014-08-04 01:42:40 -07:00
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-16 09:09:08 -07:00
"github.com/ethereum/go-ethereum/ethdb"
)
type StateSuite struct {
2014-12-10 01:57:19 -08:00
state *StateDB
}
var _ = checker.Suite(&StateSuite{})
2015-03-16 09:09:08 -07:00
var toAddr = common.BytesToAddress
func (s *StateSuite) TestDump(c *checker.C) {
2015-02-20 02:37:33 -08:00
// generate a few entries
2015-03-16 09:09:08 -07:00
obj1 := s.state.GetOrNewStateObject(toAddr([]byte{0x01}))
2015-02-20 02:37:33 -08:00
obj1.AddBalance(big.NewInt(22))
2015-03-16 09:09:08 -07:00
obj2 := s.state.GetOrNewStateObject(toAddr([]byte{0x01, 0x02}))
2015-02-20 02:37:33 -08:00
obj2.SetCode([]byte{3, 3, 3, 3, 3, 3, 3})
2015-03-16 09:09:08 -07:00
obj3 := s.state.GetOrNewStateObject(toAddr([]byte{0x02}))
2015-02-20 02:37:33 -08:00
obj3.SetBalance(big.NewInt(44))
// write some of them to the trie
s.state.UpdateStateObject(obj1)
s.state.UpdateStateObject(obj2)
s.state.Commit()
2015-02-20 02:37:33 -08:00
// check that dump contains the state objects that are in trie
got := string(s.state.Dump())
want := `{
"root": "71edff0130dd2385947095001c73d9e28d862fc286fca2b922ca6f6f3cddfdd2",
2015-02-20 02:37:33 -08:00
"accounts": {
"0000000000000000000000000000000000000001": {
2015-02-20 02:37:33 -08:00
"balance": "22",
"nonce": 0,
"root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"code": "",
2015-02-20 02:37:33 -08:00
"storage": {}
},
"0000000000000000000000000000000000000002": {
"balance": "44",
"nonce": 0,
"root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"code": "",
"storage": {}
},
"0000000000000000000000000000000000000102": {
2015-02-20 02:37:33 -08:00
"balance": "0",
"nonce": 0,
"root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"codeHash": "87874902497a5bb968da31a2998d8f22e949d1ef6214bcdedd8bae24cca4b9e3",
"code": "03030303030303",
2015-02-20 02:37:33 -08:00
"storage": {}
}
}
}`
if got != want {
c.Errorf("dump mismatch:\ngot: %s\nwant: %s\n", got, want)
}
}
func (s *StateSuite) SetUpTest(c *checker.C) {
2015-01-07 04:17:48 -08:00
db, _ := ethdb.NewMemDatabase()
s.state, _ = New(common.Hash{}, db)
}
2015-03-19 02:57:02 -07:00
func TestNull(t *testing.T) {
db, _ := ethdb.NewMemDatabase()
state, _ := New(common.Hash{}, db)
2015-03-19 02:57:02 -07:00
2015-03-21 06:47:50 -07:00
address := common.HexToAddress("0x823140710bf13990e4500136726d8b55")
2015-04-01 02:42:02 -07:00
state.CreateAccount(address)
2015-03-19 02:57:02 -07:00
//value := common.FromHex("0x823140710bf13990e4500136726d8b55")
2015-06-17 03:53:22 -07:00
var value common.Hash
2015-03-21 06:47:50 -07:00
state.SetState(address, common.Hash{}, value)
state.Commit()
2015-03-21 06:47:50 -07:00
value = state.GetState(address, common.Hash{})
2015-06-17 03:53:22 -07:00
if !common.EmptyHash(value) {
t.Errorf("expected empty hash. got %x", value)
}
2015-03-19 02:57:02 -07:00
}
func (s *StateSuite) TestSnapshot(c *checker.C) {
2015-03-16 09:09:08 -07:00
stateobjaddr := toAddr([]byte("aa"))
2015-06-17 03:53:22 -07:00
var storageaddr common.Hash
data1 := common.BytesToHash([]byte{42})
data2 := common.BytesToHash([]byte{43})
2016-03-15 11:08:18 -07:00
// set initial state object value
2015-06-17 03:53:22 -07:00
s.state.SetState(stateobjaddr, storageaddr, data1)
// get snapshot of current state
snapshot := s.state.Copy()
// set new state object value
2015-06-17 03:53:22 -07:00
s.state.SetState(stateobjaddr, storageaddr, data2)
// restore snapshot
s.state.Set(snapshot)
// get state storage value
2015-06-17 03:53:22 -07:00
res := s.state.GetState(stateobjaddr, storageaddr)
c.Assert(data1, checker.DeepEquals, res)
}
// use testing instead of checker because checker does not support
// printing/logging in tests (-check.vv does not work)
func TestSnapshot2(t *testing.T) {
db, _ := ethdb.NewMemDatabase()
state, _ := New(common.Hash{}, db)
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([]byte{'c', 'a', 'f', 'e'})
so0.remove = false
so0.deleted = false
state.SetStateObject(so0)
root, _ := state.Commit()
state.Reset(root)
// and one with deleted == true
so1 := state.GetStateObject(stateobjaddr1)
so1.SetBalance(big.NewInt(52))
so1.SetNonce(53)
so1.SetCode([]byte{'c', 'a', 'f', 'e', '2'})
so1.remove = true
so1.deleted = true
state.SetStateObject(so1)
so1 = state.GetStateObject(stateobjaddr1)
if so1 != nil {
t.Fatalf("deleted object not nil when getting")
}
snapshot := state.Copy()
state.Set(snapshot)
so0Restored := state.GetStateObject(stateobjaddr0)
// Update lazily-loaded values before comparing.
so0Restored.GetState(db, storageaddr)
so0Restored.Code(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.storage) != len(so0.storage) {
t.Errorf("Storage size mismatch: have %d, want %d", len(so1.storage), len(so0.storage))
}
for k, v := range so1.storage {
if so0.storage[k] != v {
t.Errorf("Storage key %x mismatch: have %v, want %v", k, so0.storage[k], v)
}
}
for k, v := range so0.storage {
if so1.storage[k] != v {
t.Errorf("Storage key %x mismatch: have %v, want none.", k, v)
}
}
if so0.remove != so1.remove {
t.Fatalf("Remove mismatch: have %v, want %v", so0.remove, so1.remove)
}
if so0.deleted != so1.deleted {
t.Fatalf("Deleted mismatch: have %v, want %v", so0.deleted, so1.deleted)
}
}