lotus/chain/sync_test.go

239 lines
5.2 KiB
Go
Raw Normal View History

2019-07-29 19:34:34 +00:00
package chain_test
import (
"context"
"fmt"
"testing"
"time"
2019-07-29 19:34:34 +00:00
logging "github.com/ipfs/go-log"
2019-07-29 19:34:34 +00:00
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/stretchr/testify/require"
2019-07-29 19:34:34 +00:00
"github.com/filecoin-project/go-lotus/api"
2019-07-30 16:04:36 +00:00
"github.com/filecoin-project/go-lotus/chain"
2019-07-29 19:34:34 +00:00
"github.com/filecoin-project/go-lotus/chain/gen"
2019-07-30 16:04:36 +00:00
"github.com/filecoin-project/go-lotus/chain/types"
2019-07-29 19:34:34 +00:00
"github.com/filecoin-project/go-lotus/node"
2019-07-30 16:04:36 +00:00
"github.com/filecoin-project/go-lotus/node/impl"
2019-07-29 19:34:34 +00:00
"github.com/filecoin-project/go-lotus/node/modules"
"github.com/filecoin-project/go-lotus/node/repo"
)
const source = 0
2019-07-30 16:04:36 +00:00
func repoWithChain(t *testing.T, h int) (repo.Repo, []byte, []*types.FullBlock) {
2019-07-29 19:34:34 +00:00
g, err := gen.NewGenerator()
if err != nil {
t.Fatal(err)
}
2019-07-30 16:04:36 +00:00
blks := make([]*types.FullBlock, h)
2019-07-29 19:34:34 +00:00
for i := 0; i < h; i++ {
2019-07-30 16:04:36 +00:00
blks[i], err = g.NextBlock()
require.NoError(t, err)
2019-07-30 16:04:36 +00:00
fmt.Printf("block at H:%d: %s\n", blks[i].Header.Height, blks[i].Cid())
require.Equal(t, uint64(i+1), blks[i].Header.Height, "wrong height")
2019-07-29 19:34:34 +00:00
}
r, err := g.YieldRepo()
require.NoError(t, err)
genb, err := g.GenesisCar()
require.NoError(t, err)
2019-07-30 16:04:36 +00:00
return r, genb, blks
2019-07-29 19:34:34 +00:00
}
2019-07-30 13:20:40 +00:00
type syncTestUtil struct {
t *testing.T
2019-07-29 19:34:34 +00:00
2019-07-30 13:20:40 +00:00
ctx context.Context
mn mocknet.Mocknet
2019-07-29 19:34:34 +00:00
2019-07-30 13:20:40 +00:00
genesis []byte
2019-07-31 07:13:49 +00:00
blocks []*types.FullBlock
2019-07-30 13:20:40 +00:00
nds []api.FullNode
}
2019-07-30 16:04:36 +00:00
func prepSyncTest(t *testing.T, h int) *syncTestUtil {
logging.SetLogLevel("*", "INFO")
ctx := context.Background()
tu := &syncTestUtil{
t: t,
ctx: ctx,
mn: mocknet.New(ctx),
}
tu.addSourceNode(h)
tu.checkHeight("source", source, h)
// separate logs
fmt.Println("\x1b[31m///////////////////////////////////////////////////\x1b[39b")
return tu
}
func (tu *syncTestUtil) addSourceNode(gen int) {
2019-07-30 13:20:40 +00:00
if tu.genesis != nil {
tu.t.Fatal("source node already exists")
}
2019-07-29 19:34:34 +00:00
2019-07-30 16:04:36 +00:00
sourceRepo, genesis, blocks := repoWithChain(tu.t, gen)
2019-07-30 13:20:40 +00:00
var out api.FullNode
2019-07-30 13:20:40 +00:00
err := node.New(tu.ctx,
node.FullAPI(&out),
2019-07-29 19:34:34 +00:00
node.Online(),
node.Repo(sourceRepo),
2019-07-30 13:20:40 +00:00
node.MockHost(tu.mn),
2019-07-29 19:34:34 +00:00
node.Override(new(modules.Genesis), modules.LoadGenesis(genesis)),
2019-07-29 19:34:34 +00:00
)
2019-07-30 13:20:40 +00:00
require.NoError(tu.t, err)
2019-07-29 19:34:34 +00:00
2019-07-30 13:20:40 +00:00
tu.genesis = genesis
2019-07-30 16:04:36 +00:00
tu.blocks = blocks
tu.nds = append(tu.nds, out) // always at 0
2019-07-30 13:20:40 +00:00
}
2019-07-30 13:20:40 +00:00
func (tu *syncTestUtil) addClientNode() int {
if tu.genesis == nil {
tu.t.Fatal("source doesn't exists")
}
2019-07-30 13:20:40 +00:00
var out api.FullNode
2019-07-29 19:34:34 +00:00
2019-07-30 13:20:40 +00:00
err := node.New(tu.ctx,
node.FullAPI(&out),
2019-07-29 19:34:34 +00:00
node.Online(),
node.Repo(repo.NewMemory(nil)),
2019-07-30 13:20:40 +00:00
node.MockHost(tu.mn),
2019-07-29 19:34:34 +00:00
2019-07-30 13:20:40 +00:00
node.Override(new(modules.Genesis), modules.LoadGenesis(tu.genesis)),
2019-07-29 19:34:34 +00:00
)
2019-07-30 13:20:40 +00:00
require.NoError(tu.t, err)
tu.nds = append(tu.nds, out)
return len(tu.nds) - 1
}
func (tu *syncTestUtil) connect(from, to int) {
toPI, err := tu.nds[to].NetAddrsListen(tu.ctx)
require.NoError(tu.t, err)
2019-07-30 13:20:40 +00:00
err = tu.nds[from].NetConnect(tu.ctx, toPI)
require.NoError(tu.t, err)
}
2019-07-30 13:20:40 +00:00
func (tu *syncTestUtil) checkHeight(name string, n int, h int) {
b, err := tu.nds[n].ChainHead(tu.ctx)
require.NoError(tu.t, err)
2019-07-30 13:20:40 +00:00
require.Equal(tu.t, uint64(h), b.Height())
fmt.Printf("%s H: %d\n", name, b.Height())
}
2019-07-30 13:20:40 +00:00
func (tu *syncTestUtil) compareSourceState(with int) {
sourceAccounts, err := tu.nds[source].WalletList(tu.ctx)
require.NoError(tu.t, err)
2019-07-30 13:20:40 +00:00
for _, addr := range sourceAccounts {
sourceBalance, err := tu.nds[source].WalletBalance(tu.ctx, addr)
require.NoError(tu.t, err)
2019-07-30 16:04:36 +00:00
fmt.Printf("Source state check for %s, expect %s\n", addr, sourceBalance)
actBalance, err := tu.nds[with].WalletBalance(tu.ctx, addr)
require.NoError(tu.t, err)
2019-07-30 13:20:40 +00:00
require.Equal(tu.t, sourceBalance, actBalance)
2019-07-30 16:04:36 +00:00
fmt.Printf("Source state check <OK> for %s\n", addr)
}
}
2019-07-30 13:20:40 +00:00
2019-07-30 16:04:36 +00:00
func (tu *syncTestUtil) submitSourceBlock(to int, h int) {
// utility to simulate incoming blocks without miner process
2019-07-30 16:39:07 +00:00
// TODO: should call syncer directly, this won't work correctly in all cases
2019-07-30 13:20:40 +00:00
2019-07-30 16:04:36 +00:00
var b chain.BlockMsg
// -1 to match block.Height
2019-07-31 07:13:49 +00:00
b.Header = tu.blocks[h-1].Header
for _, msg := range tu.blocks[h-1].Messages {
2019-07-30 16:04:36 +00:00
c, err := tu.nds[to].(*impl.FullNodeAPI).Chain.PutMessage(msg)
require.NoError(tu.t, err)
b.Messages = append(b.Messages, c)
}
2019-07-30 16:04:36 +00:00
require.NoError(tu.t, tu.nds[to].ChainSubmitBlock(tu.ctx, &b))
}
func (tu *syncTestUtil) submitSourceBlocks(to int, h int, n int) {
for i := 0; i < n; i++ {
2019-07-31 07:13:49 +00:00
tu.submitSourceBlock(to, h+i)
2019-07-30 16:04:36 +00:00
}
}
2019-07-30 16:04:36 +00:00
func TestSyncSimple(t *testing.T) {
2019-07-31 07:13:49 +00:00
H := 21
2019-07-30 16:04:36 +00:00
tu := prepSyncTest(t, H)
client := tu.addClientNode()
tu.checkHeight("client", client, 0)
require.NoError(t, tu.mn.LinkAll())
tu.connect(1, 0)
2019-07-30 16:04:36 +00:00
time.Sleep(time.Second * 3)
tu.checkHeight("client", client, H)
tu.compareSourceState(client)
}
2019-07-30 17:26:53 +00:00
/*
TODO: this is broken because of how tu.submitSourceBlock works now
2019-07-30 16:04:36 +00:00
func TestSyncManual(t *testing.T) {
2019-07-30 16:39:07 +00:00
H := 20
2019-07-30 16:04:36 +00:00
tu := prepSyncTest(t, H)
client := tu.addClientNode()
tu.checkHeight("client", client, 0)
tu.submitSourceBlocks(client, 1, H)
2019-07-30 13:20:40 +00:00
time.Sleep(time.Second * 1)
2019-07-29 19:34:34 +00:00
tu.checkHeight("client", client, H)
tu.compareSourceState(client)
2019-07-29 19:34:34 +00:00
}
2019-07-30 16:39:07 +00:00
func TestSyncIncoming(t *testing.T) {
H := 1
tu := prepSyncTest(t, H)
producer := tu.addClientNode()
client := tu.addClientNode()
tu.mn.LinkAll()
tu.connect(client, producer)
for h := 0; h < H; h++ {
tu.submitSourceBlock(producer, h + 1)
time.Sleep(time.Millisecond * 200)
}
tu.checkHeight("client", client, H)
tu.checkHeight("producer", producer, H)
tu.compareSourceState(client)
}
2019-07-31 07:13:49 +00:00
*/