-
Notifications
You must be signed in to change notification settings - Fork 0
/
namer_test.go
41 lines (33 loc) · 794 Bytes
/
namer_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package main
import (
"encoding/json"
"github.com/google/go-cmp/cmp"
"net/http"
"net/http/httptest"
"testing"
)
func TestNamerHandler(t *testing.T) {
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(NameHandler)
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got '%v' want '%v'",
status, http.StatusOK)
}
want := nameResponse{
Name: "world",
}
got := nameResponse{}
err = json.NewDecoder(rr.Body).Decode(&got)
if err != nil {
t.Fatal(err)
}
// if expected.Status != response.Status {
if diff := cmp.Diff(want, got); diff != "" {
t.Errorf("healthyHandler mismatch (-want +got):\n%s", diff)
}
}