-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathctx_godoc_test.go
629 lines (519 loc) · 14.1 KB
/
ctx_godoc_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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
// Package quick provides a high-performance, minimalistic web framework for Go.
//
// 📌 To run all unit tests, use:
//
// $ go test -v ./...
// $ go test -v
package quick
import (
"encoding/xml"
"fmt"
"testing"
)
// TestCtx_GetReqHeadersAll ensures GetReqHeadersAll returns all request headers.
//
// To run:
//
// go test -v -run ^TestCtx_GetReqHeadersAll$
func TestCtx_GetReqHeadersAll(t *testing.T) {
ctx := &Ctx{
Headers: map[string][]string{
"Content-Type": {"application/json"},
"Accept": {"application/xml"},
},
}
headers := ctx.GetReqHeadersAll()
if headers["Content-Type"][0] != "application/json" {
t.Errorf("Expected 'application/json', got '%s'", headers["Content-Type"][0])
}
if headers["Accept"][0] != "application/xml" {
t.Errorf("Expected 'application/xml', got '%s'", headers["Accept"][0])
}
}
// TestCtx_GetHeadersAll ensures GetHeadersAll returns all headers from the context.
//
// To run:
//
// go test -v -run ^TestCtx_GetHeadersAll$
func TestCtx_GetHeadersAll(t *testing.T) {
ctx := &Ctx{
Headers: map[string][]string{
"Content-Type": {"application/json"},
"Accept": {"application/xml"},
},
}
headers := ctx.GetHeadersAll()
if headers["Content-Type"][0] != "application/json" {
t.Errorf("Expected 'application/json', got '%s'", headers["Content-Type"][0])
}
if headers["Accept"][0] != "application/xml" {
t.Errorf("Expected 'application/xml', got '%s'", headers["Accept"][0])
}
}
// TestCtx_ExampleBind verifies that Bind correctly binds JSON body to a struct.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleBind$
func TestCtx_ExampleBind(t *testing.T) {
q := New()
q.Post("/bind", func(c *Ctx) error {
var data struct {
Name string `json:"name"`
Age int `json:"age"`
}
err := c.Bind(&data)
if err != nil {
t.Errorf("Bind failed: %v", err)
return err
}
return c.Status(200).JSON(data)
})
body := []byte(`{"name":"Quick","age":30}`)
// Simulate a GET request to "/api/users"
res, err := q.Qtest(QuickTestOptions{
Method: MethodPost,
URI: "/bind",
Headers: map[string]string{"Content-Type": "application/json"},
Body: body,
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
if res.StatusCode() != 200 {
t.Errorf("Expected status 200, got %d", res.StatusCode())
}
fmt.Println(res.BodyStr())
expected := `{"name":"Quick","age":30}`
if res.BodyStr() != expected {
t.Errorf("Expected response '%s', but got '%s'", expected, res.BodyStr())
}
}
// TestCtx_ExampleBodyParser checks if BodyParser parses the request body into a struct.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleBodyParser$
func TestCtx_ExampleBodyParser(t *testing.T) {
q := New()
q.Post("/test", func(c *Ctx) error {
var data struct {
Name string `json:"name"`
Age int `json:"age"`
}
err := c.BodyParser(&data)
if err != nil {
t.Errorf("BodyParser failed: %v", err)
return err
}
return c.Status(200).JSON(data)
})
body := []byte(`{"name": "Quick", "age": 28}`)
res, err := q.Qtest(QuickTestOptions{
Method: MethodPost,
URI: "/test",
Headers: map[string]string{"Content-Type": "application/json"},
Body: body,
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
if res.StatusCode() != 200 {
t.Errorf("Expected status 200, got %d", res.StatusCode())
}
expected := `{"name":"Quick","age":28}`
if res.BodyStr() != expected {
t.Errorf("Expected response '%s', but got '%s'", expected, res.BodyStr())
}
}
// TestCtx_ExampleParam checks if Param correctly retrieves path parameters.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleParam$
func TestCtx_ExampleParam(t *testing.T) {
q := New()
q.Get("/user/:id", func(c *Ctx) error {
id := c.Param("id")
return c.SendString(id)
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/user/42",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "42"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
}
// TestCtx_ExampleBody ensures Body returns the correct raw request body.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleBody$
func TestCtx_ExampleBody(t *testing.T) {
expectedBody := `{"name": "Quick", "age": 28}`
c := &Ctx{
bodyByte: []byte(expectedBody),
}
body := c.Body()
if string(body) != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, string(body))
}
}
// TestCtx_ExampleBodyString ensures BodyString returns the body as a string.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleBodyString$
func TestCtx_ExampleBodyString(t *testing.T) {
expectedBody := `{"name": "Quick", "age": 28}`
c := &Ctx{
bodyByte: []byte(expectedBody),
}
bodyStr := c.BodyString()
if bodyStr != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, bodyStr)
}
}
// TestCtx_ExampleJSON validates JSON response generation.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleJSON$
func TestCtx_ExampleJSON(t *testing.T) {
q := New()
q.Get("/json", func(c *Ctx) error {
c.Set("Content-Type", "application/json")
data := map[string]string{"message": "Hello, Quick!"}
return c.JSON(data)
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/json",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := `{"message":"Hello, Quick!"}`
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedContentType := "application/json"
contentType := res.Response().Header.Get("Content-Type")
if contentType != expectedContentType {
t.Errorf("Expected Content-Type: %s, received: %s", expectedContentType, contentType)
}
}
// TestCtx_ExampleJSONIN ensures JSONIN returns correct JSON with header set.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleJSONIN$
func TestCtx_ExampleJSONIN(t *testing.T) {
q := New()
q.Get("/json", func(c *Ctx) error {
c.Set("Content-Type", "application/json")
data := map[string]string{"message": "Hello, Quick!"}
return c.JSONIN(data)
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/json",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
// expectedBody := `{"message":"Hello, Quick!"}`
// if res.BodyStr() != expectedBody {
// t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
// }
expectedContentType := "application/json"
contentType := res.Response().Header.Get("Content-Type")
if contentType != expectedContentType {
t.Errorf("Expected Content-Type: %s, received: %s", expectedContentType, contentType)
}
}
type XMLMessage struct {
XMLName xml.Name `xml:"message"`
Message string `xml:",chardata"`
}
// TestCtx_ExampleXML verifies that XML responses are returned properly.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleXML$
func TestCtx_ExampleXML(t *testing.T) {
q := New()
q.Get("/xml", func(c *Ctx) error {
c.Set("Content-Type", "text/xml")
data := XMLMessage{Message: "Hello, Quick!"}
return c.XML(data)
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/xml",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := `<message>Hello, Quick!</message>`
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedContentType := "text/xml"
contentType := res.Response().Header.Get("Content-Type")
if contentType != expectedContentType {
t.Errorf("Expected Content-Type: %s, received: %s", expectedContentType, contentType)
}
}
// TestCtx_ExamplewriteResponse validates raw byte response writing.
//
// To run:
//
// go test -v -run ^TestCtx_ExamplewriteResponse$
func TestCtx_ExamplewriteResponse(t *testing.T) {
q := New()
q.Get("/response", func(c *Ctx) error {
return c.writeResponse([]byte("Hello, Quick!"))
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/response",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "Hello, Quick!"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleByte checks that Byte correctly writes raw bytes.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleByte$
func TestCtx_ExampleByte(t *testing.T) {
q := New()
q.Get("/byte", func(c *Ctx) error {
return c.Byte([]byte("Hello, Quick!"))
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/byte",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "Hello, Quick!"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleSend validates that Send writes the correct byte response.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleSend$
func TestCtx_ExampleSend(t *testing.T) {
q := New()
q.Get("/send", func(c *Ctx) error {
return c.Send([]byte("Hello, Quick!"))
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/send",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "Hello, Quick!"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleSendString checks that SendString writes a plain text response.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleSendString$
func TestCtx_ExampleSendString(t *testing.T) {
q := New()
q.Get("/sendstring", func(c *Ctx) error {
return c.SendString("Hello, Quick!")
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/sendstring",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "Hello, Quick!"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleSendFile ensures that SendFile correctly sends file content.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleSendFile$
func TestCtx_ExampleSendFile(t *testing.T) {
q := New()
q.Get("/sendfile", func(c *Ctx) error {
fileContent := []byte("Conteúdo do arquivo")
return c.SendFile(fileContent)
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/sendfile",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedBody := "Conteúdo do arquivo"
if res.BodyStr() != expectedBody {
t.Errorf("Expected: %s, received: %s", expectedBody, res.BodyStr())
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleSet verifies that Set adds headers correctly.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleSet$
func TestCtx_ExampleSet(t *testing.T) {
q := New()
q.Get("/set-header", func(c *Ctx) error {
c.Set("X-Custom-Header", "Quick")
return c.String("Header Set")
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/set-header",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedHeader := "Quick"
headerValue := res.Response().Header.Get("X-Custom-Header")
if headerValue != expectedHeader {
t.Errorf("Expected: %s, received: %s", expectedHeader, headerValue)
}
expectedStatus := 200
if res.Response().StatusCode != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, res.Response().StatusCode)
}
}
// TestCtx_ExampleAppend ensures that headers can be appended properly.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleAppend$
func TestCtx_ExampleAppend(t *testing.T) {
q := New()
q.Get("/append-header", func(c *Ctx) error {
c.Append("X-Custom-Header", "Value1")
c.Append("X-Custom-Header", "Value2")
return c.String("Header Appended")
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/append-header",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedHeaders := []string{"Value1", "Value2"}
headers := res.Response().Header.Values("X-Custom-Header")
if len(headers) != len(expectedHeaders) {
t.Errorf("Expected: %v, received: %v", expectedHeaders, headers)
}
}
// TestCtx_ExampleAccepts checks if the Accepts method sets the correct header.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleAccepts$
func TestCtx_ExampleAccepts(t *testing.T) {
q := New()
q.Get("/accepts", func(c *Ctx) error {
c.Accepts("application/json")
return c.String("Accept Set")
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/accepts",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedHeader := "application/json"
header := res.Response().Header.Get("Accept")
if header != expectedHeader {
t.Errorf("Expected: %s, received: %s", expectedHeader, header)
}
}
// TestCtx_ExampleStatus verifies that Status sets the correct HTTP status code.
//
// To run:
//
// go test -v -run ^TestCtx_ExampleStatus$
func TestCtx_ExampleStatus(t *testing.T) {
q := New()
q.Get("/status", func(c *Ctx) error {
c.Status(404)
return c.String("Not Found")
})
res, err := q.Qtest(QuickTestOptions{
Method: MethodGet,
URI: "/status",
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
expectedStatus := 404
status := res.Response().StatusCode
if status != expectedStatus {
t.Errorf("Expected Status Code: %d, received: %d", expectedStatus, status)
}
}