forked from ivpusic/httpcheck
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tester_header_test.go
175 lines (163 loc) · 3.99 KB
/
tester_header_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
package httpcheck
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestTester_WithHeader(t *testing.T) {
checker := newTestChecker()
checker.Test(t, http.MethodGet, "/some").
WithHeader("key", "value")
assert.Equal(t, checker.request.Header.Get("key"), "value")
assert.Equal(t, "", checker.request.Header.Get("unknown"))
}
func TestTester_WithHeaders(t *testing.T) {
headers := map[string]string{
"key": "value",
"Authorization": "Token abce-1234",
"X-Custom-Header": "custom_value_000",
}
checker := newTestChecker()
checker.Test(t, http.MethodGet, "/some").
WithHeaders(headers)
for k, v := range headers {
assert.Equal(t, checker.request.Header.Get(k), v)
}
assert.Equal(t, "", checker.request.Header.Get("unknown"))
}
func TestHasHeader(t *testing.T) {
type pair struct {
key string
value string
}
testdata := []struct {
name string
method string
expected pair
want bool
}{
{
name: "OK: response has the specified header",
method: http.MethodGet,
expected: pair{
key: "some",
value: "header",
},
want: false,
},
{
name: "OK: response has the specified header",
method: http.MethodGet,
expected: pair{
key: "hello",
value: "goodbye",
},
want: false,
},
{
name: "NG: response does not have the specified header value",
method: http.MethodGet,
expected: pair{
key: "some",
value: "aloha",
},
want: true,
},
{
name: "NG: response does not have the specified header key",
method: http.MethodGet,
expected: pair{
key: "hello",
value: "header",
},
want: true,
},
}
for _, tt := range testdata {
t.Run(tt.name, func(t *testing.T) {
mockT := new(testing.T)
checker := newTestChecker()
checker.Test(mockT, http.MethodGet, "/some").
Check().
HasHeader(tt.expected.key, tt.expected.value)
assert.Equal(t, tt.want, mockT.Failed())
})
}
}
func TestTester_MustHasHeader(t *testing.T) {
t.Skip("skip this test because it expects failure.")
checker := newTestChecker()
checker.Test(t, http.MethodGet, "/some").
Check().
MustHasHeader("hello", "goodbye"). // ← it requires to be true, but it fails.
Cb(func(response *http.Response) {
t.Fatal("it is expected that this assertion will not be executed.")
})
}
func TestTester_HasHeaders(t *testing.T) {
testdata := []struct {
name string
method string
expected map[string]string
want bool
}{
{
name: "OK: response has the specified header",
method: http.MethodGet,
expected: map[string]string{
"some": "header",
"hello": "goodbye",
},
want: false,
},
{
name: "OK: response includes the specified headers",
method: http.MethodGet,
expected: map[string]string{
"hello": "goodbye",
},
want: false,
},
{
name: "NG: response does not have the specified headers",
method: http.MethodGet,
expected: map[string]string{
"some": "header",
"X-unknown": "aloha",
},
want: true,
},
}
for _, tt := range testdata {
t.Run(tt.name, func(t *testing.T) {
mockT := new(testing.T)
checker := newTestChecker()
checker.Test(mockT, "GET", "/some").
Check().
HasHeaders(tt.expected)
assert.Equal(t, tt.want, mockT.Failed())
})
}
}
func TestTester_HasNilHeaders(t *testing.T) {
mockT := new(testing.T)
checker := newTestChecker()
// nil is the zero value for maps, so isn't a problem passing nil as parameter to WithHeaders and HasHeaders
checker.Test(t, "GET", "/some").
WithHeaders(nil).
Check().
HasHeaders(nil)
assert.False(t, mockT.Failed())
}
func TestTester_MustHasHeaders(t *testing.T) {
t.Skip("skip this test because it expects failure.")
checker := newTestChecker()
checker.Test(t, http.MethodGet, "/some").
Check().
MustHasHeaders(map[string]string{ // ← it requires to be true, but it fails.
"hello": "unknown",
}).
Cb(func(response *http.Response) {
t.Fatal("it is expected that this assertion will not be executed.")
})
}