-
Notifications
You must be signed in to change notification settings - Fork 158
/
handlers_test.go
129 lines (120 loc) · 3.28 KB
/
handlers_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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package main
import (
"bytes"
"encoding/json"
"net/http"
"net/http/httptest"
"reflect"
"testing"
)
func mockEntry() []Entry {
return []Entry{
{
API: "title",
Description: "description",
Auth: "apiKey",
HTTPS: false,
Cors: "Cors",
Link: "link",
Category: "category",
},
}
}
func assertResponseValid(t *testing.T, body *bytes.Buffer, expected []Entry) {
var resp Entries
if err := json.NewDecoder(body).Decode(&resp); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(resp.Entries, expected) {
t.Fatalf("handler returned wrong entry: got %v want %v",
resp.Entries, expected)
}
}
func TestHealthCheckHandler(t *testing.T) {
req, err := http.NewRequest("GET", "/health", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := healthCheckHandler()
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)
}
expected := `{"alive": true}`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func TestGetCategoriesHandler(t *testing.T) {
req, err := http.NewRequest("GET", "/categories", nil)
if err != nil {
t.Fatal(err)
}
testCases := []struct {
categories []string
expectedBody string
}{
{[]string{}, "{\"count\":0,\"categories\":[]}\n"},
{[]string{"cat1"}, "{\"count\":1,\"categories\":[\"cat1\"]}\n"},
{[]string{"cat1", "cat2", "cat3"}, "{\"count\":3,\"categories\":[\"cat1\",\"cat2\",\"cat3\"]}\n"},
}
for _, tc := range testCases {
categories = tc.categories
rr := httptest.NewRecorder()
handler := getCategoriesHandler()
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)
}
if rr.Body.String() != tc.expectedBody {
t.Errorf("handler returned wrong body: got %q want %q", rr.Body, tc.expectedBody)
}
}
}
func TestGetRandomHandler(t *testing.T) {
req, err := http.NewRequest("GET", "/random", nil)
if err != nil {
t.Fatal(err)
}
apiList.Entries = mockEntry()
rr := httptest.NewRecorder()
handler := getRandomHandler()
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)
}
assertResponseValid(t, rr.Body, apiList.Entries)
}
func TestGetEntriesHandler(t *testing.T) {
req, err := http.NewRequest("GET", "/api", nil)
if err != nil {
t.Fatal(err)
}
apiList.Entries = mockEntry()
rr := httptest.NewRecorder()
handler := getEntriesHandler()
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)
}
assertResponseValid(t, rr.Body, apiList.Entries)
}
func TestGetEntriesWithBadMethod(t *testing.T) {
req, err := http.NewRequest("POST", "/api", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := getEntriesHandler()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusMethodNotAllowed {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusMethodNotAllowed)
}
}