2017-10-11 14:20:51 +00:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2017-10-23 13:56:47 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2017-10-11 14:20:51 +00:00
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2017-10-23 13:56:47 +00:00
|
|
|
"strings"
|
2017-10-11 14:20:51 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
gethcommon "github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/status-im/status-go/geth/common"
|
|
|
|
"github.com/status-im/status-go/geth/params"
|
2017-10-20 09:06:22 +00:00
|
|
|
. "github.com/status-im/status-go/testing" //nolint: golint
|
2017-10-11 14:20:51 +00:00
|
|
|
)
|
|
|
|
|
2017-10-23 13:27:14 +00:00
|
|
|
var (
|
2017-10-23 16:16:15 +00:00
|
|
|
networkSelected = flag.String("network", "statuschain", "-network=NETWORKNAME or -network=NETWORKID to select network used for tests")
|
2017-10-23 13:27:14 +00:00
|
|
|
)
|
|
|
|
|
2017-10-11 14:20:51 +00:00
|
|
|
// TestNodeOption is a callback passed to StartTestNode which alters its config.
|
|
|
|
type TestNodeOption func(config *params.NodeConfig)
|
|
|
|
|
|
|
|
// WithUpstream returns TestNodeOption which enabled UpstreamConfig.
|
|
|
|
func WithUpstream(url string) TestNodeOption {
|
|
|
|
return func(config *params.NodeConfig) {
|
|
|
|
config.UpstreamConfig.Enabled = true
|
|
|
|
config.UpstreamConfig.URL = url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MakeTestNodeConfig defines a function to return a giving params.NodeConfig
|
|
|
|
// where specific network addresses are assigned based on provieded network id.
|
|
|
|
func MakeTestNodeConfig(networkID int) (*params.NodeConfig, error) {
|
|
|
|
testDir := filepath.Join(TestDataDir, TestNetworkNames[networkID])
|
|
|
|
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
testDir = filepath.ToSlash(testDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
// run tests with "INFO" log level only
|
|
|
|
// when `go test` invoked with `-v` flag
|
|
|
|
errorLevel := "ERROR"
|
|
|
|
if testing.Verbose() {
|
|
|
|
errorLevel = "INFO"
|
|
|
|
}
|
|
|
|
|
|
|
|
configJSON := `{
|
|
|
|
"NetworkId": ` + strconv.Itoa(networkID) + `,
|
|
|
|
"DataDir": "` + testDir + `",
|
|
|
|
"HTTPPort": ` + strconv.Itoa(TestConfig.Node.HTTPPort) + `,
|
|
|
|
"WSPort": ` + strconv.Itoa(TestConfig.Node.WSPort) + `,
|
|
|
|
"LogLevel": "` + errorLevel + `"
|
|
|
|
}`
|
|
|
|
|
|
|
|
nodeConfig, err := params.LoadNodeConfig(configJSON)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return nodeConfig, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FirstBlockHash validates Attach operation for the NodeManager.
|
|
|
|
func FirstBlockHash(nodeManager common.NodeManager) (string, error) {
|
|
|
|
// obtain RPC client for running node
|
|
|
|
runningNode, err := nodeManager.Node()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
rpcClient, err := runningNode.Attach()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// get first block
|
|
|
|
var firstBlock struct {
|
|
|
|
Hash gethcommon.Hash `json:"hash"`
|
|
|
|
}
|
|
|
|
|
|
|
|
err = rpcClient.CallContext(context.Background(), &firstBlock, "eth_getBlockByNumber", "0x0", true)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return firstBlock.Hash.Hex(), nil
|
|
|
|
}
|
2017-10-23 13:56:47 +00:00
|
|
|
|
|
|
|
// GetNetworkID returns appropriate network id for test based on
|
|
|
|
// default or provided -network flag.
|
|
|
|
func GetNetworkID() int {
|
|
|
|
switch strings.ToLower(networkSelected) {
|
|
|
|
case fmt.Sprintf("%d", params.MainNetworkID), "mainnet":
|
|
|
|
return params.MainNetworkID
|
|
|
|
case fmt.Sprintf("%d", params.RinkebyNetworkID), "rinkeby":
|
|
|
|
return params.RinkebyNetworkID
|
|
|
|
case fmt.Sprintf("%d", params.RopstenNetworkID), "ropsten":
|
|
|
|
return params.RopstenNetworkID
|
|
|
|
case fmt.Sprintf("%d", params.StatusChainNetworkID), "statuschain":
|
|
|
|
return params.StatusChainNetworkID
|
|
|
|
}
|
|
|
|
|
|
|
|
return params.StatusChainNetworkID
|
|
|
|
}
|