-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
expect_status_test.go
208 lines (184 loc) · 3.94 KB
/
expect_status_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
package hit_test
import (
"net/http"
"testing"
. "github.com/Eun/go-hit"
)
func TestExpectStatus_Equal(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().Equal(http.StatusOK),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().Equal(http.StatusNotFound),
),
PtrStr("not equal"), nil, nil, nil, nil, nil, nil,
)
}
func TestExpectStatus_NotEqual(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotEqual(http.StatusNotFound),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotEqual(http.StatusOK),
),
PtrStr("should not be 200"),
)
}
func TestExpectStatus_OneOf(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().OneOf(200, 300),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().OneOf(300, 400),
),
PtrStr(`200 should be one of []interface {}{`), PtrStr("300,"), PtrStr("400,"), PtrStr("}"),
)
}
func TestExpectStatus_NotOneOf(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotOneOf(300, 400),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotOneOf(200, 300),
),
PtrStr(`200 should not contain 200`),
)
}
func TestExpectStatus_GreaterThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().GreaterThan(199),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().GreaterThan(299),
),
PtrStr("expected 200 to be greater than 299"),
)
}
func TestExpectStatus_GreaterOrEqualThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().GreaterOrEqualThan(200),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().GreaterOrEqualThan(299),
),
PtrStr("expected 200 to be greater or equal than 299"),
)
}
func TestExpectStatus_LessThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().LessThan(201),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().LessThan(100),
),
PtrStr("expected 200 to be less than 100"),
)
}
func TestExpectStatus_LessOrEqualThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().LessOrEqualThan(200),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().LessOrEqualThan(100),
),
PtrStr("expected 200 to be less or equal than 100"),
)
}
func TestExpectStatus_Between(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().Between(100, 200),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().Between(300, 400),
),
PtrStr("expected 200 to be between 300 and 400"),
)
}
func TestExpectStatus_NotBetween(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotBetween(300, 400),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotBetween(200, 300),
),
PtrStr("expected 200 not to be between 200 and 300"),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().String("Hello World"),
Expect().Status().NotBetween(100, 200),
),
PtrStr("expected 200 not to be between 100 and 200"),
)
}