-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse_test.go
More file actions
459 lines (416 loc) · 10.9 KB
/
Copy pathresponse_test.go
File metadata and controls
459 lines (416 loc) · 10.9 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
package zttp
import (
"slices"
"strings"
"testing"
"time"
)
// A template user struct for testing
type User struct {
Name string `json:"name"`
Age int `json:"age"`
}
// Test sending response
func TestResponseMethods(t *testing.T) {
tests := []struct {
name string
setup func(*Res)
contains []string
headers map[string]string
}{
{
name: "Send plain text",
setup: func(r *Res) {
r.Send("OK")
},
contains: []string{
"HTTP/1.1 200 OK",
"Content-Type: text/plain",
"OK",
},
},
{
name: "Send JSON from map",
setup: func(r *Res) {
r.Json(map[string]string{"message": "OK"})
},
contains: []string{
"HTTP/1.1 200 OK",
"Content-Type: application/json",
`"message":"OK"`,
},
},
{
name: "Send JSON from struct",
setup: func(r *Res) {
r.Json(User{Name: "Zkrallah", Age: 21})
},
contains: []string{
"HTTP/1.1 200 OK",
"Content-Type: application/json",
`"name":"Zkrallah"`,
`"age":21`,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
conn := &MockConn{}
res := &Res{
Socket: conn,
StatusCode: 200,
Headers: make(map[string][]string),
}
tt.setup(res)
output := string(conn.outBuf)
for _, s := range tt.contains {
if !strings.Contains(output, s) {
t.Errorf("Expected response to contain '%s'", s)
}
}
for k, v := range tt.headers {
if res.Headers[k][0] != v {
t.Errorf("Expected header %s: %s, got %s", k, v, res.Headers[k][0])
}
}
})
}
}
// Test setting response headers
func TestResponseHeaders(t *testing.T) {
t.Run("Multiple headers", func(t *testing.T) {
res := Res{Headers: make(map[string][]string)}
res.Header("Header1", "header1")
res.Header("Header1", "notheader1")
res.Header("Header2", "header2")
if len(res.Headers["Header1"]) != 2 || res.Headers["Header1"][0] != "header1" ||
res.Headers["Header1"][1] != "notheader1" || res.Headers["Header2"][0] != "header2" {
t.Error("Header setting failed")
}
})
}
// Test setting response status code
func TestResponseStatus(t *testing.T) {
tests := []struct {
name string
code int
expected int
}{
{"Status 500", 500, 500},
{"Status 301", 301, 301},
{"Status 404", 404, 404},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res := &Res{}
res.Status(tt.code)
if res.StatusCode != tt.expected {
t.Errorf("Expected status %d, got %d", tt.expected, res.StatusCode)
}
})
}
}
// Test static file serving
func TestStaticFileServing(t *testing.T) {
tests := []struct {
name string
file string
contains string
ctype string
}{
{
name: "Serve HTML index",
file: "index.html",
contains: "<h1>Hello from static index file!</h1>",
ctype: "text/html; charset=utf-8",
},
{
name: "Serve HTML home",
file: "home.html",
contains: "<h1>Hello from static home file!</h1>",
ctype: "text/html; charset=utf-8",
},
{
name: "Serve PNG image",
file: "download.png",
// Can't check binary content
contains: "",
ctype: "image/png",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
conn := &MockConn{}
res := &Res{
Socket: conn,
Headers: make(map[string][]string),
}
res.Static(tt.file, "./examples/static-file-serving/public/")
output := string(conn.outBuf)
if res.Headers["Content-Type"][0] != tt.ctype {
t.Errorf("Expected Content-Type %s, got %s", tt.ctype, res.Headers["Content-Type"][0])
}
if tt.contains != "" && !strings.Contains(output, tt.contains) {
t.Errorf("Expected response to contain '%s'", tt.contains)
}
})
}
}
// Test setting response cookie
func TestResponseCookies(t *testing.T) {
t.Run("Complex cookie", func(t *testing.T) {
res := &Res{Headers: make(map[string][]string)}
cookie := Cookie{
Name: "super",
Value: "cookie",
Path: "/",
Domain: "example.com",
Expires: time.Date(2025, 1, 1, 0, 0, 0, 0, time.UTC),
MaxAge: 86400,
Secure: true,
HttpOnly: true,
SameSite: "Lax",
SessionOnly: true,
}
res.SetCookie(cookie)
cookies := res.Headers["Set-Cookie"]
if len(cookies) != 1 {
t.Fatalf("Expected 1 cookie, got %d", len(cookies))
}
expected := []string{
"super=cookie",
"Path=/",
"Domain=example.com",
"Expires=Wed, 01 Jan 2025 00:00:00 UTC",
"Max-Age=86400",
"Secure",
"HttpOnly",
"SameSite=Lax",
"SessionOnly=true",
}
parts := strings.Split(cookies[0], "; ")
if len(parts) != len(expected) {
t.Fatalf("Expected %d cookie parts, got %d", len(expected), len(parts))
}
for i, part := range expected {
if parts[i] != part {
t.Errorf("Part %d mismatch:\nExpected: %s\nGot: %s", i, part, parts[i])
}
}
})
}
func TestVaryHeader(t *testing.T) {
tests := []struct {
name string
fields []string
expected string
}{
{
name: "Single field",
fields: []string{"Accept"},
expected: "Vary: Accept",
},
{
name: "Multiple fields",
fields: []string{"Accept-Encoding", "Accept-Language"},
expected: "Vary: Accept-Encoding, Accept-Language",
},
{
name: "Duplicate fields",
fields: []string{"Accept", "Accept", "User-Agent"},
expected: "Vary: Accept, User-Agent",
},
{
name: "Case normalization",
fields: []string{"accept-encoding", "ACCEPT-LANGUAGE"},
expected: "Vary: Accept-Encoding, Accept-Language",
},
{
name: "Case append",
fields: []string{"Accept-Encoding", "Accept-LANGUAGE"},
expected: "Vary: Accept-Encoding, Accept-Language",
},
{
name: "Case obsolete",
fields: []string{"Accept-ENCODING", "Accept-LANGUAGE"},
expected: "Vary: Accept-Encoding, Accept-Language",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
conn := &MockConn{}
res := &Res{
Socket: conn,
Headers: make(map[string][]string),
}
if tt.name == "Case obsolete" {
res.Vary("ACCEPT-Encoding", "ACCEPT-LANGUAGE")
}
if tt.name == "Case append" {
res.Vary("Accept-Encoding")
}
res.Vary(tt.fields...)
varyHeader, ok := res.Headers["Vary"]
if !ok {
t.Errorf("Vary Header Doesn't Exist.")
}
if len(varyHeader) != 1 {
t.Errorf("Expected Vary Header Length: %d, got %d", len(tt.fields), len(varyHeader))
}
if !strings.Contains(tt.expected, varyHeader[0]) {
t.Errorf("Expected Vary header %s, got: %s", tt.expected, varyHeader[0])
}
})
}
}
func TestContentType(t *testing.T) {
tests := []struct {
input string
expected string
}{
{"json", "application/json"},
{".json", "application/json"},
{"application/json", "application/json"},
{"html", "text/html; charset=utf-8"},
{".html", "text/html; charset=utf-8"},
{"text", "text/plain"},
{"application/xml", "application/xml"},
{"text/csv", "text/csv"},
{"image/png", "image/png"},
{"png", "image/png"},
}
for _, tt := range tests {
t.Run(tt.input, func(t *testing.T) {
res := &Res{
Headers: make(map[string][]string),
ContentType: "",
}
res.Type(tt.input)
if res.ContentType != tt.expected {
t.Errorf("Expected %q, got %q",
tt.expected, res.ContentType)
}
})
}
}
func TestClearCookie(t *testing.T) {
// Mock request with cookies
mockReqWithCookies := &Req{
Cookies: map[string]string{
"session": "abc123",
"prefs": "darkmode",
"token": "xyz789",
},
}
tests := []struct {
name string
setup func(*Res)
keys []string
expectedHeader []string
description string
}{
{
name: "Clear single cookie",
setup: func(res *Res) {
res.Ctx = &Ctx{Req: mockReqWithCookies}
},
keys: []string{"session"},
expectedHeader: []string{
"session=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
},
description: "Should clear only the specified cookie",
},
{
name: "Clear multiple cookies",
setup: func(res *Res) {
res.Ctx = &Ctx{Req: mockReqWithCookies}
},
keys: []string{"session", "token"},
expectedHeader: []string{
"session=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
"token=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
},
description: "Should clear multiple specified cookies",
},
{
name: "Clear all cookies when no keys specified",
setup: func(res *Res) {
res.Ctx = &Ctx{Req: mockReqWithCookies}
},
keys: []string{},
expectedHeader: []string{
"session=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
"prefs=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
"token=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
},
description: "Should clear all cookies when no keys are provided",
},
{
name: "No cookies to clear",
setup: func(res *Res) {
res.Ctx = &Ctx{Req: &Req{Cookies: map[string]string{}}}
},
keys: []string{},
expectedHeader: nil,
description: "Should do nothing when no cookies exist",
},
{
name: "Non-existent cookie",
setup: func(res *Res) {
res.Ctx = &Ctx{Req: mockReqWithCookies}
},
keys: []string{"nonexistent"},
expectedHeader: []string{
"nonexistent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
},
description: "Should still set header for non-existent cookies",
},
// TODO: Investigate test validity later
// {
// name: "Clear with custom path",
// setup: func(res *Res) {
// res.Ctx = &Ctx{Req: mockReqWithCookies}
// // First set a cookie with custom path
// res.SetCookie(Cookie{
// Name: "admin",
// Value: "true",
// Path: "/admin",
// })
// },
// keys: []string{"admin"},
// expectedHeader: []string{
// "admin=; Path=/admin; Expires=Thu, 01 Jan 1970 00:00:00 UTC; Max-Age=0",
// },
// description: "Should respect original cookie path when clearing",
// },
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res := &Res{
Headers: make(map[string][]string),
}
tt.setup(res)
// Execute
res.ClearCookie(tt.keys...)
// Verify
if tt.expectedHeader == nil {
if len(res.Headers["Set-Cookie"]) != 0 {
t.Errorf("%s\nExpected no Set-Cookie headers, got %d",
tt.description, len(res.Headers["Set-Cookie"]))
}
} else {
if len(res.Headers["Set-Cookie"]) != len(tt.expectedHeader) {
t.Errorf("%s\nExpected %d Set-Cookie headers, got %d",
tt.description, len(tt.expectedHeader), len(res.Headers["Set-Cookie"]))
}
// Check each expected cookie
for _, expected := range tt.expectedHeader {
found := slices.Contains(res.Headers["Set-Cookie"], expected)
if !found {
t.Errorf("%s\nExpected header not found: %q", tt.description, expected)
}
}
}
})
}
}