2021-06-18 18:45:29 +00:00
|
|
|
package kit
|
2021-06-11 17:26:25 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2021-08-20 14:53:24 +00:00
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/wallet"
|
|
|
|
"github.com/filecoin-project/lotus/node"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DefaultPresealsPerBootstrapMiner is the number of preseals that every
|
|
|
|
// bootstrap miner has by default. It can be overridden through the
|
|
|
|
// PresealSectors option.
|
|
|
|
const DefaultPresealsPerBootstrapMiner = 2
|
|
|
|
|
2021-06-17 12:58:35 +00:00
|
|
|
const TestSpt = abi.RegisteredSealProof_StackedDrg2KiBV1_1
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
// nodeOpts is an options accumulating struct, where functional options are
|
|
|
|
// merged into.
|
|
|
|
type nodeOpts struct {
|
|
|
|
balance abi.TokenAmount
|
|
|
|
lite bool
|
|
|
|
sectors int
|
|
|
|
rpc bool
|
|
|
|
ownerKey *wallet.Key
|
|
|
|
extraNodeOpts []node.Option
|
2021-06-18 16:40:33 +00:00
|
|
|
|
2021-09-06 15:39:35 +00:00
|
|
|
subsystems MinerSubsystem
|
|
|
|
mainMiner *TestMiner
|
|
|
|
disableLibp2p bool
|
|
|
|
optBuilders []OptBuilder
|
|
|
|
sectorSize abi.SectorSize
|
|
|
|
maxStagingDealsBytes int64
|
2021-06-11 17:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultNodeOpts are the default options that will be applied to test nodes.
|
|
|
|
var DefaultNodeOpts = nodeOpts{
|
2021-08-20 14:53:24 +00:00
|
|
|
balance: big.Mul(big.NewInt(100000000), types.NewInt(build.FilecoinPrecision)),
|
|
|
|
sectors: DefaultPresealsPerBootstrapMiner,
|
|
|
|
sectorSize: abi.SectorSize(2 << 10), // 2KiB.
|
2021-06-11 17:26:25 +00:00
|
|
|
}
|
|
|
|
|
2021-06-15 09:46:32 +00:00
|
|
|
// OptBuilder is used to create an option after some other node is already
|
|
|
|
// active. Takes all active nodes as a parameter.
|
|
|
|
type OptBuilder func(activeNodes []*TestFullNode) node.Option
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
// NodeOpt is a functional option for test nodes.
|
|
|
|
type NodeOpt func(opts *nodeOpts) error
|
|
|
|
|
2021-06-18 16:40:33 +00:00
|
|
|
func WithAllSubsystems() NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
2021-07-12 10:12:29 +00:00
|
|
|
opts.subsystems = opts.subsystems.Add(SMarkets)
|
2021-06-18 16:40:33 +00:00
|
|
|
opts.subsystems = opts.subsystems.Add(SMining)
|
|
|
|
opts.subsystems = opts.subsystems.Add(SSealing)
|
|
|
|
opts.subsystems = opts.subsystems.Add(SSectorStorage)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:35:40 +00:00
|
|
|
func WithSubsystems(systems ...MinerSubsystem) NodeOpt {
|
2021-06-18 16:40:33 +00:00
|
|
|
return func(opts *nodeOpts) error {
|
2021-07-07 11:35:40 +00:00
|
|
|
for _, s := range systems {
|
|
|
|
opts.subsystems = opts.subsystems.Add(s)
|
|
|
|
}
|
2021-06-18 16:40:33 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-06 15:39:35 +00:00
|
|
|
func WithMaxStagingDealsBytes(size int64) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.maxStagingDealsBytes = size
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-24 14:02:51 +00:00
|
|
|
func DisableLibp2p() NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.disableLibp2p = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-18 16:40:33 +00:00
|
|
|
func MainMiner(m *TestMiner) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.mainMiner = m
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 17:26:25 +00:00
|
|
|
// OwnerBalance specifies the balance to be attributed to a miner's owner
|
|
|
|
// account. Only relevant when creating a miner.
|
|
|
|
func OwnerBalance(balance abi.TokenAmount) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.balance = balance
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// LiteNode specifies that this node will be a lite node. Only relevant when
|
|
|
|
// creating a fullnode.
|
|
|
|
func LiteNode() NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.lite = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PresealSectors specifies the amount of preseal sectors to give to a miner
|
|
|
|
// at genesis. Only relevant when creating a miner.
|
|
|
|
func PresealSectors(sectors int) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.sectors = sectors
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ThroughRPC makes interactions with this node throughout the test flow through
|
|
|
|
// the JSON-RPC API.
|
|
|
|
func ThroughRPC() NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.rpc = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OwnerAddr sets the owner address of a miner. Only relevant when creating
|
|
|
|
// a miner.
|
|
|
|
func OwnerAddr(wk *wallet.Key) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.ownerKey = wk
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConstructorOpts are Lotus node constructor options that are passed as-is to
|
|
|
|
// the node.
|
|
|
|
func ConstructorOpts(extra ...node.Option) NodeOpt {
|
|
|
|
return func(opts *nodeOpts) error {
|
|
|
|
opts.extraNodeOpts = extra
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2021-06-15 09:46:32 +00:00
|
|
|
|
2021-08-20 14:53:24 +00:00
|
|
|
// SectorSize sets the sector size for this miner. Start() will populate the
|
|
|
|
// corresponding proof type depending on the network version (genesis network
|
|
|
|
// version if the Ensemble is unstarted, or the current network version
|
|
|
|
// if started).
|
|
|
|
func SectorSize(sectorSize abi.SectorSize) NodeOpt {
|
2021-06-15 09:46:32 +00:00
|
|
|
return func(opts *nodeOpts) error {
|
2021-08-20 14:53:24 +00:00
|
|
|
opts.sectorSize = sectorSize
|
2021-06-15 09:46:32 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|