The core protocol of WoopChain
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.
 
 
 
woop/api/client/client_test.go

24 lines
433 B

package client
import (
"reflect"
"testing"
"github.com/harmony-one/harmony/p2p"
)
func TestClient(t *testing.T) {
leaders := map[uint32]p2p.Peer{
0: p2p.Peer{
IP: "127.0.0.1",
Port: "90",
},
}
client := NewClient(nil, &leaders)
leadersGot := client.GetLeaders()
if len(leadersGot) != 1 || !reflect.DeepEqual(leaders[0], leadersGot[0]) {
t.Errorf("expected: %v, got: %v\n", leaders[0], leadersGot[0])
}
}