Files
kapow/internal/client/get_test.go
pancho horrillo 7ba54b32b3 Revert to using strings for simplicity
It is safe in this case.

* gock.BodyString(body string) coerces body into a []byte
* client.SetData() eventually resolves to a call to http.Client.Do(), which
handles the string gracefully as well.
2019-10-08 05:28:29 +02:00

51 lines
997 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")
}
}