aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_test.go
blob: 95be0f373c1035b9a98c4ea9099594e6292680a4 (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
package ethchain

import (
    "github.com/ethereum/eth-go/ethdb"
    "github.com/ethereum/eth-go/ethutil"
    "testing"
)

func TestSnapshot(t *testing.T) {
    ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "", "ETH")

    db, _ := ethdb.NewMemDatabase()
    state := NewState(ethutil.NewTrie(db, ""))

    stateObject := NewContract([]byte("aa"), ethutil.Big1, ZeroHash256)
    state.UpdateStateObject(stateObject)
    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"))
    if !stateObject.GetStorage(ethutil.Big("0")).Cmp(ethutil.NewValue(42)) {
        t.Error("Expected storage 0 to be 42")
    }
}