2014-10-31 13:43:14 +00:00
|
|
|
package state
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
import (
|
2015-02-20 10:37:33 +00:00
|
|
|
"math/big"
|
2015-03-19 09:57:02 +00:00
|
|
|
"testing"
|
2015-02-20 10:37:33 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
checker "gopkg.in/check.v1"
|
2014-08-04 08:42:40 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-16 16:09:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2014-07-22 09:54:48 +00:00
|
|
|
)
|
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
type StateSuite struct {
|
2014-12-10 09:57:19 +00:00
|
|
|
state *StateDB
|
2014-11-14 21:01:52 +00:00
|
|
|
}
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
var _ = checker.Suite(&StateSuite{})
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-03-16 16:09:08 +00:00
|
|
|
var toAddr = common.BytesToAddress
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
func (s *StateSuite) TestDump(c *checker.C) {
|
2015-03-16 16:09:08 +00:00
|
|
|
return
|
2015-02-20 10:37:33 +00:00
|
|
|
// generate a few entries
|
2015-03-16 16:09:08 +00:00
|
|
|
obj1 := s.state.GetOrNewStateObject(toAddr([]byte{0x01}))
|
2015-02-20 10:37:33 +00:00
|
|
|
obj1.AddBalance(big.NewInt(22))
|
2015-03-16 16:09:08 +00:00
|
|
|
obj2 := s.state.GetOrNewStateObject(toAddr([]byte{0x01, 0x02}))
|
2015-02-20 10:37:33 +00:00
|
|
|
obj2.SetCode([]byte{3, 3, 3, 3, 3, 3, 3})
|
2015-03-16 16:09:08 +00:00
|
|
|
obj3 := s.state.GetOrNewStateObject(toAddr([]byte{0x02}))
|
2015-02-20 10:37:33 +00:00
|
|
|
obj3.SetBalance(big.NewInt(44))
|
|
|
|
|
|
|
|
// write some of them to the trie
|
|
|
|
s.state.UpdateStateObject(obj1)
|
|
|
|
s.state.UpdateStateObject(obj2)
|
|
|
|
|
|
|
|
// check that dump contains the state objects that are in trie
|
|
|
|
got := string(s.state.Dump())
|
|
|
|
want := `{
|
2015-03-10 01:35:21 +00:00
|
|
|
"root": "6e277ae8357d013e50f74eedb66a991f6922f93ae03714de58b3d0c5e9eee53f",
|
2015-02-20 10:37:33 +00:00
|
|
|
"accounts": {
|
2015-03-10 01:35:21 +00:00
|
|
|
"1468288056310c82aa4c01a7e12a10f8111a0560e72b700555479031b86c357d": {
|
2015-02-20 10:37:33 +00:00
|
|
|
"balance": "22",
|
|
|
|
"nonce": 0,
|
|
|
|
"root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
|
|
|
|
"codeHash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
|
|
|
|
"storage": {}
|
|
|
|
},
|
2015-03-10 01:35:21 +00:00
|
|
|
"a17eacbc25cda025e81db9c5c62868822c73ce097cee2a63e33a2e41268358a1": {
|
2015-02-20 10:37:33 +00:00
|
|
|
"balance": "0",
|
|
|
|
"nonce": 0,
|
|
|
|
"root": "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
|
|
|
|
"codeHash": "87874902497a5bb968da31a2998d8f22e949d1ef6214bcdedd8bae24cca4b9e3",
|
|
|
|
"storage": {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`
|
|
|
|
if got != want {
|
|
|
|
c.Errorf("dump mismatch:\ngot: %s\nwant: %s\n", got, want)
|
|
|
|
}
|
2014-11-14 21:01:52 +00:00
|
|
|
}
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
func (s *StateSuite) SetUpTest(c *checker.C) {
|
2015-01-07 12:17:48 +00:00
|
|
|
db, _ := ethdb.NewMemDatabase()
|
2015-03-21 13:47:50 +00:00
|
|
|
s.state = New(common.Hash{}, db)
|
2014-11-14 21:01:52 +00:00
|
|
|
}
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-03-19 09:57:02 +00:00
|
|
|
func TestNull(t *testing.T) {
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
2015-03-21 13:47:50 +00:00
|
|
|
state := New(common.Hash{}, db)
|
2015-03-19 09:57:02 +00:00
|
|
|
|
2015-03-21 13:47:50 +00:00
|
|
|
address := common.HexToAddress("0x823140710bf13990e4500136726d8b55")
|
2015-04-01 09:42:02 +00:00
|
|
|
state.CreateAccount(address)
|
2015-03-19 09:57:02 +00:00
|
|
|
//value := common.FromHex("0x823140710bf13990e4500136726d8b55")
|
2015-06-17 10:53:22 +00:00
|
|
|
var value common.Hash
|
2015-03-21 13:47:50 +00:00
|
|
|
state.SetState(address, common.Hash{}, value)
|
2015-07-01 10:07:14 +00:00
|
|
|
state.SyncIntermediate()
|
2015-03-19 09:57:02 +00:00
|
|
|
state.Sync()
|
2015-03-21 13:47:50 +00:00
|
|
|
value = state.GetState(address, common.Hash{})
|
2015-06-17 10:53:22 +00:00
|
|
|
if !common.EmptyHash(value) {
|
|
|
|
t.Errorf("expected empty hash. got %x", value)
|
|
|
|
}
|
2015-03-19 09:57:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
func (s *StateSuite) TestSnapshot(c *checker.C) {
|
2015-03-16 16:09:08 +00:00
|
|
|
stateobjaddr := toAddr([]byte("aa"))
|
2015-06-17 10:53:22 +00:00
|
|
|
var storageaddr common.Hash
|
|
|
|
data1 := common.BytesToHash([]byte{42})
|
|
|
|
data2 := common.BytesToHash([]byte{43})
|
2014-11-14 21:01:52 +00:00
|
|
|
|
|
|
|
// set inital state object value
|
2015-06-17 10:53:22 +00:00
|
|
|
s.state.SetState(stateobjaddr, storageaddr, data1)
|
2014-11-14 21:01:52 +00:00
|
|
|
// get snapshot of current state
|
|
|
|
snapshot := s.state.Copy()
|
|
|
|
|
|
|
|
// set new state object value
|
2015-06-17 10:53:22 +00:00
|
|
|
s.state.SetState(stateobjaddr, storageaddr, data2)
|
2014-11-14 21:01:52 +00:00
|
|
|
// restore snapshot
|
|
|
|
s.state.Set(snapshot)
|
|
|
|
|
|
|
|
// get state storage value
|
2015-06-17 10:53:22 +00:00
|
|
|
res := s.state.GetState(stateobjaddr, storageaddr)
|
2014-11-14 21:01:52 +00:00
|
|
|
|
|
|
|
c.Assert(data1, checker.DeepEquals, res)
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|