2021-06-10 12:25:36 +00:00
|
|
|
package itests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2021-06-10 17:25:02 +00:00
|
|
|
"fmt"
|
2021-06-10 14:54:16 +00:00
|
|
|
"path/filepath"
|
2021-06-10 12:25:36 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2021-06-10 14:54:16 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2021-06-10 12:25:36 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/market"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2021-06-11 17:26:25 +00:00
|
|
|
"github.com/filecoin-project/lotus/itests/kit2"
|
2021-06-10 12:25:36 +00:00
|
|
|
"github.com/filecoin-project/lotus/markets/storageadapter"
|
|
|
|
"github.com/filecoin-project/lotus/node"
|
|
|
|
market2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/market"
|
|
|
|
"github.com/stretchr/testify/require"
|
2021-06-10 17:25:02 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
2021-06-10 12:25:36 +00:00
|
|
|
)
|
|
|
|
|
2021-06-10 17:25:02 +00:00
|
|
|
func TestDealCyclesConcurrent(t *testing.T) {
|
2021-06-11 17:26:25 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping test in short mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
kit2.QuietMiningLogs()
|
2021-06-10 17:25:02 +00:00
|
|
|
|
|
|
|
blockTime := 10 * time.Millisecond
|
|
|
|
|
|
|
|
// For these tests where the block time is artificially short, just use
|
|
|
|
// a deal start epoch that is guaranteed to be far enough in the future
|
|
|
|
// so that the deal starts sealing in time
|
2021-06-11 17:26:25 +00:00
|
|
|
startEpoch := abi.ChainEpoch(2 << 12)
|
2021-06-10 17:25:02 +00:00
|
|
|
|
|
|
|
runTest := func(t *testing.T, n int, fastRetrieval bool, carExport bool) {
|
2021-06-11 17:26:25 +00:00
|
|
|
client, miner, ens := kit2.EnsembleMinimal(t, kit2.MockProofs())
|
2021-06-10 17:25:02 +00:00
|
|
|
ens.InterconnectAll().BeginMining(blockTime)
|
2021-06-11 17:26:25 +00:00
|
|
|
dh := kit2.NewDealHarness(t, client, miner)
|
|
|
|
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{
|
|
|
|
n: n,
|
|
|
|
fastRetrieval: fastRetrieval,
|
|
|
|
carExport: carExport,
|
|
|
|
startEpoch: startEpoch,
|
|
|
|
})
|
2021-06-10 17:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cycles := []int{1, 2, 4, 8}
|
|
|
|
for _, n := range cycles {
|
|
|
|
ns := fmt.Sprintf("%d", n)
|
|
|
|
t.Run(ns+"-fastretrieval-CAR", func(t *testing.T) { runTest(t, n, true, true) })
|
|
|
|
t.Run(ns+"-fastretrieval-NoCAR", func(t *testing.T) { runTest(t, n, true, false) })
|
|
|
|
t.Run(ns+"-stdretrieval-CAR", func(t *testing.T) { runTest(t, n, true, false) })
|
|
|
|
t.Run(ns+"-stdretrieval-NoCAR", func(t *testing.T) { runTest(t, n, false, false) })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
type fullDealCyclesOpts struct {
|
|
|
|
n int
|
|
|
|
fastRetrieval bool
|
|
|
|
carExport bool
|
|
|
|
startEpoch abi.ChainEpoch
|
|
|
|
}
|
|
|
|
|
|
|
|
func runConcurrentDeals(t *testing.T, dh *kit2.DealHarness, opts fullDealCyclesOpts) {
|
|
|
|
errgrp, _ := errgroup.WithContext(context.Background())
|
|
|
|
for i := 0; i < opts.n; i++ {
|
|
|
|
i := i
|
|
|
|
errgrp.Go(func() (err error) {
|
|
|
|
defer func() {
|
|
|
|
// This is necessary because golang can't deal with test
|
|
|
|
// failures being reported from children goroutines ¯\_(ツ)_/¯
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
err = fmt.Errorf("deal failed: %s", r)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
deal, res, inPath := dh.MakeOnlineDeal(context.Background(), 5+i, opts.fastRetrieval, opts.startEpoch)
|
|
|
|
outPath := dh.PerformRetrieval(context.Background(), deal, res.Root, opts.carExport)
|
|
|
|
kit2.AssertFilesEqual(t, inPath, outPath)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
require.NoError(t, errgrp.Wait())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDealsWithSealingAndRPC(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping test in short mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
kit2.QuietMiningLogs()
|
|
|
|
|
|
|
|
var blockTime = 1 * time.Second
|
|
|
|
|
|
|
|
client, miner, ens := kit2.EnsembleMinimal(t, kit2.ThroughRPC()) // no mock proofs.
|
|
|
|
ens.InterconnectAll().BeginMining(blockTime)
|
|
|
|
dh := kit2.NewDealHarness(t, client, miner)
|
|
|
|
|
|
|
|
t.Run("stdretrieval", func(t *testing.T) {
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{n: 1})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("fastretrieval", func(t *testing.T) {
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{n: 1, fastRetrieval: true})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("fastretrieval-twodeals-sequential", func(t *testing.T) {
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{n: 1, fastRetrieval: true})
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{n: 1, fastRetrieval: true})
|
|
|
|
})
|
|
|
|
}
|
2021-06-10 12:25:36 +00:00
|
|
|
|
|
|
|
func TestPublishDealsBatching(t *testing.T) {
|
|
|
|
var (
|
|
|
|
ctx = context.Background()
|
|
|
|
publishPeriod = 10 * time.Second
|
|
|
|
maxDealsPerMsg = uint64(2) // Set max deals per publish deals message to 2
|
|
|
|
startEpoch = abi.ChainEpoch(2 << 12)
|
|
|
|
)
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
kit2.QuietMiningLogs()
|
2021-06-10 12:25:36 +00:00
|
|
|
|
|
|
|
opts := node.Override(new(*storageadapter.DealPublisher),
|
|
|
|
storageadapter.NewDealPublisher(nil, storageadapter.PublishMsgConfig{
|
|
|
|
Period: publishPeriod,
|
|
|
|
MaxDealsPerMsg: maxDealsPerMsg,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
client, miner, ens := kit2.EnsembleMinimal(t, kit2.MockProofs(), kit2.ConstructorOpts(opts))
|
2021-06-10 12:25:36 +00:00
|
|
|
ens.InterconnectAll().BeginMining(10 * time.Millisecond)
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
dh := kit2.NewDealHarness(t, client, miner)
|
2021-06-10 12:25:36 +00:00
|
|
|
|
|
|
|
// Starts a deal and waits until it's published
|
|
|
|
runDealTillPublish := func(rseed int) {
|
2021-06-10 17:25:02 +00:00
|
|
|
res, _ := client.CreateImportFile(ctx, rseed, 0)
|
2021-06-10 12:25:36 +00:00
|
|
|
|
|
|
|
upds, err := client.ClientGetDealUpdates(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
dh.StartDeal(ctx, res.Root, false, startEpoch)
|
|
|
|
|
|
|
|
// TODO: this sleep is only necessary because deals don't immediately get logged in the dealstore, we should fix this
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
|
|
|
|
done := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
for upd := range upds {
|
|
|
|
if upd.DataRef.Root == res.Root && upd.State == storagemarket.StorageDealAwaitingPreCommit {
|
|
|
|
done <- struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
<-done
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run three deals in parallel
|
|
|
|
done := make(chan struct{}, maxDealsPerMsg+1)
|
|
|
|
for rseed := 1; rseed <= 3; rseed++ {
|
|
|
|
rseed := rseed
|
|
|
|
go func() {
|
|
|
|
runDealTillPublish(rseed)
|
|
|
|
done <- struct{}{}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for two of the deals to be published
|
|
|
|
for i := 0; i < int(maxDealsPerMsg); i++ {
|
|
|
|
<-done
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expect a single PublishStorageDeals message that includes the first two deals
|
|
|
|
msgCids, err := client.StateListMessages(ctx, &api.MessageMatch{To: market.Address}, types.EmptyTSK, 1)
|
|
|
|
require.NoError(t, err)
|
|
|
|
count := 0
|
|
|
|
for _, msgCid := range msgCids {
|
|
|
|
msg, err := client.ChainGetMessage(ctx, msgCid)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
if msg.Method == market.Methods.PublishStorageDeals {
|
|
|
|
count++
|
|
|
|
var pubDealsParams market2.PublishStorageDealsParams
|
|
|
|
err = pubDealsParams.UnmarshalCBOR(bytes.NewReader(msg.Params))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Len(t, pubDealsParams.Deals, int(maxDealsPerMsg))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
require.Equal(t, 1, count)
|
|
|
|
|
|
|
|
// The third deal should be published once the publish period expires.
|
|
|
|
// Allow a little padding as it takes a moment for the state change to
|
|
|
|
// be noticed by the client.
|
|
|
|
padding := 10 * time.Second
|
|
|
|
select {
|
|
|
|
case <-time.After(publishPeriod + padding):
|
|
|
|
require.Fail(t, "Expected 3rd deal to be published once publish period elapsed")
|
|
|
|
case <-done: // Success
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 13:04:39 +00:00
|
|
|
func TestFirstDealEnablesMining(t *testing.T) {
|
|
|
|
// test making a deal with a fresh miner, and see if it starts to mine.
|
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping test in short mode")
|
|
|
|
}
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
kit2.QuietMiningLogs()
|
2021-06-10 13:04:39 +00:00
|
|
|
|
|
|
|
var (
|
2021-06-11 17:26:25 +00:00
|
|
|
client kit2.TestFullNode
|
|
|
|
genMiner kit2.TestMiner // bootstrap
|
|
|
|
provider kit2.TestMiner // no sectors, will need to create one
|
2021-06-10 13:04:39 +00:00
|
|
|
)
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
ens := kit2.NewEnsemble(t, kit2.MockProofs())
|
|
|
|
ens.FullNode(&client)
|
|
|
|
ens.Miner(&genMiner, &client)
|
|
|
|
ens.Miner(&provider, &client, kit2.PresealSectors(0))
|
2021-06-10 13:04:39 +00:00
|
|
|
ens.Start().InterconnectAll().BeginMining(50 * time.Millisecond)
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
dh := kit2.NewDealHarness(t, &client, &provider)
|
2021-06-10 13:04:39 +00:00
|
|
|
|
2021-06-10 17:25:02 +00:00
|
|
|
ref, _ := client.CreateImportFile(ctx, 5, 0)
|
2021-06-10 13:04:39 +00:00
|
|
|
|
|
|
|
t.Log("FILE CID:", ref.Root)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// start a goroutine to monitor head changes from the client
|
|
|
|
// once the provider has mined a block, thanks to the power acquired from the deal,
|
|
|
|
// we pass the test.
|
|
|
|
providerMined := make(chan struct{})
|
|
|
|
heads, err := client.ChainNotify(ctx)
|
2021-06-10 17:25:02 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-06-10 13:04:39 +00:00
|
|
|
go func() {
|
|
|
|
for chg := range heads {
|
|
|
|
for _, c := range chg {
|
|
|
|
if c.Type != "apply" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, b := range c.Val.Blocks() {
|
|
|
|
if b.Miner == provider.ActorAddr {
|
|
|
|
close(providerMined)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// now perform the deal.
|
|
|
|
deal := dh.StartDeal(ctx, ref.Root, false, 0)
|
|
|
|
|
|
|
|
// TODO: this sleep is only necessary because deals don't immediately get logged in the dealstore, we should fix this
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
|
|
|
|
dh.WaitDealSealed(ctx, deal, false, false, nil)
|
|
|
|
|
|
|
|
<-providerMined
|
|
|
|
}
|
|
|
|
|
2021-06-10 14:54:16 +00:00
|
|
|
func TestOfflineDealFlow(t *testing.T) {
|
|
|
|
blocktime := 10 * time.Millisecond
|
|
|
|
|
|
|
|
// For these tests where the block time is artificially short, just use
|
|
|
|
// a deal start epoch that is guaranteed to be far enough in the future
|
|
|
|
// so that the deal starts sealing in time
|
|
|
|
startEpoch := abi.ChainEpoch(2 << 12)
|
|
|
|
|
|
|
|
runTest := func(t *testing.T, fastRet bool) {
|
|
|
|
ctx := context.Background()
|
2021-06-11 17:26:25 +00:00
|
|
|
client, miner, ens := kit2.EnsembleMinimal(t, kit2.MockProofs())
|
2021-06-10 14:54:16 +00:00
|
|
|
ens.InterconnectAll().BeginMining(blocktime)
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
dh := kit2.NewDealHarness(t, client, miner)
|
2021-06-10 14:54:16 +00:00
|
|
|
|
|
|
|
// Create a random file and import on the client.
|
2021-06-10 17:25:02 +00:00
|
|
|
res, inFile := client.CreateImportFile(ctx, 1, 0)
|
2021-06-10 14:54:16 +00:00
|
|
|
|
|
|
|
// Get the piece size and commP
|
2021-06-10 17:25:02 +00:00
|
|
|
rootCid := res.Root
|
|
|
|
pieceInfo, err := client.ClientDealPieceCID(ctx, rootCid)
|
2021-06-10 14:54:16 +00:00
|
|
|
require.NoError(t, err)
|
2021-06-10 17:25:02 +00:00
|
|
|
t.Log("FILE CID:", rootCid)
|
2021-06-10 14:54:16 +00:00
|
|
|
|
|
|
|
// Create a storage deal with the miner
|
|
|
|
maddr, err := miner.ActorAddress(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
addr, err := client.WalletDefaultAddress(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Manual storage deal (offline deal)
|
|
|
|
dataRef := &storagemarket.DataRef{
|
|
|
|
TransferType: storagemarket.TTManual,
|
2021-06-10 17:25:02 +00:00
|
|
|
Root: rootCid,
|
2021-06-10 14:54:16 +00:00
|
|
|
PieceCid: &pieceInfo.PieceCID,
|
|
|
|
PieceSize: pieceInfo.PieceSize.Unpadded(),
|
|
|
|
}
|
|
|
|
|
|
|
|
proposalCid, err := client.ClientStartDeal(ctx, &api.StartDealParams{
|
|
|
|
Data: dataRef,
|
|
|
|
Wallet: addr,
|
|
|
|
Miner: maddr,
|
|
|
|
EpochPrice: types.NewInt(1000000),
|
|
|
|
DealStartEpoch: startEpoch,
|
|
|
|
MinBlocksDuration: uint64(build.MinDealDuration),
|
|
|
|
FastRetrieval: fastRet,
|
|
|
|
})
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Wait for the deal to reach StorageDealCheckForAcceptance on the client
|
|
|
|
cd, err := client.ClientGetDealInfo(ctx, *proposalCid)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Eventually(t, func() bool {
|
|
|
|
cd, _ := client.ClientGetDealInfo(ctx, *proposalCid)
|
|
|
|
return cd.State == storagemarket.StorageDealCheckForAcceptance
|
|
|
|
}, 30*time.Second, 1*time.Second, "actual deal status is %s", storagemarket.DealStates[cd.State])
|
|
|
|
|
|
|
|
// Create a CAR file from the raw file
|
2021-06-10 17:25:02 +00:00
|
|
|
carFileDir := t.TempDir()
|
2021-06-10 14:54:16 +00:00
|
|
|
carFilePath := filepath.Join(carFileDir, "out.car")
|
2021-06-10 17:25:02 +00:00
|
|
|
err = client.ClientGenCar(ctx, api.FileRef{Path: inFile}, carFilePath)
|
2021-06-10 14:54:16 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Import the CAR file on the miner - this is the equivalent to
|
|
|
|
// transferring the file across the wire in a normal (non-offline) deal
|
|
|
|
err = miner.DealsImportData(ctx, *proposalCid, carFilePath)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Wait for the deal to be published
|
|
|
|
dh.WaitDealPublished(ctx, proposalCid)
|
|
|
|
|
|
|
|
t.Logf("deal published, retrieving")
|
|
|
|
|
|
|
|
// Retrieve the deal
|
2021-06-10 17:25:02 +00:00
|
|
|
outFile := dh.PerformRetrieval(ctx, proposalCid, rootCid, false)
|
2021-06-10 14:54:16 +00:00
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
kit2.AssertFilesEqual(t, inFile, outFile)
|
2021-06-10 17:25:02 +00:00
|
|
|
}
|
2021-06-10 14:54:16 +00:00
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
t.Run("stdretrieval", func(t *testing.T) { runTest(t, false) })
|
|
|
|
t.Run("fastretrieval", func(t *testing.T) { runTest(t, true) })
|
2021-06-10 14:54:16 +00:00
|
|
|
}
|
|
|
|
|
2021-06-13 22:43:22 +00:00
|
|
|
func TestZeroPricePerByteRetrieval(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("skipping test in short mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
kit2.QuietMiningLogs()
|
|
|
|
|
|
|
|
var (
|
|
|
|
blockTime = 10 * time.Millisecond
|
|
|
|
startEpoch = abi.ChainEpoch(2 << 12)
|
|
|
|
)
|
|
|
|
|
|
|
|
client, miner, ens := kit2.EnsembleMinimal(t, kit2.MockProofs())
|
|
|
|
ens.InterconnectAll().BeginMining(blockTime)
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
ask, err := miner.MarketGetRetrievalAsk(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
ask.PricePerByte = abi.NewTokenAmount(0)
|
|
|
|
err = miner.MarketSetRetrievalAsk(ctx, ask)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
dh := kit2.NewDealHarness(t, client, miner)
|
|
|
|
runConcurrentDeals(t, dh, fullDealCyclesOpts{
|
|
|
|
n: 1,
|
|
|
|
startEpoch: startEpoch,
|
|
|
|
})
|
|
|
|
}
|