mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-10 21:11:20 +00:00
415cf86250
This branch is intended to allow the devnet to be used for testing multiple consents types beyond the default clique. It is initially being used to test Bor consensus for polygon. It also has the following refactoring: ### 1. Network configuration The two node arg building functions miningNodeArgs and nonMiningNodeArgs have been replaced with a configuration struct which is used to configure: ```go network := &node.Network{ DataDir: dataDir, Chain: networkname.DevChainName, //Chain: networkname.BorDevnetChainName, Logger: logger, BasePrivateApiAddr: "localhost:9090", BaseRPCAddr: "localhost:8545", Nodes: []node.NetworkNode{ &node.Miner{}, &node.NonMiner{}, }, } ``` and start multiple nodes ```go network.Start() ``` Network start will create a network of nodes ensuring that all nodes are configured with non clashing network ports set via command line arguments on start-up. ### 2. Request Routing The `RequestRouter` has been updated to take a 'target' rather than using a static dispatcher which routes to a single node on the network. Each node in the network has its own request generator so command and services have more flexibility in request routing and `ExecuteAllMethods` currently takes the `node.Network` as an argument and can pick which node (node 0 for the moment) to send requests to.
184 lines
6.3 KiB
Go
184 lines
6.3 KiB
Go
package node_test
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/devnet/devnetutils"
|
|
"github.com/ledgerwatch/erigon/cmd/devnet/node"
|
|
)
|
|
|
|
func TestNodeArgs(t *testing.T) {
|
|
asMap := map[string]struct{}{}
|
|
|
|
args, _ := devnetutils.AsArgs(node.Miner{
|
|
Node: node.Node{
|
|
DataDir: filepath.Join("data", fmt.Sprintf("%d", 1)),
|
|
PrivateApiAddr: "localhost:9092",
|
|
},
|
|
})
|
|
|
|
for _, arg := range args {
|
|
asMap[arg] = struct{}{}
|
|
}
|
|
|
|
for _, arg := range miningNodeArgs("data", 1) {
|
|
if _, ok := asMap[arg]; !ok {
|
|
t.Fatal(arg, "missing")
|
|
}
|
|
|
|
delete(asMap, arg)
|
|
}
|
|
|
|
if len(asMap) > 0 {
|
|
t.Fatal(asMap, "not found")
|
|
}
|
|
|
|
args, _ = devnetutils.AsArgs(node.NonMiner{
|
|
Node: node.Node{
|
|
DataDir: filepath.Join("data", fmt.Sprintf("%d", 2)),
|
|
StaticPeers: "enode",
|
|
PrivateApiAddr: "localhost:9091",
|
|
},
|
|
})
|
|
|
|
for _, arg := range args {
|
|
asMap[arg] = struct{}{}
|
|
}
|
|
|
|
for _, arg := range nonMiningNodeArgs("data", 2, "enode") {
|
|
if _, ok := asMap[arg]; !ok {
|
|
t.Fatal(arg, "missing")
|
|
}
|
|
|
|
delete(asMap, arg)
|
|
}
|
|
|
|
if len(asMap) > 0 {
|
|
t.Fatal(asMap, "not found")
|
|
}
|
|
}
|
|
|
|
func TestParameterFromArgument(t *testing.T) {
|
|
enode := fmt.Sprintf("%q", "1234567")
|
|
testCases := []struct {
|
|
argInput string
|
|
paramInput string
|
|
expectedRes string
|
|
expectedErr error
|
|
}{
|
|
{"--datadir", "./dev", "--datadir=./dev", nil},
|
|
{"--chain", "dev", "--chain=dev", nil},
|
|
{"--dev.period", "30", "--dev.period=30", nil},
|
|
{"--staticpeers", enode, "--staticpeers=" + enode, nil},
|
|
{"", "30", "", errInvalidArgument},
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
got, err := parameterFromArgument(testCase.argInput, testCase.paramInput)
|
|
if got != testCase.expectedRes {
|
|
t.Errorf("expected %s, got %s", testCase.expectedRes, got)
|
|
}
|
|
if err != testCase.expectedErr {
|
|
t.Errorf("expected error: %s, got error: %s", testCase.expectedErr, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// errInvalidArgument for invalid arguments
|
|
var errInvalidArgument = errors.New("invalid argument")
|
|
|
|
// ParameterFromArgument merges the argument and parameter and returns a flag input string
|
|
func parameterFromArgument(arg, param string) (string, error) {
|
|
if arg == "" {
|
|
return "", errInvalidArgument
|
|
}
|
|
return fmt.Sprintf("%s=%s", arg, param), nil
|
|
}
|
|
|
|
const (
|
|
// BuildDirArg is the build directory for the devnet executable
|
|
buildDirArg = "./build/bin/devnet"
|
|
// DataDirArg is the datadir flag
|
|
dataDirArg = "--datadir"
|
|
// ChainArg is the chain flag
|
|
chainArg = "--chain"
|
|
// DevPeriodArg is the dev.period flag
|
|
devPeriodArg = "--dev.period"
|
|
// ConsoleVerbosityArg is the log.console.verbosity flag
|
|
consoleVerbosityArg = "--log.console.verbosity"
|
|
// LogDirArg is the log.dir.path flag
|
|
logDirArg = "--log.dir.path"
|
|
// TorrentPortArg is the --torrent.port flag argument
|
|
torrentPortArg = "--torrent.port"
|
|
// Mine is the mine flag
|
|
mine = "--mine"
|
|
// NoDiscover is the nodiscover flag
|
|
noDiscover = "--nodiscover"
|
|
// PrivateApiAddrArg is the private.api.addr flag
|
|
privateApiAddrArg = "--private.api.addr"
|
|
// StaticPeersArg is the staticpeers flag
|
|
staticPeersArg = "--staticpeers"
|
|
// HttpApiArg is the http.api flag
|
|
httpApiArg = "--http.api"
|
|
// WSArg is the --ws flag for rpcdaemon
|
|
wsArg = "--ws"
|
|
|
|
// DataDirParam is the datadir parameter
|
|
dataDirParam = "./dev"
|
|
// ChainParam is the chain parameter
|
|
chainParam = "dev"
|
|
// DevPeriodParam is the dev.period parameter
|
|
devPeriodParam = "30"
|
|
// ConsoleVerbosityParam is the verbosity parameter for the console logs
|
|
consoleVerbosityParam = "0"
|
|
// LogDirParam is the log directory parameter for logging to disk
|
|
logDirParam = "./cmd/devnet/debug_logs"
|
|
// TorrentPortParam is the port parameter for the second node
|
|
torrentPortParam = "42070"
|
|
// PrivateApiParamMine is the private.api.addr parameter for the mining node
|
|
privateApiParamMine = "localhost:9092"
|
|
// PrivateApiParamNoMine is the private.api.addr parameter for the non-mining node
|
|
privateApiParamNoMine = "localhost:9091"
|
|
// HttpApiParam is the http.api default parameter for rpcdaemon
|
|
httpApiParam = "admin,eth,erigon,web3,net,debug,trace,txpool,parity,ots"
|
|
)
|
|
|
|
// miningNodeArgs returns custom args for starting a mining node
|
|
func miningNodeArgs(dataDir string, nodeNumber int) []string {
|
|
nodeDataDir := filepath.Join(dataDir, fmt.Sprintf("%d", nodeNumber))
|
|
dataDirArg, _ := parameterFromArgument(dataDirArg, nodeDataDir)
|
|
chainType, _ := parameterFromArgument(chainArg, chainParam)
|
|
devPeriod, _ := parameterFromArgument(devPeriodArg, devPeriodParam)
|
|
privateApiAddr, _ := parameterFromArgument(privateApiAddrArg, privateApiParamMine)
|
|
httpApi, _ := parameterFromArgument(httpApiArg, httpApiParam)
|
|
ws := wsArg
|
|
consoleVerbosity, _ := parameterFromArgument(consoleVerbosityArg, consoleVerbosityParam)
|
|
p2pProtocol, _ := parameterFromArgument("--p2p.protocol", "68")
|
|
downloaderArg, _ := parameterFromArgument("--no-downloader", "true")
|
|
httpPortArg, _ := parameterFromArgument("--http.port", "8545")
|
|
authrpcPortArg, _ := parameterFromArgument("--authrpc.port", "8551")
|
|
|
|
return []string{buildDirArg, dataDirArg, chainType, privateApiAddr, httpPortArg, authrpcPortArg, mine, httpApi, ws, devPeriod, consoleVerbosity, p2pProtocol, downloaderArg}
|
|
}
|
|
|
|
// nonMiningNodeArgs returns custom args for starting a non-mining node
|
|
func nonMiningNodeArgs(dataDir string, nodeNumber int, enode string) []string {
|
|
nodeDataDir := filepath.Join(dataDir, fmt.Sprintf("%d", nodeNumber))
|
|
dataDirArg, _ := parameterFromArgument(dataDirArg, nodeDataDir)
|
|
chainType, _ := parameterFromArgument(chainArg, chainParam)
|
|
privateApiAddr, _ := parameterFromArgument(privateApiAddrArg, privateApiParamNoMine)
|
|
staticPeers, _ := parameterFromArgument(staticPeersArg, enode)
|
|
consoleVerbosity, _ := parameterFromArgument(consoleVerbosityArg, consoleVerbosityParam)
|
|
torrentPort, _ := parameterFromArgument(torrentPortArg, torrentPortParam)
|
|
p2pProtocol, _ := parameterFromArgument("--p2p.protocol", "68")
|
|
downloaderArg, _ := parameterFromArgument("--no-downloader", "true")
|
|
httpPortArg, _ := parameterFromArgument("--http.port", "8545")
|
|
httpApi, _ := parameterFromArgument(httpApiArg, "eth,debug,net,trace,web3,erigon")
|
|
authrpcPortArg, _ := parameterFromArgument("--authrpc.port", "8551")
|
|
|
|
return []string{buildDirArg, dataDirArg, chainType, privateApiAddr, httpPortArg, authrpcPortArg, httpApi, staticPeers, noDiscover, consoleVerbosity, torrentPort, p2pProtocol, downloaderArg}
|
|
}
|