79453663b3
* Annotate api,proxy_util,blockstore_badger, policy tests * Annotate splitstore: bsbadger / markset * Annotate splitstore feature * Annotate union/timed blockstore tests * Annotate openrpc, diff_adt tests * Annotate error,drand,events tests * Annotate predicates_test * Fix annotations * Annotate tscache, gen tests * Annotate fundmanager test * Annotate repub and selection tests * Annotate statetree_test * Annotate forks_test * Annotate searchwait_test.go * Fix duplicated @@ symbols * Annotate chain stmgr/store tests * Annotate more (types) tests * More tests annotated * Annotate conformance chaos actor tests * Annotate more integration tests * Annotate journal system tests * Annotate more tests. * Annotate gas,head buffer behaviors * Fix markset annotations * doc: test annotations for the markets dagstore wrapper * Annotate miner_api test in dagstore * Annotate more test files * Remove bad annotations from fsrepo * Annotate wdpost system * Remove bad annotations * Renamce "conformance" to "chaos_actor" tests * doc: stm annotations for blockheader & election proof tests * Annotate remaining "A" tests * annotate: stm for error_test * memrepo_test.go * Annotate "b" file tests * message_test.go * doc: stm annotate for fsrepo_test * Annotate "c" file tests * Annotate "D" test files * message_test.go * doc: stm annotate for chain, node/config & client * docs: stm annotate node_test * Annotate u,v,wl tests * doc: stm annotations for various test files * Annotate "T" test files * doc: stm annotate for proxy_util_test & policy_test * doc: stm annotate for various tests * doc: final few stm annotations * Add mempool unit tests * Add two more memPool Add tests * Update submodules * Add check function tests * Add stm annotations, refactor test helper * Annotate api,proxy_util,blockstore_badger, policy tests * Annotate splitstore: bsbadger / markset solving merge conflicts * Annotate splitstore feature * Annotate union/timed blockstore tests * Annotate openrpc, diff_adt tests * Annotate error,drand,events tests * Annotate predicates_test * Fix annotations * Annotate tscache, gen tests * Annotate fundmanager test * Annotate statetree_test * Annotate forks_test * Annotate searchwait_test.go * Fix duplicated @@ symbols * Annotate chain stmgr/store tests * Annotate more (types) tests * More tests annotated * Annotate conformance chaos actor tests * Annotate more integration tests * Annotate journal system tests * Annotate more tests. * Annotate gas,head buffer behaviors solve merge conflict * Fix markset annotations * Annotate miner_api test in dagstore * Annotate more test files * doc: test annotations for the markets dagstore wrapper * Annotate wdpost system * Renamce "conformance" to "chaos_actor" tests * Annotate remaining "A" tests * doc: stm annotations for blockheader & election proof tests * annotate: stm for error_test * Annotate "b" file tests * memrepo_test.go * Annotate "c" file tests * message_test.go * Annotate "D" test files * doc: stm annotate for fsrepo_test * Annotate u,v,wl tests * message_test.go * doc: stm annotate for chain, node/config & client * docs: stm annotate node_test * Annotate "T" test files * doc: stm annotations for various test files * Add mempool unit tests solve merge conflict * doc: stm annotate for proxy_util_test & policy_test * doc: stm annotate for various tests * doc: final few stm annotations * Add two more memPool Add tests * Update submodules * Add check function tests solve conflict * Add stm annotations, refactor test helper solve merge conflict * Change CLI test kinds to "unit" * Fix double merged test * Fix ccupgrade_test merge * Fix lint issues * Add stm annotation to types_Test * Test vectors submodule * Add file annotation to burn_test Co-authored-by: Nikola Divic <divicnikola@gmail.com> Co-authored-by: TheMenko <themenkoprojects@gmail.com>
425 lines
9.1 KiB
Go
425 lines
9.1 KiB
Go
//stm: #unit
|
|
package state
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/filecoin-project/go-state-types/network"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
address "github.com/filecoin-project/go-address"
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
)
|
|
|
|
func BenchmarkStateTreeSet(b *testing.B) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001
|
|
cst := cbor.NewMemCborStore()
|
|
st, err := NewStateTree(cst, types.StateTreeVersion1)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ResetTimer()
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
a, err := address.NewIDAddress(uint64(i))
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
err = st.SetActor(a, &types.Actor{
|
|
Balance: types.NewInt(1258812523),
|
|
Code: builtin2.StorageMinerActorCodeID,
|
|
Head: builtin2.AccountActorCodeID,
|
|
Nonce: uint64(i),
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkStateTreeSetFlush(b *testing.B) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001
|
|
cst := cbor.NewMemCborStore()
|
|
sv, err := VersionForNetwork(build.NewestNetworkVersion)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ResetTimer()
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
a, err := address.NewIDAddress(uint64(i))
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
err = st.SetActor(a, &types.Actor{
|
|
Balance: types.NewInt(1258812523),
|
|
Code: builtin2.StorageMinerActorCodeID,
|
|
Head: builtin2.AccountActorCodeID,
|
|
Nonce: uint64(i),
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
if _, err := st.Flush(context.TODO()); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestResolveCache(t *testing.T) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001, @CHAIN_STATETREE_GET_ACTOR_001, @CHAIN_STATETREE_VERSION_FOR_NETWORK_001
|
|
//stm: @CHAIN_STATETREE_SNAPSHOT_001, @CHAIN_STATETREE_SNAPSHOT_CLEAR_001
|
|
cst := cbor.NewMemCborStore()
|
|
sv, err := VersionForNetwork(build.NewestNetworkVersion)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
nonId := address.NewForTestGetter()()
|
|
id, _ := address.NewIDAddress(1000)
|
|
|
|
st.lookupIDFun = func(a address.Address) (address.Address, error) {
|
|
if a == nonId {
|
|
return id, nil
|
|
}
|
|
return address.Undef, types.ErrActorNotFound
|
|
}
|
|
|
|
err = st.SetActor(nonId, &types.Actor{Nonce: 1})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
{
|
|
err = st.Snapshot(context.TODO())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
act, err := st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 1 {
|
|
t.Fatalf("expected nonce 1, got %d", act.Nonce)
|
|
}
|
|
err = st.SetActor(nonId, &types.Actor{Nonce: 2})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
act, err = st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 2 {
|
|
t.Fatalf("expected nonce 2, got %d", act.Nonce)
|
|
}
|
|
|
|
if err := st.Revert(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
st.ClearSnapshot()
|
|
}
|
|
|
|
act, err := st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 1 {
|
|
t.Fatalf("expected nonce 1, got %d", act.Nonce)
|
|
}
|
|
|
|
{
|
|
err = st.Snapshot(context.TODO())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
act, err := st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 1 {
|
|
t.Fatalf("expected nonce 1, got %d", act.Nonce)
|
|
}
|
|
err = st.SetActor(nonId, &types.Actor{Nonce: 2})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
act, err = st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 2 {
|
|
t.Fatalf("expected nonce 2, got %d", act.Nonce)
|
|
}
|
|
st.ClearSnapshot()
|
|
}
|
|
|
|
act, err = st.GetActor(nonId)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if act.Nonce != 2 {
|
|
t.Fatalf("expected nonce 2, got %d", act.Nonce)
|
|
}
|
|
|
|
}
|
|
|
|
func BenchmarkStateTree10kGetActor(b *testing.B) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001, @CHAIN_STATETREE_GET_ACTOR_001, @CHAIN_STATETREE_VERSION_FOR_NETWORK_001
|
|
//stm: @CHAIN_STATETREE_FLUSH_001
|
|
cst := cbor.NewMemCborStore()
|
|
sv, err := VersionForNetwork(build.NewestNetworkVersion)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
for i := 0; i < 10000; i++ {
|
|
a, err := address.NewIDAddress(uint64(i))
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
err = st.SetActor(a, &types.Actor{
|
|
Balance: types.NewInt(1258812523 + uint64(i)),
|
|
Code: builtin2.StorageMinerActorCodeID,
|
|
Head: builtin2.AccountActorCodeID,
|
|
Nonce: uint64(i),
|
|
})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
|
|
if _, err := st.Flush(context.TODO()); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ResetTimer()
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
a, err := address.NewIDAddress(uint64(i % 10000))
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
_, err = st.GetActor(a)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSetCache(t *testing.T) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001, @CHAIN_STATETREE_GET_ACTOR_001, @CHAIN_STATETREE_VERSION_FOR_NETWORK_001
|
|
cst := cbor.NewMemCborStore()
|
|
sv, err := VersionForNetwork(build.NewestNetworkVersion)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
a, err := address.NewIDAddress(uint64(222))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
act := &types.Actor{
|
|
Balance: types.NewInt(0),
|
|
Code: builtin2.StorageMinerActorCodeID,
|
|
Head: builtin2.AccountActorCodeID,
|
|
Nonce: 0,
|
|
}
|
|
|
|
err = st.SetActor(a, act)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
act.Nonce = 1
|
|
|
|
outact, err := st.GetActor(a)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if outact.Nonce == 1 {
|
|
t.Error("nonce should not have updated")
|
|
}
|
|
}
|
|
|
|
func TestSnapshots(t *testing.T) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001, @CHAIN_STATETREE_GET_ACTOR_001, @CHAIN_STATETREE_VERSION_FOR_NETWORK_001
|
|
//stm: @CHAIN_STATETREE_FLUSH_001, @CHAIN_STATETREE_SNAPSHOT_REVERT_001, CHAIN_STATETREE_SNAPSHOT_CLEAR_001
|
|
ctx := context.Background()
|
|
cst := cbor.NewMemCborStore()
|
|
|
|
sv, err := VersionForNetwork(build.NewestNetworkVersion)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var addrs []address.Address
|
|
//for _, a := range []string{"t15ocrptbu4i5qucjvvwecihd7fqqgzb27pz5l5zy", "t1dpyvgavvl3f4ujlk6odedss54z6rt5gyuknsuva", "t1feiejbkcvozy7iltt2pxzuoq4d2kpbsusugan7a", "t3rgjfqybjx7bahuhfv7nwfg3tlm4i4zyvldfirjvzm5z5xwjoqbj3rfi2mpmlxpqwxxxafgpkjilqzpg7cefa"} {
|
|
for _, a := range []string{"t0100", "t0101", "t0102", "t0103"} {
|
|
addr, err := address.NewFromString(a)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
addrs = append(addrs, addr)
|
|
}
|
|
|
|
if err := st.Snapshot(ctx); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := st.SetActor(addrs[0], &types.Actor{Code: builtin2.AccountActorCodeID, Head: builtin2.AccountActorCodeID, Balance: types.NewInt(55)}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
{ // sub call that will fail
|
|
if err := st.Snapshot(ctx); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := st.SetActor(addrs[1], &types.Actor{Code: builtin2.AccountActorCodeID, Head: builtin2.AccountActorCodeID, Balance: types.NewInt(77)}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := st.Revert(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
st.ClearSnapshot()
|
|
}
|
|
|
|
// more operations in top level call...
|
|
if err := st.SetActor(addrs[2], &types.Actor{Code: builtin2.AccountActorCodeID, Head: builtin2.AccountActorCodeID, Balance: types.NewInt(123)}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
{ // sub call that succeeds
|
|
if err := st.Snapshot(ctx); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := st.SetActor(addrs[3], &types.Actor{Code: builtin2.AccountActorCodeID, Head: builtin2.AccountActorCodeID, Balance: types.NewInt(5)}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
st.ClearSnapshot()
|
|
}
|
|
|
|
st.ClearSnapshot()
|
|
|
|
if _, err := st.Flush(ctx); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assertHas(t, st, addrs[0])
|
|
assertNotHas(t, st, addrs[1])
|
|
assertHas(t, st, addrs[2])
|
|
assertHas(t, st, addrs[3])
|
|
}
|
|
|
|
func assertHas(t *testing.T, st *StateTree, addr address.Address) {
|
|
_, err := st.GetActor(addr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func assertNotHas(t *testing.T, st *StateTree, addr address.Address) {
|
|
_, err := st.GetActor(addr)
|
|
if err == nil {
|
|
t.Fatal("shouldnt have found actor", addr)
|
|
}
|
|
}
|
|
|
|
func TestStateTreeConsistency(t *testing.T) {
|
|
//stm: @CHAIN_STATETREE_SET_ACTOR_001, @CHAIN_STATETREE_VERSION_FOR_NETWORK_001, @CHAIN_STATETREE_FLUSH_001
|
|
cst := cbor.NewMemCborStore()
|
|
|
|
// TODO: ActorUpgrade: this test tests pre actors v2
|
|
|
|
sv, err := VersionForNetwork(network.Version3)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
st, err := NewStateTree(cst, sv)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var addrs []address.Address
|
|
for i := 100; i < 150; i++ {
|
|
a, err := address.NewIDAddress(uint64(i))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
addrs = append(addrs, a)
|
|
}
|
|
|
|
randomCid, err := cid.Decode("bafy2bzacecu7n7wbtogznrtuuvf73dsz7wasgyneqasksdblxupnyovmtwxxu")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
for i, a := range addrs {
|
|
err := st.SetActor(a, &types.Actor{
|
|
Code: randomCid,
|
|
Head: randomCid,
|
|
Balance: types.NewInt(uint64(10000 + i)),
|
|
Nonce: uint64(1000 - i),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("while setting actor: %+v", err)
|
|
}
|
|
}
|
|
|
|
root, err := st.Flush(context.TODO())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
fmt.Println("root is: ", root)
|
|
if root.String() != "bafy2bzaceb2bhqw75pqp44efoxvlnm73lnctq6djair56bfn5x3gw56epcxbi" {
|
|
t.Fatal("MISMATCH!")
|
|
}
|
|
}
|