forked from jsteenb2/mess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_test.go
229 lines (181 loc) · 6.19 KB
/
server_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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package allsrv_test
import (
"bytes"
"context"
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"testing"
"github.com/hashicorp/go-metrics"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/jsteenb2/mess/allsrv"
)
func TestServer(t *testing.T) {
t.Run("foo create", func(t *testing.T) {
t.Run("when provided a valid foo should pass", func(t *testing.T) {
met := newTestMetrics(t)
db := allsrv.ObserveDB("inmem", met)(new(allsrv.InmemDB))
var svr http.Handler = allsrv.NewServer(db,
allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"),
allsrv.WithIDFn(func() string {
return "id1"
}),
)
svr = allsrv.ObserveHandler("allsrv", met)(svr)
req := httptest.NewRequest("POST", "/foo", newJSONBody(t, allsrv.FooV0{
Name: "first-foo",
Note: "some note",
}))
req.SetBasicAuth("[email protected]", "PaSsWoRd")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusCreated, rec.Code)
expectJSONBody(t, rec.Body, func(t *testing.T, got allsrv.FooV0) {
want := allsrv.FooV0{
ID: "id1",
Name: "first-foo",
Note: "some note",
}
assert.Equal(t, want, got)
})
})
t.Run("when provided invalid basic auth should fail", func(t *testing.T) {
svr := allsrv.NewServer(new(allsrv.InmemDB), allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
req := httptest.NewRequest("POST", "/foo", newJSONBody(t, allsrv.FooV0{
Name: "first-foo",
Note: "some note",
}))
req.SetBasicAuth("[email protected]", "wrongO")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusUnauthorized, rec.Code)
})
})
t.Run("foo read", func(t *testing.T) {
t.Run("when querying for existing foo id should pass", func(t *testing.T) {
met := newTestMetrics(t)
db := allsrv.ObserveDB("inmem", met)(new(allsrv.InmemDB))
err := db.CreateFoo(context.TODO(), allsrv.Foo{
ID: "reader1",
Name: "read",
Note: "another note",
})
require.NoError(t, err)
var svr http.Handler = allsrv.NewServer(db, allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
svr = allsrv.ObserveHandler("allsrv", met)(svr)
req := httptest.NewRequest("GET", "/foo?id=reader1", nil)
req.SetBasicAuth("[email protected]", "PaSsWoRd")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusOK, rec.Code)
expectJSONBody(t, rec.Body, func(t *testing.T, got allsrv.FooV0) {
want := allsrv.FooV0{
ID: "reader1",
Name: "read",
Note: "another note",
}
assert.Equal(t, want, got)
})
})
t.Run("when provided invalid basic auth should fail", func(t *testing.T) {
svr := allsrv.NewServer(new(allsrv.InmemDB), allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
req := httptest.NewRequest("GET", "/foo?id=reader1", nil)
req.SetBasicAuth("[email protected]", "wrongO")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusUnauthorized, rec.Code)
})
})
t.Run("foo update", func(t *testing.T) {
t.Run("when updating an existing foo with valid changes should pass", func(t *testing.T) {
met := newTestMetrics(t)
db := allsrv.ObserveDB("inmem", met)(new(allsrv.InmemDB))
err := db.CreateFoo(context.TODO(), allsrv.Foo{
ID: "id1",
Name: "first_name",
Note: "first note",
})
require.NoError(t, err)
var svr http.Handler = allsrv.NewServer(db, allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
svr = allsrv.ObserveHandler("allsrv", met)(svr)
req := httptest.NewRequest("PUT", "/foo", newJSONBody(t, allsrv.FooV0{
ID: "id1",
Name: "second_name",
Note: "second note",
}))
req.SetBasicAuth("[email protected]", "PaSsWoRd")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
// note: lame we don't get the updated foo back
assert.Equal(t, http.StatusOK, rec.Code)
})
t.Run("when provided invalid basic auth should fail", func(t *testing.T) {
db := new(allsrv.InmemDB)
err := db.CreateFoo(context.TODO(), allsrv.Foo{
ID: "id1",
Name: "first_name",
Note: "first note",
})
require.NoError(t, err)
svr := allsrv.NewServer(db, allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
req := httptest.NewRequest("PUT", "/foo", newJSONBody(t, allsrv.FooV0{
ID: "id1",
Name: "second_name",
Note: "second note",
}))
req.SetBasicAuth("[email protected]", "wrongO")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusUnauthorized, rec.Code)
})
})
t.Run("foo delete", func(t *testing.T) {
t.Run("when deleting an existing foo should pass", func(t *testing.T) {
met := newTestMetrics(t)
db := allsrv.ObserveDB("inmem", met)(new(allsrv.InmemDB))
err := db.CreateFoo(context.TODO(), allsrv.Foo{
ID: "id1",
Name: "first_name",
Note: "first note",
})
require.NoError(t, err)
var svr http.Handler = allsrv.NewServer(db, allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
svr = allsrv.ObserveHandler("allsrv", met)(svr)
req := httptest.NewRequest("DELETE", "/foo?id=id1", nil)
req.SetBasicAuth("[email protected]", "PaSsWoRd")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusOK, rec.Code)
})
t.Run("when provided invalid basic auth should fail", func(t *testing.T) {
svr := allsrv.NewServer(new(allsrv.InmemDB), allsrv.WithBasicAuth("[email protected]", "PaSsWoRd"))
req := httptest.NewRequest("DELETE", "/foo?id=id1", nil)
req.SetBasicAuth("[email protected]", "wrongO")
rec := httptest.NewRecorder()
svr.ServeHTTP(rec, req)
assert.Equal(t, http.StatusUnauthorized, rec.Code)
})
})
}
func newJSONBody(t *testing.T, v any) *bytes.Buffer {
t.Helper()
var buf bytes.Buffer
err := json.NewEncoder(&buf).Encode(v)
require.NoError(t, err)
return &buf
}
func expectJSONBody[T any](t *testing.T, r io.Reader, assertFn func(t *testing.T, got T)) {
t.Helper()
var out T
err := json.NewDecoder(r).Decode(&out)
require.NoError(t, err)
assertFn(t, out)
}
func newTestMetrics(t *testing.T) *metrics.Metrics {
t.Helper()
met, err := metrics.New(&metrics.Config{}, &metrics.BlackholeSink{})
require.NoError(t, err)
return met
}