16efdf62d0
* move some utility methods into UnmanagedMiner so they can be used from other itests * make UnmanagedMiner aware of mock proofs so we can remove a lot of branching
119 lines
4.9 KiB
Go
119 lines
4.9 KiB
Go
package itests
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
"github.com/filecoin-project/lotus/itests/kit"
|
|
)
|
|
|
|
// Manually onboard CC sectors, bypassing lotus-miner onboarding pathways
|
|
func TestManualSectorOnboarding(t *testing.T) {
|
|
const defaultSectorSize = abi.SectorSize(2 << 10) // 2KiB
|
|
|
|
req := require.New(t)
|
|
|
|
for _, withMockProofs := range []bool{true, false} {
|
|
testName := "WithRealProofs"
|
|
if withMockProofs {
|
|
testName = "WithMockProofs"
|
|
}
|
|
t.Run(testName, func(t *testing.T) {
|
|
if testName == "WithRealProofs" {
|
|
kit.Expensive(t)
|
|
}
|
|
kit.QuietMiningLogs()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
var (
|
|
// need to pick a balance value so that the test is not racy on CI by running through it's WindowPostDeadlines too fast
|
|
blocktime = 2 * time.Millisecond
|
|
client kit.TestFullNode
|
|
minerA kit.TestMiner // A is a standard genesis miner
|
|
)
|
|
|
|
// Setup and begin mining with a single miner (A)
|
|
// Miner A will only be a genesis Miner with power allocated in the genesis block and will not onboard any sectors from here on
|
|
ens := kit.NewEnsemble(t, kit.MockProofs(withMockProofs)).
|
|
FullNode(&client, kit.SectorSize(defaultSectorSize)).
|
|
// preseal more than the default number of sectors to ensure that the genesis miner has power
|
|
// because our unmanaged miners won't produce blocks so we may get null rounds
|
|
Miner(&minerA, &client, kit.PresealSectors(5), kit.SectorSize(defaultSectorSize), kit.WithAllSubsystems()).
|
|
Start().
|
|
InterconnectAll()
|
|
blockMiners := ens.BeginMiningMustPost(blocktime)
|
|
req.Len(blockMiners, 1)
|
|
blockMiner := blockMiners[0]
|
|
|
|
// Instantiate MinerB to manually handle sector onboarding and power acquisition through sector activation.
|
|
// Unlike other miners managed by the Lotus Miner storage infrastructure, MinerB operates independently,
|
|
// performing all related tasks manually. Managed by the TestKit, MinerB has the capability to utilize actual proofs
|
|
// for the processes of sector onboarding and activation.
|
|
nodeOpts := []kit.NodeOpt{kit.SectorSize(defaultSectorSize), kit.OwnerAddr(client.DefaultKey)}
|
|
minerB, ens := ens.UnmanagedMiner(&client, nodeOpts...)
|
|
// MinerC is similar to MinerB, but onboards pieces instead of a pure CC sector
|
|
minerC, ens := ens.UnmanagedMiner(&client, nodeOpts...)
|
|
|
|
ens.Start()
|
|
|
|
build.Clock.Sleep(time.Second)
|
|
|
|
t.Log("Checking initial power ...")
|
|
|
|
// Miner A should have power as it has already onboarded sectors in the genesis block
|
|
head, err := client.ChainHead(ctx)
|
|
req.NoError(err)
|
|
p, err := client.StateMinerPower(ctx, minerA.ActorAddr, head.Key())
|
|
req.NoError(err)
|
|
t.Logf("MinerA RBP: %v, QaP: %v", p.MinerPower.QualityAdjPower.String(), p.MinerPower.RawBytePower.String())
|
|
|
|
// Miner B should have no power as it has yet to onboard and activate any sectors
|
|
minerB.AssertNoPower(ctx)
|
|
|
|
// Miner C should have no power as it has yet to onboard and activate any sectors
|
|
minerC.AssertNoPower(ctx)
|
|
|
|
// ---- Miner B onboards a CC sector
|
|
var bSectorNum abi.SectorNumber
|
|
var bRespCh chan kit.WindowPostResp
|
|
var bWdPostCancelF context.CancelFunc
|
|
|
|
bSectorNum, bRespCh, bWdPostCancelF = minerB.OnboardCCSector(ctx, kit.TestSpt)
|
|
// Miner B should still not have power as power can only be gained after sector is activated i.e. the first WindowPost is submitted for it
|
|
minerB.AssertNoPower(ctx)
|
|
// Ensure that the block miner checks for and waits for posts during the appropriate proving window from our new miner with a sector
|
|
blockMiner.WatchMinerForPost(minerB.ActorAddr)
|
|
|
|
// --- Miner C onboards sector with data/pieces
|
|
var cSectorNum abi.SectorNumber
|
|
var cRespCh chan kit.WindowPostResp
|
|
|
|
cSectorNum, cRespCh, _ = minerC.OnboardSectorWithPieces(ctx, kit.TestSpt)
|
|
// Miner C should still not have power as power can only be gained after sector is activated i.e. the first WindowPost is submitted for it
|
|
minerC.AssertNoPower(ctx)
|
|
// Ensure that the block miner checks for and waits for posts during the appropriate proving window from our new miner with a sector
|
|
blockMiner.WatchMinerForPost(minerC.ActorAddr)
|
|
|
|
// Wait till both miners' sectors have had their first post and are activated and check that this is reflected in miner power
|
|
minerB.WaitTillActivatedAndAssertPower(ctx, bRespCh, bSectorNum)
|
|
minerC.WaitTillActivatedAndAssertPower(ctx, cRespCh, cSectorNum)
|
|
|
|
// Miner B has activated the CC sector -> upgrade it with snapdeals
|
|
// Note: We can't activate a sector with mock proofs as the WdPost is successfully disputed and so no point
|
|
// in snapping it as snapping is only for activated sectors
|
|
if !withMockProofs {
|
|
minerB.SnapDeal(ctx, kit.TestSpt, bSectorNum)
|
|
// cancel the WdPost for the CC sector as the corresponding CommR is no longer valid
|
|
bWdPostCancelF()
|
|
}
|
|
})
|
|
}
|
|
}
|