package client import ( "bytes" "net/http" "testing" gock "gopkg.in/h2non/gock.v1" ) func TestListRoutesOKEmpty(t *testing.T) { defer gock.Off() gock.New("http://localhost:8080"). Get("/routes"). Reply(http.StatusOK) err := ListRoutes("http://localhost:8080", nil) if err != nil { t.Errorf("Unexpected error %q", err) } if !gock.IsDone() { t.Errorf("No endpoint called") } } func TestListRoutesOKSome(t *testing.T) { defer gock.Off() gock.New("http://localhost:8080"). Get("/routes"). Reply(http.StatusOK). JSON([]map[string]string{ {"foo": "bar"}, {"bar": "foo"}, }) var b bytes.Buffer err := ListRoutes("http://localhost:8080", &b) if err != nil { t.Errorf("Unexpected error: %q", err) } else if !bytes.Equal( b.Bytes(), []byte(`[{"foo":"bar"},{"bar":"foo"}]`+"\n")) { t.Errorf("Unexpected error: got %q, want %q", b.String(), `[{"foo":"bar"},{"bar":"foo"}]`+"\n") } if !gock.IsDone() { t.Errorf("No endpoint called") } }