forked from RobertWHurst/Navaros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext_test.go
More file actions
840 lines (667 loc) · 20.3 KB
/
Copy pathcontext_test.go
File metadata and controls
840 lines (667 loc) · 20.3 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
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
package navaros_test
import (
"bytes"
"crypto/tls"
"encoding/json"
"errors"
"io"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/RobertWHurst/navaros"
)
func TestNewContext(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx == nil {
t.Error("expected context")
}
}
func TestContextHandler(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
handlerCalled := false
var ctx *navaros.Context
ctx = navaros.NewContext(res, req, func(givenCtx *navaros.Context) {
handlerCalled = true
if ctx != givenCtx {
t.Error("expected the same context to be passed to the handler")
}
})
ctx.Next()
if !handlerCalled {
t.Error("expected handler to be called")
}
}
func TestContextHandlerAfterTimeout(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
handlerCalled := false
ctx := navaros.NewContext(res, req, func(_ *navaros.Context) {
handlerCalled = true
})
navaros.CtxSetDeadline(ctx, time.Now().Add(-1*time.Second))
ctx.Next()
if handlerCalled {
t.Error("expected handler to not be called")
}
if ctx.Error == nil {
t.Error("expected context to have an error")
}
}
func TestContextWithPanic(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("POST", "/a/b/c", bytes.NewBuffer([]byte("test")))
ctx := navaros.NewContext(res, req, func(_ *navaros.Context) {
panic("test panic")
})
ctx.Next()
if ctx.Error == nil {
t.Error("expected context to have an error")
}
if ctx.Error.Error() != "test panic" {
t.Error("expected context to have the correct error")
}
}
type testTransformer struct {
transformRequestCalled bool
transformResponseCalled bool
}
func (t *testTransformer) TransformRequest(ctx *navaros.Context) {
t.transformRequestCalled = true
body, err := io.ReadAll(ctx.RequestBodyReader())
if err != nil {
ctx.Error = err
return
}
newBody := bytes.NewBuffer([]byte(string(body) + " transformed"))
ctx.SetRequestBodyReader(newBody)
}
func (t *testTransformer) TransformResponse(ctx *navaros.Context) {
ctx.RequestBodyReader()
t.transformResponseCalled = true
}
func TestContextWithTransformer(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
transformer := &testTransformer{
transformRequestCalled: false,
transformResponseCalled: false,
}
ctx := navaros.NewContext(res, req, transformer)
ctx.Next()
if !transformer.transformRequestCalled {
t.Error("expected transformer to be called")
}
if !transformer.transformResponseCalled {
t.Error("expected transformer to be called")
}
}
func TestContextMethod(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx.Method() != navaros.Get {
t.Error("expected method to be GET")
}
}
func TestContextPath(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "http://roberthurst.ca/a/b/c?z=yz", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx.Path() != "/a/b/c" {
t.Error("expected path to be /a/b/c")
}
}
func TestContextURL(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "http://roberthurst.ca/a/b/c?z=yz", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx.URL().Host != "roberthurst.ca" {
t.Error("expected url host to be roberthurst.ca")
}
if ctx.URL().Path != "/a/b/c" {
t.Error("expected url path to be /a/b/c")
}
if ctx.URL().RawQuery != "z=yz" {
t.Error("expected url raw query to be z=yz")
}
}
func TestContextParams(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
if len(ctx.Params()) != 0 {
t.Error("expected params to be empty because no routes are registered")
}
}
func TestContextQuery(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c?z=yz", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx.Query().Get("z") != "yz" {
t.Error("expected query to have z=yz")
}
}
func TestContextProtocol(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.Proto = "HTTP/1.2"
ctx := navaros.NewContext(res, req, nil)
if ctx.Protocol() != "HTTP/1.2" {
t.Error("expected request protocol to be our made up HTTP/1.2 protocol")
}
}
func TestContextProtocolMajor(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.ProtoMajor = 2
ctx := navaros.NewContext(res, req, nil)
if ctx.ProtocolMajor() != 2 {
t.Error("expected request protocol major to be 2")
}
}
func TestContextProtocolMinor(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.ProtoMinor = 2
ctx := navaros.NewContext(res, req, nil)
if ctx.ProtocolMinor() != 2 {
t.Error("expected request protocol minor to be 2")
}
}
func TestContextRequestHeaders(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.Header.Add("test", "test")
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestHeaders().Get("test") != "test" {
t.Error("expected request headers to have test=test")
}
}
func TestContextRequestBodyReader(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", bytes.NewBuffer([]byte("test")))
ctx := navaros.NewContext(res, req, nil)
body, err := io.ReadAll(ctx.RequestBodyReader())
if err != nil {
t.Error("expected no error")
}
if string(body) != "test" {
t.Error("expected body to be test")
}
}
func TestContextSetRequestBodyReader(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", bytes.NewBuffer([]byte("test")))
ctx := navaros.NewContext(res, req, nil)
body, err := io.ReadAll(ctx.RequestBodyReader())
if err != nil {
t.Error("expected no error")
}
if string(body) != "test" {
t.Error("expected body to be test")
}
ctx.SetRequestBodyReader(bytes.NewBuffer([]byte("test2")))
body, err = io.ReadAll(ctx.RequestBodyReader())
if err != nil {
t.Error("expected no error")
}
if string(body) != "test2" {
t.Error("expected body to be test2")
}
}
func TestContextRequestBodyUnmarshaller(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", bytes.NewBuffer([]byte(`{"test":"test"}`)))
ctx := navaros.NewContext(res, req, nil)
ctx.SetRequestBodyUnmarshaller(func(into any) error {
bodyBytes, err := io.ReadAll(ctx.RequestBodyReader())
if err != nil {
return err
}
return json.Unmarshal(bodyBytes, into)
})
var body struct {
Test string `json:"test"`
}
if err := ctx.UnmarshalRequestBody(&body); err != nil {
t.Errorf("expected no error but got %s", err)
}
if body.Test != "test" {
t.Error("expected body to be test")
}
}
func TestContextSetResponseBodyMarshaller(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
ctx.SetResponseBodyMarshaller(func(from any) (io.Reader, error) {
return nil, nil
})
}
func TestContextRequestContentLength(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", bytes.NewBuffer([]byte("test")))
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestContentLength() != 4 {
t.Error("expected content length to be 4")
}
}
func TestContextRequestTransferEncoding(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.TransferEncoding = []string{"test"}
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestTransferEncoding()[0] != "test" {
t.Error("expected transfer encoding to be test")
}
}
func TestContextRequestHost(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.Host = "test"
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestHost() != "test" {
t.Error("expected host to be test")
}
}
func TestContextRequestRemoteAddress(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.RemoteAddr = "test"
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestRemoteAddress() != "test" {
t.Error("expected remote address to be test")
}
}
func TestContextRequestRawURI(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.RequestURI = "test"
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestRawURI() != "test" {
t.Error("expected raw uri to be test")
}
}
func TestContextRequestTLS(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
req.TLS = &tls.ConnectionState{
Version: tls.VersionTLS13,
}
ctx := navaros.NewContext(res, req, nil)
if ctx.RequestTLS().Version != tls.VersionTLS13 {
t.Error("expected tls version to be tls.VersionTLS13")
}
}
func TestContextRequest(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
if ctx.Request() != req {
t.Error("expected request to be the same")
}
}
func TestContextResponseWriter(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
resWriter := ctx.ResponseWriter()
resWriter.WriteHeader(200)
_, err := resWriter.Write([]byte("test"))
if err != nil {
t.Error("expected no error writing to response writer")
}
if res.Code != 200 {
t.Error("expected response code to be 200")
}
if res.Body.String() != "test" {
t.Error("expected response body to be test")
}
}
func TestContextResponseStatus(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.Body = "test"
})
ctx.Next()
if ctx.ResponseStatus() != 200 {
t.Error("expected response status to be 200")
}
ctx = navaros.NewContext(res, req, func(ctx *navaros.Context) {
// do nothing
})
ctx.Next()
if ctx.ResponseStatus() != 404 {
t.Error("expected response status to be 404 when no body is set")
}
ctx = navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.Error = errors.New("test error")
})
ctx.Next()
if ctx.ResponseStatus() != 500 {
t.Error("expected response status to be 500 when an error is set")
}
}
func TestContextWrite(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
if _, err := ctx.Write([]byte("test")); err != nil {
t.Error("expected no error")
}
if res.Body.String() != "test" {
t.Error("expected body to be test")
}
}
func TestContextFlush(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
ctx.Flush()
if !res.Flushed {
t.Error("expected flushed to be true")
}
}
func TestContextDeadline(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/a/b/c", nil)
ctx := navaros.NewContext(res, req, nil)
deadline := time.Now()
navaros.CtxSetDeadline(ctx, deadline)
ctxDeadline, ctxHasDeadline := ctx.Deadline()
if !ctxHasDeadline {
t.Error("expected deadline to be set")
}
if ctxDeadline != deadline {
t.Error("expected deadline to be the one provided")
}
}
func TestContextAfterFinalization_Set(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/test", nil)
var capturedCtx *navaros.Context
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
capturedCtx = ctx
})
ctx.Next()
navaros.CtxFinalize(ctx)
navaros.CtxFree(ctx)
defer func() {
if r := recover(); r == nil {
t.Error("expected panic when using Set() after finalization")
} else if r != "context cannot be used after handler returns - handlers must block until all operations complete" {
t.Errorf("unexpected panic message: %v", r)
}
}()
capturedCtx.Set("key", "value")
}
func TestContextAfterFinalization_Write(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/test", nil)
var capturedCtx *navaros.Context
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
capturedCtx = ctx
})
ctx.Next()
navaros.CtxFinalize(ctx)
navaros.CtxFree(ctx)
_, err := capturedCtx.Write([]byte("test"))
if err == nil {
t.Error("expected error when using Write() after finalization")
}
if err.Error() != "context cannot be used after handler returns - handlers must block until all operations complete" {
t.Errorf("unexpected error message: %v", err)
}
}
func TestContextAfterFinalization_Flush(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/test", nil)
var capturedCtx *navaros.Context
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
capturedCtx = ctx
})
ctx.Next()
navaros.CtxFinalize(ctx)
navaros.CtxFree(ctx)
defer func() {
if r := recover(); r == nil {
t.Error("expected panic when using Flush() after finalization")
} else if r != "context cannot be used after handler returns - handlers must block until all operations complete" {
t.Errorf("unexpected panic message: %v", r)
}
}()
capturedCtx.Flush()
}
func TestContextAfterFinalization_ResponseWriter(t *testing.T) {
res := httptest.NewRecorder()
req := httptest.NewRequest("GET", "/test", nil)
var capturedCtx *navaros.Context
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
capturedCtx = ctx
})
ctx.Next()
navaros.CtxFinalize(ctx)
navaros.CtxFree(ctx)
defer func() {
if r := recover(); r == nil {
t.Error("expected panic when using ResponseWriter() after finalization")
} else if r != "context cannot be used after handler returns - handlers must block until all operations complete" {
t.Errorf("unexpected panic message: %v", r)
}
}()
capturedCtx.ResponseWriter()
}
func TestContextRequestCookie(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
req.AddCookie(&http.Cookie{Name: "session", Value: "abc123"})
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
cookie, err := ctx.RequestCookie("session")
if err != nil {
t.Errorf("expected cookie, got error: %v", err)
}
if cookie.Value != "abc123" {
t.Errorf("expected cookie value abc123, got %s", cookie.Value)
}
_, err = ctx.RequestCookie("nonexistent")
if err == nil {
t.Error("expected error for nonexistent cookie")
}
})
ctx.Next()
}
func TestContextRequestTrailers(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
req.Trailer = http.Header{"X-Trailer": []string{"value"}}
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
trailers := ctx.RequestTrailers()
if trailers.Get("X-Trailer") != "value" {
t.Errorf("expected trailer value, got %s", trailers.Get("X-Trailer"))
}
})
ctx.Next()
}
func TestContextClose(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
err := ctx.Close()
if err != nil {
t.Errorf("expected no error, got %v", err)
}
})
ctx.Next()
}
func TestContextDone(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
done := ctx.Done()
if done == nil {
t.Error("expected done channel")
}
})
ctx.Next()
navaros.CtxFinalize(ctx)
select {
case <-ctx.Done():
default:
t.Error("expected done channel to be closed")
}
}
func TestContextErr(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, nil)
ctx.Next()
if ctx.Err() != nil {
t.Errorf("expected nil error, got %v", ctx.Err())
}
}
func TestContextValue(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, nil)
val := ctx.Value("key")
if val != nil {
t.Errorf("expected nil value, got %v", val)
}
}
func TestContextResponseWriterHeader(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
writer := ctx.ResponseWriter()
header := writer.Header()
header.Set("X-Test", "value")
})
ctx.Next()
navaros.CtxFinalize(ctx)
if res.Header().Get("X-Test") != "value" {
t.Error("expected header to be set")
}
}
func TestCtxSetParam(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, nil)
navaros.CtxSetParam(ctx, "key", "value")
if ctx.Params().Get("key") != "value" {
t.Error("expected param to be set")
}
}
func TestCtxDeleteParam(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, nil)
navaros.CtxSetParam(ctx, "key", "value")
navaros.CtxDeleteParam(ctx, "key")
if ctx.Params().Get("key") != "" {
t.Error("expected param to be deleted")
}
}
func TestCtxInhibitResponse(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.Status = 201
ctx.Body = "test"
})
navaros.CtxInhibitResponse(ctx)
ctx.Next()
navaros.CtxFinalize(ctx)
if res.Body.Len() != 0 {
t.Error("expected no body")
}
}
func TestContextUnmarshalRequestBodyNoUnmarshaller(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
var data map[string]string
err := ctx.UnmarshalRequestBody(&data)
if err == nil {
t.Error("expected error when no unmarshaller is set")
}
if err.Error() != "no request body unmarshaller set. use SetRequestBodyUnmarshaller() or add body parser middleware" {
t.Errorf("unexpected error message: %v", err)
}
})
ctx.Next()
}
func TestContextSetRequestBodyReaderWithReadCloser(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
reader := io.NopCloser(bytes.NewBufferString("test"))
ctx.SetRequestBodyReader(reader)
body, err := io.ReadAll(ctx.RequestBodyReader())
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if string(body) != "test" {
t.Errorf("expected 'test', got %s", string(body))
}
})
ctx.Next()
}
func TestContextResponseBodyMarshaller(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.SetResponseBodyMarshaller(func(from any) (io.Reader, error) {
data := from.(map[string]string)
return bytes.NewBufferString(data["key"]), nil
})
ctx.Body = map[string]string{"key": "value"}
})
ctx.Next()
navaros.CtxFinalize(ctx)
if res.Body.String() != "value" {
t.Errorf("expected 'value', got %s", res.Body.String())
}
}
func TestContextResponseBodyMarshallerError(t *testing.T) {
req := httptest.NewRequest("GET", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.SetResponseBodyMarshaller(func(from any) (io.Reader, error) {
return nil, errors.New("marshalling failed")
})
ctx.Body = map[string]string{"key": "value"}
ctx.Status = 200
})
ctx.Next()
navaros.CtxFinalize(ctx)
if res.Code != 500 {
t.Errorf("expected status 500, got %d", res.Code)
}
}
func TestContextNewContextWithNodeError(t *testing.T) {
req := httptest.NewRequest("INVALID", "/test", nil)
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, nil)
ctx.Next()
if ctx.Error == nil {
t.Error("expected error for invalid HTTP method")
}
}
func TestContextRequestBodyReaderMaxSize(t *testing.T) {
req := httptest.NewRequest("GET", "/test", bytes.NewBufferString("test data"))
res := httptest.NewRecorder()
ctx := navaros.NewContext(res, req, func(ctx *navaros.Context) {
ctx.MaxRequestBodySize = 4
reader := ctx.RequestBodyReader()
body, err := io.ReadAll(reader)
if err == nil && len(body) > 4 {
t.Error("expected body to be limited by MaxRequestBodySize")
}
})
ctx.Next()
}