2022-03-07 12:23:15 +00:00
|
|
|
package eth1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/helpers"
|
|
|
|
e2e "github.com/prysmaticlabs/prysm/testing/endtoend/params"
|
|
|
|
e2etypes "github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NodeSet represents a set of Eth1 nodes, none of which is a mining node.
|
|
|
|
type NodeSet struct {
|
|
|
|
e2etypes.ComponentRunner
|
|
|
|
started chan struct{}
|
|
|
|
enr string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewNodeSet creates and returns a set of Eth1 nodes.
|
|
|
|
func NewNodeSet() *NodeSet {
|
|
|
|
return &NodeSet{
|
|
|
|
started: make(chan struct{}, 1),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetMinerENR sets the miner's enode, used to connect to the miner through P2P.
|
|
|
|
func (s *NodeSet) SetMinerENR(enr string) {
|
|
|
|
s.enr = enr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts all the beacon nodes in set.
|
|
|
|
func (s *NodeSet) Start(ctx context.Context) error {
|
|
|
|
// Create Eth1 nodes. The number of nodes is the same as the number of beacon nodes.
|
|
|
|
// We want each beacon node to connect to its own Eth1 node.
|
|
|
|
// We start up one Eth1 node less than the beacon node count because the first
|
|
|
|
// beacon node will connect to the already existing Eth1 miner.
|
2022-04-05 14:02:46 +00:00
|
|
|
totalNodeCount := e2e.TestParams.BeaconNodeCount + e2e.TestParams.LighthouseBeaconNodeCount - 1
|
|
|
|
nodes := make([]e2etypes.ComponentRunner, totalNodeCount)
|
|
|
|
for i := 0; i < totalNodeCount; i++ {
|
2022-03-07 12:23:15 +00:00
|
|
|
// We start indexing nodes from 1 because the miner has an implicit 0 index.
|
|
|
|
node := NewNode(i+1, s.enr)
|
|
|
|
nodes[i] = node
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for all nodes to finish their job (blocking).
|
|
|
|
// Once nodes are ready passed in handler function will be called.
|
|
|
|
return helpers.WaitOnNodes(ctx, nodes, func() {
|
|
|
|
// All nodes started, close channel, so that all services waiting on a set, can proceed.
|
|
|
|
close(s.started)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Started checks whether beacon node set is started and all nodes are ready to be queried.
|
|
|
|
func (s *NodeSet) Started() <-chan struct{} {
|
|
|
|
return s.started
|
|
|
|
}
|