add test for api/client

Signed-off-by: Leo Chen <leo@harmony.one>
pull/200/head
Leo Chen 6 years ago
parent a89059ce2b
commit 16cb1711b0
  1. 24
      api/client/client_test.go

@ -0,0 +1,24 @@
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])
}
}
Loading…
Cancel
Save