ipfs-cluster/api/rest/client/client_test.go
Hector Sanjuan 7b9ef115a2 rest/api/client: re-use the http client
This allows taking advantage of connection keep alive by having the
api client re-use the same connection. Additionally, an option
to close connections after every request is provided.

License: MIT
Signed-off-by: Hector Sanjuan <code@hector.link>
2017-12-07 11:27:37 +01:00

254 lines
4.4 KiB
Go

package client
import (
"testing"
cid "github.com/ipfs/go-cid"
ma "github.com/multiformats/go-multiaddr"
"github.com/ipfs/ipfs-cluster/api/rest"
"github.com/ipfs/ipfs-cluster/test"
)
var apiAddr = "/ip4/127.0.0.1/tcp/10005"
func testAPI(t *testing.T) *rest.API {
//logging.SetDebugLogging()
apiMAddr, _ := ma.NewMultiaddr(apiAddr)
cfg := &rest.Config{}
cfg.Default()
cfg.ListenAddr = apiMAddr
rest, err := rest.NewAPI(cfg)
if err != nil {
t.Fatal("should be able to create a new Api: ", err)
}
rest.SetClient(test.NewMockRPCClient(t))
return rest
}
func testClient(t *testing.T) (*Client, *rest.API) {
api := testAPI(t)
addr, _ := ma.NewMultiaddr(apiAddr)
cfg := &Config{
APIAddr: addr,
DisableKeepAlives: true,
}
c, err := NewClient(cfg)
if err != nil {
t.Fatal(err)
}
return c, api
}
func TestNewClient(t *testing.T) {
_, api := testClient(t)
api.Shutdown()
}
func TestVersion(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
v, err := c.Version()
if err != nil || v.Version == "" {
t.Logf("%+v", v)
t.Log(err)
t.Error("expected something in version")
}
}
func TestID(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
id, err := c.ID()
if err != nil {
t.Fatal(err)
}
if id.ID == "" {
t.Error("bad id")
}
}
func TestPeers(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ids, err := c.Peers()
if err != nil {
t.Fatal(err)
}
if len(ids) == 0 {
t.Error("expected some peers")
}
}
func TestPeersWithError(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
addr, _ := ma.NewMultiaddr("/ip4/127.0.0.1/tcp/44444")
c, _ = NewClient(&Config{APIAddr: addr, DisableKeepAlives: true})
ids, err := c.Peers()
if err == nil {
t.Fatal("expected error")
}
if ids == nil || len(ids) != 0 {
t.Fatal("expected no ids")
}
}
func TestPeerAdd(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
addr, _ := ma.NewMultiaddr("/ip4/1.2.3.4/tcp/1234/ipfs/" + test.TestPeerID1.Pretty())
id, err := c.PeerAdd(addr)
if err != nil {
t.Fatal(err)
}
if id.ID != test.TestPeerID1 {
t.Error("bad peer")
}
}
func TestPeerRm(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
err := c.PeerRm(test.TestPeerID1)
if err != nil {
t.Fatal(err)
}
}
func TestPin(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
err := c.Pin(ci, 7, "hello")
if err != nil {
t.Fatal(err)
}
}
func TestUnpin(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
err := c.Unpin(ci)
if err != nil {
t.Fatal(err)
}
}
func TestAllocations(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
pins, err := c.Allocations()
if err != nil {
t.Fatal(err)
}
if len(pins) == 0 {
t.Error("should be some pins")
}
}
func TestAllocation(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
pin, err := c.Allocation(ci)
if err != nil {
t.Fatal(err)
}
if pin.Cid.String() != test.TestCid1 {
t.Error("should be same pin")
}
}
func TestStatus(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
pin, err := c.Status(ci, false)
if err != nil {
t.Fatal(err)
}
if pin.Cid.String() != test.TestCid1 {
t.Error("should be same pin")
}
}
func TestStatusAll(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
pins, err := c.StatusAll(false)
if err != nil {
t.Fatal(err)
}
if len(pins) == 0 {
t.Error("there should be some pins")
}
}
func TestSync(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
pin, err := c.Sync(ci, false)
if err != nil {
t.Fatal(err)
}
if pin.Cid.String() != test.TestCid1 {
t.Error("should be same pin")
}
}
func TestSyncAll(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
pins, err := c.SyncAll(false)
if err != nil {
t.Fatal(err)
}
if len(pins) == 0 {
t.Error("there should be some pins")
}
}
func TestRecover(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
ci, _ := cid.Decode(test.TestCid1)
pin, err := c.Recover(ci, false)
if err != nil {
t.Fatal(err)
}
if pin.Cid.String() != test.TestCid1 {
t.Error("should be same pin")
}
}
func TestRecoverAll(t *testing.T) {
c, api := testClient(t)
defer api.Shutdown()
_, err := c.RecoverAll(true)
if err != nil {
t.Fatal(err)
}
}