70 lines
1.7 KiB
Go
70 lines
1.7 KiB
Go
package testkit
|
|
|
|
import (
|
|
"github.com/filecoin-project/go-address"
|
|
"github.com/filecoin-project/lotus/genesis"
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/testground/sdk-go/sync"
|
|
)
|
|
|
|
var (
|
|
GenesisTopic = sync.NewTopic("genesis", &GenesisMsg{})
|
|
BalanceTopic = sync.NewTopic("balance", &InitialBalanceMsg{})
|
|
PresealTopic = sync.NewTopic("preseal", &PresealMsg{})
|
|
ClientsAddrsTopic = sync.NewTopic("clients_addrs", &ClientAddressesMsg{})
|
|
MinersAddrsTopic = sync.NewTopic("miners_addrs", &MinerAddressesMsg{})
|
|
SlashedMinerTopic = sync.NewTopic("slashed_miner", &SlashedMinerMsg{})
|
|
PubsubTracerTopic = sync.NewTopic("pubsub_tracer", &PubsubTracerMsg{})
|
|
DrandConfigTopic = sync.NewTopic("drand_config", &DrandRuntimeInfo{})
|
|
)
|
|
|
|
var (
|
|
StateReady = sync.State("ready")
|
|
StateDone = sync.State("done")
|
|
StateStopMining = sync.State("stop-mining")
|
|
StateMinerPickSeqNum = sync.State("miner-pick-seq-num")
|
|
StateAbortTest = sync.State("abort-test")
|
|
)
|
|
|
|
type InitialBalanceMsg struct {
|
|
Addr address.Address
|
|
Balance float64
|
|
}
|
|
|
|
type PresealMsg struct {
|
|
Miner genesis.Miner
|
|
Seqno int64
|
|
}
|
|
|
|
type GenesisMsg struct {
|
|
Genesis []byte
|
|
Bootstrapper []byte
|
|
}
|
|
|
|
type ClientAddressesMsg struct {
|
|
PeerNetAddr peer.AddrInfo
|
|
WalletAddr address.Address
|
|
GroupSeq int64
|
|
}
|
|
|
|
type MinerAddressesMsg struct {
|
|
FullNetAddrs peer.AddrInfo
|
|
MinerNetAddrs peer.AddrInfo
|
|
MinerActorAddr address.Address
|
|
WalletAddr address.Address
|
|
}
|
|
|
|
type SlashedMinerMsg struct {
|
|
MinerActorAddr address.Address
|
|
}
|
|
|
|
type PubsubTracerMsg struct {
|
|
Multiaddr string
|
|
}
|
|
|
|
type DrandRuntimeInfo struct {
|
|
Config dtypes.DrandConfig
|
|
GossipBootstrap dtypes.DrandBootstrap
|
|
}
|