forked from Eun/go-hit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expect_body.go
267 lines (243 loc) · 6.62 KB
/
expect_body.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
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
package hit
import (
"github.com/Eun/go-hit/errortrace"
"github.com/Eun/go-hit/internal"
"golang.org/x/xerrors"
)
// IExpectBody provides assertions on the http response body
type IExpectBody interface {
IStep
// Interface expects the body to be equal the specified interface.
//
// Usage:
// Expect().Body().Interface("Hello World")
// Expect().Body().Interface(map[string]interface{}{"Name": "Joe"})
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().Interface("Hello World"),
// )
Interface(data interface{}) IStep
// JSON expects the body to be equal the specified value.
//
// If you omit the argument you can fine tune the assertions.
//
// Usage:
// Expect().Body().JSON([]int{1, 2, 3})
// Expect().Body().JSON().Contains(1)
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().JSON(map[string]interface{}{"Name": "Joe"}),
// )
JSON(value ...interface{}) IExpectBodyJSON
// Equal expects the body to be equal to the specified value
//
// Usage:
// Expect().Body().Equal("Hello World")
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().Equal("Hello World"),
// )
Equal(value interface{}) IStep
// NotEqual expects the body to be not equal to the specified value
//
// Usage:
// Expect().Body().NotEqual("Hello World")
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().NotEqual("Hello World"),
// )
NotEqual(value interface{}) IStep
// Contains expects the body to contain the specified value
//
// Usage:
// Expect().Body().Contains("Hello World")
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().Contains("Hello World"),
// )
Contains(value interface{}) IStep
// NotContains expects the body to not contain the specified value
//
// Usage:
// Expect().Body().NotContains("Hello World")
//
// Example:
// MustDo(
// Get("https://example.com"),
// Expect().Body().NotContains("Hello World"),
// )
NotContains(value interface{}) IStep
}
type expectBody struct {
expect IExpect
cleanPath clearPath
trace *errortrace.ErrorTrace
}
func newExpectBody(expect IExpect, cleanPath clearPath, params []interface{}) IExpectBody {
body := &expectBody{
expect: expect,
cleanPath: cleanPath,
trace: ett.Prepare(),
}
if param, ok := internal.GetLastArgument(params); ok {
// default action is Equal()
return &finalExpectBody{
&hitStep{
Trace: body.trace,
When: ExpectStep,
ClearPath: cleanPath,
Exec: body.Interface(param).exec,
},
"only usable with Expect().Body() not with Expect().Body(value)",
}
}
return body
}
func (body *expectBody) exec(hit Hit) error {
return body.trace.Format(hit.Description(), "unable to run Expect().Body() without an argument or without a chain. Please use Expect().Body(something) or Expect().Body().Something")
}
func (*expectBody) when() StepTime {
return ExpectStep
}
func (body *expectBody) clearPath() clearPath {
return body.cleanPath
}
func (body *expectBody) JSON(value ...interface{}) IExpectBodyJSON {
return newExpectBodyJSON(body, body.clearPath().Push("JSON", value), value)
}
func (body *expectBody) Interface(value interface{}) IStep {
switch x := value.(type) {
case func(e Hit):
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Interface", []interface{}{value}),
Exec: func(hit Hit) error {
x(hit)
return nil
},
}
case func(e Hit) error:
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Interface", []interface{}{value}),
Exec: x,
}
default:
if f := internal.GetGenericFunc(value); f.IsValid() {
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Interface", []interface{}{value}),
Exec: func(hit Hit) error {
internal.CallGenericFunc(f)
return nil
},
}
}
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Interface", []interface{}{value}),
Exec: body.Equal(value).exec,
}
}
}
func (body *expectBody) Equal(value interface{}) IStep {
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Equal", []interface{}{value}),
Exec: func(hit Hit) error {
if hit.Response().body.equalOnlyNativeTypes(value, true) {
return nil
}
return Expect().Body().JSON().Equal("", value).exec(hit)
},
}
}
func (body *expectBody) NotEqual(value interface{}) IStep {
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("NotEqual", []interface{}{value}),
Exec: func(hit Hit) error {
if hit.Response().body.equalOnlyNativeTypes(value, false) {
return nil
}
return Expect().Body().JSON().NotEqual("", value).exec(hit)
},
}
}
func (body *expectBody) Contains(value interface{}) IStep {
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("Contains", []interface{}{value}),
Exec: func(hit Hit) error {
if hit.Response().body.containsOnlyNativeTypes(value, true) {
return nil
}
return Expect().Body().JSON().Contains("", value).exec(hit)
},
}
}
func (body *expectBody) NotContains(value interface{}) IStep {
return &hitStep{
Trace: ett.Prepare(),
When: ExpectStep,
ClearPath: body.clearPath().Push("NotContains", []interface{}{value}),
Exec: func(hit Hit) error {
if hit.Response().body.containsOnlyNativeTypes(value, false) {
return nil
}
return Expect().Body().JSON().NotContains("", value).exec(hit)
},
}
}
type finalExpectBody struct {
IStep
message string
}
func (body *finalExpectBody) fail() IStep {
return &hitStep{
Trace: ett.Prepare(),
When: CleanStep,
ClearPath: nil,
Exec: func(hit Hit) error {
return xerrors.New(body.message)
},
}
}
func (body *finalExpectBody) JSON(...interface{}) IExpectBodyJSON {
return &finalExpectBodyJSON{
body.fail(),
body.message,
}
}
func (body *finalExpectBody) Interface(interface{}) IStep {
return body.fail()
}
func (body *finalExpectBody) Equal(interface{}) IStep {
return body.fail()
}
func (body *finalExpectBody) NotEqual(interface{}) IStep {
return body.fail()
}
func (body *finalExpectBody) Contains(interface{}) IStep {
return body.fail()
}
func (body *finalExpectBody) NotContains(interface{}) IStep {
return body.fail()
}