-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
expect_body_uint8_test.go
207 lines (183 loc) · 3.75 KB
/
expect_body_uint8_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
package hit_test
import (
"testing"
. "github.com/Eun/go-hit"
)
func TestExpectBodyUint8_Equal(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().Equal(20),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().Equal(40),
),
PtrStr("not equal"), nil, nil, nil, nil, nil, nil,
)
}
func TestExpectBodyUint8_NotEqual(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotEqual(40),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotEqual(20),
),
PtrStr("should not be 0x14"),
)
}
func TestExpectBodyUint8OneOf(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().OneOf(20, 30),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().OneOf(30, 40),
),
PtrStr(`0x14 should be one of []interface {}{`), PtrStr(`0x1e,`), PtrStr(`0x28,`), PtrStr(`}`),
)
}
func TestExpectBodyUint8NotOneOf(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotOneOf(30, 40),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotOneOf(20, 30),
),
PtrStr(`0x14 should not contain 0x14`),
)
}
func TestExpectBodyUint8_GreaterThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().GreaterThan(19),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().GreaterThan(29),
),
PtrStr("expected 20 to be greater than 29"),
)
}
func TestExpectBodyUint8_GreaterOrEqualThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().GreaterOrEqualThan(20),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().GreaterOrEqualThan(29),
),
PtrStr("expected 20 to be greater or equal than 29"),
)
}
func TestExpectBodyUint8_LessThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().LessThan(21),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().LessThan(10),
),
PtrStr("expected 20 to be less than 10"),
)
}
func TestExpectBodyUint8_LessOrEqualThan(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().LessOrEqualThan(20),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().LessOrEqualThan(10),
),
PtrStr("expected 20 to be less or equal than 10"),
)
}
func TestExpectBodyUint8_Between(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().Between(10, 20),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().Between(30, 40),
),
PtrStr("expected 20 to be between 30 and 40"),
)
}
func TestExpectBodyUint8_NotBetween(t *testing.T) {
s := EchoServer()
defer s.Close()
Test(t,
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotBetween(30, 40),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotBetween(20, 30),
),
PtrStr("expected 20 not to be between 20 and 30"),
)
ExpectError(t,
Do(
Post(s.URL),
Send().Body().Uint8(20),
Expect().Body().Uint8().NotBetween(10, 20),
),
PtrStr("expected 20 not to be between 10 and 20"),
)
}