Files
kapow/internal/client/get_test.go
pancho horrillo f98784088d Normalize internal/client/*_test.go
* 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
2019-10-06 09:41:12 +02:00

52 lines
1000 B
Go

package client
import (
"bytes"
"net/http"
"testing"
gock "gopkg.in/h2non/gock.v1"
)
func TestWriteContentToWriter(t *testing.T) {
defer gock.Off()
gock.New("http://localhost").
Get("/handlers/HANDLER_BAR/request/body").
Reply(http.StatusOK).
BodyString("FOO")
var b bytes.Buffer
err := GetData(
"http://localhost", "HANDLER_BAR", "/request/body", &b)
if err != nil {
t.Errorf("Unexpected error: %q", err)
}
if !bytes.Equal(b.Bytes(), []byte("FOO")) {
t.Errorf("Received content mismatch: %q != %q", b.Bytes(), []byte("FOO"))
}
if !gock.IsDone() {
t.Error("No expected endpoint called")
}
}
func TestPropagateHTTPError(t *testing.T) {
defer gock.Off()
gock.New("http://localhost").
Get("/handlers/HANDLER_BAR/request/body").
Reply(http.StatusTeapot)
err := GetData(
"http://localhost", "HANDLER_BAR", "/request/body", nil)
if err == nil {
t.Errorf("Expected error not returned")
}
if !gock.IsDone() {
t.Error("No expected endpoint called")
}
}