aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate/state_test.go
blob: 00c9de9d6b21ad9357e538d1bd9fa7d57f5c7414 (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
package ethstate

import (
    "testing"

    "github.com/ethereum/eth-go/ethdb"
    "github.com/ethereum/eth-go/ethtrie"
    "github.com/ethereum/eth-go/ethutil"
)

var ZeroHash256 = make([]byte, 32)

func TestSnapshot(t *testing.T) {
    db, _ := ethdb.NewMemDatabase()
    ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "")
    ethutil.Config.Db = db

    state := New(ethtrie.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)
    }
}