prysm-pulse/validator/node/node_test.go
Nishant Das f9a5d277e8
Add Ability for Validator Client to Provide Public Key (#567)
* Adding pubkey to validators

* Adding test

* Addressing Review
2018-09-26 11:27:52 +08:00

28 lines
731 B
Go

package node
import (
"flag"
"testing"
"github.com/prysmaticlabs/prysm/shared/testutil"
logTest "github.com/sirupsen/logrus/hooks/test"
"github.com/urfave/cli"
)
// Test that the sharding node can build with default flag values.
func TestNode_Builds(t *testing.T) {
hook := logTest.NewGlobal()
app := cli.NewApp()
set := flag.NewFlagSet("test", 0)
set.String("datadir", "/tmp/datadir", "the node data directory")
set.String("pukey", "f24f252", "set public key of validator")
context := cli.NewContext(app, set, nil)
_, err := NewShardInstance(context)
if err != nil {
t.Fatalf("Failed to create ShardEthereum: %v", err)
}
testutil.AssertLogsContain(t, hook, "Public Key not detected, generating a new one")
}