You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
990 B
42 lines
990 B
package networkinfo
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/harmony-one/harmony/crypto/bls"
|
|
|
|
nodeconfig "github.com/harmony-one/harmony/internal/configs/node"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
"github.com/harmony-one/harmony/p2p/p2pimpl"
|
|
)
|
|
|
|
func TestService(t *testing.T) {
|
|
nodePriKey, _, err := utils.LoadKeyFromFile("/tmp/127.0.0.1.12345.key")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
peerPriKey := bls.RandPrivateKey()
|
|
peerPubKey := peerPriKey.GetPublicKey()
|
|
if peerPriKey == nil || peerPubKey == nil {
|
|
t.Fatal("generate key error")
|
|
}
|
|
selfPeer := p2p.Peer{IP: "127.0.0.1", Port: "12345", ConsensusPubKey: peerPubKey}
|
|
|
|
host, err := p2pimpl.NewHost(&selfPeer, nodePriKey)
|
|
if err != nil {
|
|
t.Fatal("unable to new host in harmony")
|
|
}
|
|
|
|
s, err := New(host, nodeconfig.GroupIDBeaconClient, nil, nil, "")
|
|
if err != nil {
|
|
t.Fatalf("New() failed: %s", err)
|
|
}
|
|
|
|
s.StartService()
|
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
s.StopService()
|
|
}
|
|
|