forked from cerc-io/plugeth
Update state tests to use gocheck
This commit is contained in:
parent
0a3a148ed4
commit
8f3a03c0cc
@ -1,6 +1,7 @@
|
||||
package state
|
||||
|
||||
import (
|
||||
. "gopkg.in/check.v1"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
@ -8,29 +9,41 @@ import (
|
||||
"github.com/ethereum/go-ethereum/trie"
|
||||
)
|
||||
|
||||
var ZeroHash256 = make([]byte, 32)
|
||||
func Test(t *testing.T) { TestingT(t) }
|
||||
|
||||
func TestSnapshot(t *testing.T) {
|
||||
type StateSuite struct {
|
||||
state *State
|
||||
}
|
||||
|
||||
var _ = Suite(&StateSuite{})
|
||||
|
||||
const expectedasbytes = "Expected % x Got % x"
|
||||
|
||||
// var ZeroHash256 = make([]byte, 32)
|
||||
|
||||
func (s *StateSuite) SetUpTest(c *C) {
|
||||
db, _ := ethdb.NewMemDatabase()
|
||||
ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "")
|
||||
ethutil.Config.Db = db
|
||||
|
||||
state := New(trie.New(db, ""))
|
||||
|
||||
stateObject := state.GetOrNewStateObject([]byte("aa"))
|
||||
|
||||
stateObject.SetStorage(ethutil.Big("0"), ethutil.NewValue(42))
|
||||
|
||||
snapshot := state.Copy()
|
||||
|
||||
stateObject = state.GetStateObject([]byte("aa"))
|
||||
stateObject.SetStorage(ethutil.Big("0"), ethutil.NewValue(43))
|
||||
|
||||
state.Set(snapshot)
|
||||
|
||||
stateObject = state.GetStateObject([]byte("aa"))
|
||||
res := stateObject.GetStorage(ethutil.Big("0"))
|
||||
if !res.Cmp(ethutil.NewValue(42)) {
|
||||
t.Error("Expected storage 0 to be 42", res)
|
||||
}
|
||||
s.state = New(trie.New(db, ""))
|
||||
}
|
||||
|
||||
func (s *StateSuite) TestSnapshot(c *C) {
|
||||
data1 := ethutil.NewValue(42)
|
||||
data2 := ethutil.NewValue(43)
|
||||
storageaddr := ethutil.Big("0")
|
||||
stateobjaddr := []byte("aa")
|
||||
|
||||
stateObject := s.state.GetOrNewStateObject(stateobjaddr)
|
||||
stateObject.SetStorage(storageaddr, data1)
|
||||
snapshot := s.state.Copy()
|
||||
|
||||
stateObject = s.state.GetStateObject(stateobjaddr)
|
||||
stateObject.SetStorage(storageaddr, data2)
|
||||
s.state.Set(snapshot)
|
||||
|
||||
stateObject = s.state.GetStateObject(stateobjaddr)
|
||||
res := stateObject.GetStorage(storageaddr)
|
||||
|
||||
c.Assert(data1, DeepEquals, res, Commentf(expectedasbytes, data1, res))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user