* Adjust test style for easy reading, by using literals instead of vars
* Move comparison to the `bytes` domain, instead of `string`
* Simplify testing code by using bytes.Buffer directly
* More consistent naming of variables and dummies (HANDLE_{FOO,BAR,BAD})
* Consistent testing style of gock.IsDone()
* Stick to 80-column
51 lines
985 B
Go
51 lines
985 B
Go
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")
|
|
}
|
|
}
|