lotus/itests/tape_test.go

72 lines
2.3 KiB
Go
Raw Normal View History

2021-12-10 10:33:29 +00:00
//stm: #integration
2021-05-17 12:28:09 +00:00
package itests
2020-10-12 06:31:23 +00:00
import (
"context"
"testing"
"time"
2022-06-14 15:00:51 +00:00
"github.com/stretchr/testify/require"
2020-10-12 06:31:23 +00:00
"github.com/filecoin-project/go-state-types/network"
2022-06-14 15:00:51 +00:00
2020-10-12 06:31:23 +00:00
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"
2021-06-18 18:45:29 +00:00
"github.com/filecoin-project/lotus/itests/kit"
sealing "github.com/filecoin-project/lotus/storage/pipeline"
2020-10-12 06:31:23 +00:00
)
func TestTapeFix(t *testing.T) {
2021-12-13 12:41:04 +00:00
//stm: @CHAIN_SYNCER_LOAD_GENESIS_001, @CHAIN_SYNCER_FETCH_TIPSET_001,
//stm: @CHAIN_SYNCER_START_001, @CHAIN_SYNCER_SYNC_001, @BLOCKCHAIN_BEACON_VALIDATE_BLOCK_VALUES_01
//stm: @CHAIN_SYNCER_COLLECT_CHAIN_001, @CHAIN_SYNCER_COLLECT_HEADERS_001, @CHAIN_SYNCER_VALIDATE_TIPSET_001
//stm: @CHAIN_SYNCER_NEW_PEER_HEAD_001, @CHAIN_SYNCER_VALIDATE_MESSAGE_META_001, @CHAIN_SYNCER_STOP_001
2021-12-14 10:33:33 +00:00
//stm: @CHAIN_INCOMING_HANDLE_INCOMING_BLOCKS_001, @CHAIN_INCOMING_VALIDATE_BLOCK_PUBSUB_001, @CHAIN_INCOMING_VALIDATE_MESSAGE_PUBSUB_001
2021-06-18 18:45:29 +00:00
kit.QuietMiningLogs()
var blocktime = 2 * time.Millisecond
// The "before" case is disabled, because we need the builder to mock 32 GiB sectors to accurately repro this case
// TODO: Make the mock sector size configurable and reenable this
// t.Run("before", func(t *testing.T) { testTapeFix(t, b, blocktime, false) })
2021-06-14 13:51:10 +00:00
t.Run("after", func(t *testing.T) { testTapeFix(t, blocktime, true) })
2020-10-12 06:31:23 +00:00
}
2021-06-14 13:51:10 +00:00
func testTapeFix(t *testing.T, blocktime time.Duration, after bool) {
2020-10-12 06:31:23 +00:00
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
networkVersion := network.Version4
2020-10-12 06:31:23 +00:00
if after {
networkVersion = network.Version5
2020-10-12 06:31:23 +00:00
}
_, miner, ens := kit.EnsembleMinimal(t, kit.MockProofs(), kit.GenesisNetworkVersion(networkVersion))
2021-06-14 13:51:10 +00:00
ens.InterconnectAll().BeginMining(blocktime)
2020-10-12 06:31:23 +00:00
2021-02-16 18:19:16 +00:00
sid, err := miner.PledgeSector(ctx)
2020-10-12 06:31:23 +00:00
require.NoError(t, err)
2021-06-14 13:51:10 +00:00
t.Log("All sectors is fsm")
2020-10-12 06:31:23 +00:00
// If before, we expect the precommit to fail
successState := api.SectorState(sealing.CommitFailed)
failureState := api.SectorState(sealing.Proving)
if after {
// otherwise, it should succeed.
successState, failureState = failureState, successState
}
for {
2021-02-16 18:19:16 +00:00
st, err := miner.SectorsStatus(ctx, sid.Number, false)
2020-10-12 06:31:23 +00:00
require.NoError(t, err)
if st.State == successState {
break
}
require.NotEqual(t, failureState, st.State)
build.Clock.Sleep(100 * time.Millisecond)
2021-06-14 13:51:10 +00:00
t.Log("WaitSeal")
2020-10-12 06:31:23 +00:00
}
}