wip
This commit is contained in:
parent
b63aa91660
commit
9fe0c3ec68
48
chain/events/tscache_test.go
Normal file
48
chain/events/tscache_test.go
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
package events
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"github.com/filecoin-project/go-lotus/chain/types"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTsCache(t *testing.T) {
|
||||||
|
tsc := newTSCache(50, func(context.Context, uint64, *types.TipSet) (*types.TipSet, error) {
|
||||||
|
t.Fatal("storage call")
|
||||||
|
return &types.TipSet{}, nil
|
||||||
|
})
|
||||||
|
|
||||||
|
h := uint64(75)
|
||||||
|
|
||||||
|
add := func() {
|
||||||
|
ts, err := types.NewTipSet([]*types.BlockHeader{{
|
||||||
|
Height: h,
|
||||||
|
StateRoot: dummyCid,
|
||||||
|
Messages: dummyCid,
|
||||||
|
MessageReceipts: dummyCid,
|
||||||
|
}})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if err := tsc.add(ts); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
h++
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := 0; i < 9000; i++ {
|
||||||
|
fmt.Printf("i=%d; tl=%d; tcl=%d\n", i, tsc.len, len(tsc.cache))
|
||||||
|
|
||||||
|
if i%90 > 60 {
|
||||||
|
if err := tsc.revert(tsc.best()); err != nil {
|
||||||
|
t.Fatal(err, "; i:", i)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
h--
|
||||||
|
} else {
|
||||||
|
add()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user