-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathctx_test.go
969 lines (919 loc) · 22.3 KB
/
ctx_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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
// Package quick provides a high-performance, minimalistic web framework for Go.
//
// This file contains **unit tests** for various functionalities of the Quick framework.
// These tests ensure that the core features of Quick work as expected.
//
// 📌 To run all unit tests, use:
//
// $ go test -v ./...
// $ go test -v
package quick
import (
"bytes"
"io"
"net/http"
"net/http/httptest"
"reflect"
"testing"
)
// TestCtx_Bind validates whether the Ctx.Bind() function properly binds the request body into a given struct.
//
// This test ensures that:
// - JSON payloads are correctly unmarshaled into the target structure.
// - Errors are properly returned when the binding fails.
//
// To run:
//
// $ go test -v -run ^TestCtx_Bind$
func TestCtx_Bind(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
v interface{}
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.Bind(tt.args.v); (err != nil) != tt.wantErr {
t.Errorf("Ctx.Bind() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_BodyParser checks if the Ctx.BodyParser method correctly parses the request body
// and maps it to the given struct.
//
// It ensures that BodyParser correctly handles JSON decoding.
//
// To run:
//
// $ go test -v -run ^TestCtx_BodyParser$
func TestCtx_BodyParser(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
v interface{}
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.BodyParser(tt.args.v); (err != nil) != tt.wantErr {
t.Errorf("Ctx.BodyParser() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_Param ensures that the Ctx.Param method retrieves the correct route parameter
// based on the provided key.
//
// Useful for validating route variable extraction.
//
// To run:
//
// $ go test -v -run ^TestCtx_Param$
func TestCtx_Param(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
key string
}
tests := []struct {
name string
fields fields
args args
want string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if got := c.Param(tt.args.key); got != tt.want {
t.Errorf("Ctx.Param() = %v, want %v", got, tt.want)
}
})
}
}
// TestCtx_Body verifies whether Ctx.Body returns the expected byte slice representing
// the raw request body content.
//
// To run:
//
// $ go test -v -run ^TestCtx_Body$
func TestCtx_Body(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
tests := []struct {
name string
fields fields
want []byte
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if got := c.Body(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Ctx.Body() = %v, want %v", got, tt.want)
}
})
}
}
// TestCtx_BodyString verifies whether Ctx.BodyString returns the request body content as a string.
//
// It is helpful to check if text content can be retrieved from request payloads.
//
// To run:
//
// $ go test -v -run ^TestCtx_BodyString$
func TestCtx_BodyString(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
tests := []struct {
name string
fields fields
want string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if got := c.BodyString(); got != tt.want {
t.Errorf("Ctx.BodyString() = %v, want %v", got, tt.want)
}
})
}
}
// TestCtx_Methods_JSON ensures that JSON responses are properly serialized and returned by the Ctx.JSON() method.
//
// It registers a POST route and sends a request using Qtest to validate:
// - The response status code is HTTP 200 OK.
// - The response body is correctly formatted as a JSON string.
//
// To run:
//
// $ go test -v -run ^TestCtx_Methods_JSON$
func TestCtx_Methods_JSON(t *testing.T) {
q := New()
q.Post("/json", func(c *Ctx) error {
data := map[string]string{"message": "Hello, JSON!"}
return c.JSON(data)
})
data, err := q.Qtest(QuickTestOptions{
Method: MethodPost,
URI: "/json",
Headers: map[string]string{"Content-Type": "application/json"},
})
if err != nil {
t.Errorf("Error during Qtest: %v", err)
return
}
if data.StatusCode() != http.StatusOK {
t.Errorf("Expected status %d, got %d", http.StatusOK, data.StatusCode())
}
expected := `{"message":"Hello, JSON!"}`
if !bytes.Equal(bytes.TrimSpace(data.Body()), []byte(expected)) {
t.Errorf("Expected JSON body '%s', got '%s'", expected, data.BodyStr())
}
}
// TestCtx_JSON ensures that Ctx.JSON serializes the given struct or map and writes it
// as a JSON response with the appropriate headers.
//
// To run:
//
// $ go test -v -run ^TestCtx_JSON$
func TestCtx_JSON(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
v interface{}
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.JSON(tt.args.v); (err != nil) != tt.wantErr {
t.Errorf("Ctx.JSON() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_XML checks that the Ctx.XML method serializes the input struct and returns
// an XML response.
//
// To run:
//
// $ go test -v -run ^TestCtx_XML$
func TestCtx_XML(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
v interface{}
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.XML(tt.args.v); (err != nil) != tt.wantErr {
t.Errorf("Ctx.XML() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_writeResponse verifies that the internal method writeResponse writes the raw byte
// data to the response correctly.
//
// To run:
//
// $ go test -v -run ^TestCtx_writeResponse$
func TestCtx_writeResponse(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
b []byte
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.writeResponse(tt.args.b); (err != nil) != tt.wantErr {
t.Errorf("Ctx.writeResponse() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_Byte verifies that the Byte method correctly writes raw bytes
// to the response body.
//
// To run:
//
// $ go test -v -failfast -count=1 -run ^TestCtx_Byte$
func TestCtx_Byte(t *testing.T) {
type args struct {
response string
}
tests := []struct {
name string
args args
wantErr bool
}{
{
name: "success_string",
args: args{
response: `"data": "gopher"`,
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
x := httptest.NewRecorder()
c := &Ctx{
Response: x,
}
if err := c.Byte([]byte(tt.args.response)); (err != nil) != tt.wantErr {
t.Errorf("Ctx.String() error = %v, wantErr %v", err, tt.wantErr)
}
result := x.Result()
if result.Body != nil {
defer result.Body.Close()
b, err := io.ReadAll(result.Body)
if err != nil {
t.Errorf("error: %v", err)
}
if string(b) != tt.args.response {
t.Errorf("was suppose to have header value: %s and got %s", tt.args.response, string(b))
}
}
})
}
}
// TestCtx_Send checks if the Send method sends raw byte responses correctly,
// without modifying or formatting them.
//
// To run:
//
// $ go test -v -failfast -count=1 -run ^TestCtx_Send$
func TestCtx_Send(t *testing.T) {
type args struct {
response string
}
tests := []struct {
name string
args args
wantErr bool
}{
{
name: "success_string",
args: args{
response: `"data": "jeffotoni send dados all"`,
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
x := httptest.NewRecorder()
c := &Ctx{
Response: x,
}
if err := c.Send([]byte(tt.args.response)); (err != nil) != tt.wantErr {
t.Errorf("Ctx.String() error = %v, wantErr %v", err, tt.wantErr)
}
result := x.Result()
if result.Body != nil {
defer result.Body.Close()
b, err := io.ReadAll(result.Body)
if err != nil {
t.Errorf("error: %v", err)
}
if string(b) != tt.args.response {
t.Errorf("was suppose to have header value: %s and got %s", tt.args.response, string(b))
}
}
})
}
}
// TestCtx_SendString tests if the Ctx.SendString method sends the correct string response.
//
// To run:
//
// $ go test -v -run ^TestCtx_SendString$
func TestCtx_SendString(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
s string
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.SendString(tt.args.s); (err != nil) != tt.wantErr {
t.Errorf("Ctx.SendString() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_String ensures that the String method sends plain string content
// as the response body.
//
// To run:
//
// $ go test -v -failfast -count=1 -run ^TestCtx_String$
func TestCtx_String(t *testing.T) {
type args struct {
response string
}
tests := []struct {
name string
args args
wantErr bool
}{
{
name: "success_string",
args: args{
response: `"data": "gopher"`,
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
x := httptest.NewRecorder()
c := &Ctx{
Response: x,
}
if err := c.String(tt.args.response); (err != nil) != tt.wantErr {
t.Errorf("Ctx.String() error = %v, wantErr %v", err, tt.wantErr)
}
result := x.Result()
if result.Body != nil {
defer result.Body.Close()
b, err := io.ReadAll(result.Body)
if err != nil {
t.Errorf("error: %v", err)
}
if string(b) != tt.args.response {
t.Errorf("was suppose to have header value: %s and got %s", tt.args.response, string(b))
}
}
})
}
}
// TestCtx_SendFile tests whether Ctx.SendFile writes the given byte slice as file content
// in the response body.
//
// To run:
//
// $ go test -v -run ^TestCtx_SendFile$
func TestCtx_SendFile(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
file []byte
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if err := c.SendFile(tt.args.file); (err != nil) != tt.wantErr {
t.Errorf("Ctx.SendFile() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestCtx_Send checks if the Send method sends raw byte responses correctly,
// without modifying or formatting them.
//
// To run:
//
// $ go test -v -failfast -count=1 -run ^TestCtx_Send$
func TestCtx_Set(t *testing.T) {
type fields struct {
Response http.ResponseWriter
}
type args struct {
key string
value string
}
tests := []struct {
name string
fields fields
args args
wantHeaderValue string
wantError bool
}{
{
name: "success_Set_Headers",
fields: fields{
Response: func() http.ResponseWriter { x := httptest.NewRecorder(); return x }(),
},
args: args{
key: "my-key",
value: "my-header-value",
},
wantHeaderValue: "my-header-value",
wantError: false,
},
{
name: "wrong_header_check",
fields: fields{
Response: func() http.ResponseWriter { x := httptest.NewRecorder(); return x }(),
},
args: args{
key: "my-key",
value: "my-header-valuee",
},
wantHeaderValue: "my-header-value",
wantError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
}
c.Set(tt.args.key, tt.args.value)
got := c.Response.Header().Get(tt.args.key)
if (!tt.wantError) && got != tt.wantHeaderValue {
t.Errorf("was suppose to have header value: %s and got %s", tt.wantHeaderValue, got)
}
})
}
}
// TestCtx_Append ensures that the Append method correctly adds headers,
// even when the header key already exists (appending instead of replacing).
//
// To run:
//
// $ go test -v -run ^TestCtx_Append$
func TestCtx_Append(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
key string
value string
}
tests := []struct {
name string
fields fields
args args
wantLen int
}{
{
name: "should be able to create a new header",
fields: fields{
Response: httptest.NewRecorder(),
},
args: args{
key: "Append",
value: "one",
},
wantLen: 1,
},
{
name: "should be able to append to existing header",
fields: fields{
Response: func() http.ResponseWriter { x := httptest.NewRecorder(); x.Header().Set("Append", "one"); return x }(),
},
args: args{
key: "Append",
value: "two",
},
wantLen: 2,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
c.Append(tt.args.key, tt.args.value)
if len(c.Response.Header().Values(tt.args.key)) != tt.wantLen {
t.Errorf("c.Append(): want %v, got %v", tt.wantLen, len(c.Response.Header().Values(tt.args.key)))
}
})
}
}
// TestCtx_Accepts ensures that Ctx.Accepts correctly evaluates the Accept header
// to determine if the content type is acceptable.
//
// To run:
//
// $ go test -v -run ^TestCtx_Accepts$
func TestCtx_Accepts(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
acceptType string
}
tests := []struct {
name string
fields fields
args args
want *Ctx
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if got := c.Accepts(tt.args.acceptType); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Ctx.Accepts() = %v, want %v", got, tt.want)
}
})
}
}
// TestCtx_Status validates that calling Ctx.Status sets the correct status code for the response.
//
// To run:
//
// $ go test -v -run ^TestCtx_Status$
func TestCtx_Status(t *testing.T) {
type fields struct {
Response http.ResponseWriter
Request *http.Request
resStatus int
bodyByte []byte
JsonStr string
Headers map[string][]string
Params map[string]string
Query map[string]string
}
type args struct {
status int
}
tests := []struct {
name string
fields fields
args args
want *Ctx
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Ctx{
Response: tt.fields.Response,
Request: tt.fields.Request,
resStatus: tt.fields.resStatus,
bodyByte: tt.fields.bodyByte,
JsonStr: tt.fields.JsonStr,
Headers: tt.fields.Headers,
Params: tt.fields.Params,
Query: tt.fields.Query,
}
if got := c.Status(tt.args.status); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Ctx.Status() = %v, want %v", got, tt.want)
}
})
}
}
// TestCtxMethods validates multiple Ctx methods for extracting request data.
//
// It checks if headers, IP address, method, path, and query parameters are correctly retrieved.
//
// Check:
// - Ctx.GetHeader()
// - Ctx.GetHeaders()
// - Ctx.RemoteIP()
// - Ctx.Method()
// - Ctx.Path()
// - Ctx.QueryParam()
//
// To run:
//
// $ go test -v -run ^TestCtxMethods$
func TestCtxMethods(t *testing.T) {
// Prepare the test request
req := httptest.NewRequest(http.MethodGet, "/testpath?search=golang", nil)
req.RemoteAddr = "192.168.1.10:12345"
req.Header.Set("User-Agent", "Go-Test-Agent")
// Create the fake ResponseWriter
rec := httptest.NewRecorder()
// Create the Quick context
c := &Ctx{
Response: rec,
Request: req,
}
// Test GetHeader
if got := c.GetHeader("User-Agent"); got != "Go-Test-Agent" {
t.Errorf("GetHeader() = %v, want %v", got, "Go-Test-Agent")
}
// Test GetHeaders
headers := c.GetHeaders()
if headers.Get("User-Agent") != "Go-Test-Agent" {
t.Errorf("GetHeaders().Get(\"User-Agent\") = %v, want %v", headers.Get("User-Agent"), "Go-Test-Agent")
}
// RemoteIP Test
if ip := c.RemoteIP(); ip != "192.168.1.10" {
t.Errorf("RemoteIP() = %v, want %v", ip, "192.168.1.10")
}
// Test Method
if method := c.Method(); method != http.MethodGet {
t.Errorf("Method() = %v, want %v", method, http.MethodGet)
}
// Test Path
if path := c.Path(); path != "/testpath" {
t.Errorf("Path() = %v, want %v", path, "/testpath")
}
// Test Query
if q := c.QueryParam("search"); q != "golang" {
t.Errorf("Query(\"search\") = %v, want %v", q, "golang")
}
}