-
Notifications
You must be signed in to change notification settings - Fork 1
/
response_test.go
82 lines (76 loc) · 2.12 KB
/
response_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
package golamb
import (
"net/http"
"reflect"
"testing"
"github.com/aws/aws-lambda-go/events"
)
func TestResponseOKEmpty(t *testing.T) {
ctx := &handlerContext{
req: &request{request: &events.APIGatewayV2HTTPRequest{}},
}
got, err := ctx.Response(http.StatusOK).Respond()
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
want := &events.APIGatewayV2HTTPResponse{
StatusCode: http.StatusOK,
Headers: map[string]string{"content-type": "application/json"},
}
if !reflect.DeepEqual(want, got) {
t.Fatalf("want %v; got %v", want, got)
}
}
func TestResponseOKBody(t *testing.T) {
ctx := &handlerContext{
req: &request{request: &events.APIGatewayV2HTTPRequest{}},
}
got, err := ctx.Response(http.StatusOK, map[string]string{"foo": "bar"}).Respond()
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
want := &events.APIGatewayV2HTTPResponse{
StatusCode: http.StatusOK,
Body: `{"foo":"bar"}`,
Headers: map[string]string{"content-type": "application/json"},
}
if !reflect.DeepEqual(want, got) {
t.Fatalf("want %v; got %v", want, got)
}
}
func TestResponseOKHeader(t *testing.T) {
ctx := &handlerContext{
req: &request{request: &events.APIGatewayV2HTTPRequest{}},
}
got, err := ctx.Response(http.StatusOK).SetHeader("foo", "bar").Respond()
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
want := &events.APIGatewayV2HTTPResponse{
StatusCode: http.StatusOK,
Headers: map[string]string{
"foo": "bar",
"content-type": "application/json",
},
}
if !reflect.DeepEqual(want, got) {
t.Fatalf("want %v; got %v", want, got)
}
}
func TestResponseOKCookie(t *testing.T) {
ctx := &handlerContext{
req: &request{request: &events.APIGatewayV2HTTPRequest{}},
}
got, err := ctx.Response(http.StatusOK).SetCookie(&http.Cookie{Name: "foo", Value: "bar"}).Respond()
if err != nil {
t.Fatalf("unexpected err: %s", err)
}
want := &events.APIGatewayV2HTTPResponse{
StatusCode: http.StatusOK,
Cookies: []string{"foo=bar"},
Headers: map[string]string{"content-type": "application/json"},
}
if !reflect.DeepEqual(want, got) {
t.Fatalf("want %v; got %v", want, got)
}
}