-
-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathJSONResponse.js
360 lines (341 loc) · 9.25 KB
/
JSONResponse.js
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
const Helper = require('@codeceptjs/helper')
const assert = require('assert')
const joi = require('joi')
/**
* This helper allows performing assertions on JSON responses paired with following helpers:
*
* * REST
* * GraphQL
* * Playwright
*
* It can check status codes, response data, response structure.
*
*
* ## Configuration
*
* * `requestHelper` - a helper which will perform requests. `REST` by default, also `Playwright` or `GraphQL` can be used. Custom helpers must have `onResponse` hook in their config, which will be executed when request is performed.
*
* ### Examples
*
* Zero-configuration when paired with REST:
*
* ```js
* // inside codecept.conf.js
*{
* helpers: {
* REST: {
* endpoint: 'http://site.com/api',
* },
* JSONResponse: {}
* }
*}
* ```
* Explicitly setting request helper if you use `makeApiRequest` of Playwright to perform requests and not paired REST:
*
* ```js
* // inside codecept.conf.js
* // ...
* helpers: {
* Playwright: {
* url: 'https://localhost',
* browser: 'chromium',
* },
* JSONResponse: {
* requestHelper: 'Playwright',
* }
* }
* ```
* ## Access From Helpers
*
* If you plan to add custom assertions it is recommended to create a helper that will retrieve response object from JSONResponse:
*
*
* ```js
* // inside custom helper
* const response = this.helpers.JSONResponse.response;
* ```
*
* ## Methods
*/
class JSONResponse extends Helper {
constructor(config = {}) {
super(config)
this.options = {
requestHelper: 'REST',
}
this.options = { ...this.options, ...config }
}
_beforeSuite() {
this.response = null
if (!this.helpers[this.options.requestHelper]) {
throw new Error(`Error setting JSONResponse, helper ${this.options.requestHelper} is not enabled in config, helpers: ${Object.keys(this.helpers)}`)
}
// connect to REST helper
this.helpers[this.options.requestHelper].config.onResponse = response => {
this.response = response
}
}
_before() {
this.response = null
}
static _checkRequirements() {
try {
require('joi')
} catch (e) {
return ['joi']
}
}
/**
* Checks that response code is equal to the provided one
*
* ```js
* I.seeResponseCodeIs(200);
* ```
*
* @param {number} code
*/
seeResponseCodeIs(code) {
this._checkResponseReady()
assert.strictEqual(this.response.status, code, 'Response code is not the same as expected')
}
/**
* Checks that response code is not equal to the provided one
*
* ```js
* I.dontSeeResponseCodeIs(500);
* ```
*
* @param {number} code
*/
dontSeeResponseCodeIs(code) {
this._checkResponseReady()
assert.notStrictEqual(this.response.status, code)
}
/**
* Checks that the response code is 4xx
*/
seeResponseCodeIsClientError() {
this._checkResponseReady()
assert(this.response.status >= 400 && this.response.status < 500)
}
/**
* Checks that the response code is 3xx
*/
seeResponseCodeIsRedirection() {
this._checkResponseReady()
assert(this.response.status >= 300 && this.response.status < 400)
}
/**
* Checks that the response code is 5xx
*/
seeResponseCodeIsServerError() {
this._checkResponseReady()
assert(this.response.status >= 500 && this.response.status < 600)
}
/**
* Checks that the response code is 2xx
* Use it instead of seeResponseCodeIs(200) if server can return 204 instead.
*
* ```js
* I.seeResponseCodeIsSuccessful();
* ```
*/
seeResponseCodeIsSuccessful() {
this._checkResponseReady()
assert(this.response.status >= 200 && this.response.status < 300)
}
/**
* Checks for deep inclusion of a provided json in a response data.
*
* ```js
* // response.data == { user: { name: 'jon', email: 'jon@doe.com' } }
*
* I.seeResponseContainsJson({ user: { email: 'jon@doe.com' } });
* ```
* If an array is received, checks that at least one element contains JSON
* ```js
* // response.data == [{ user: { name: 'jon', email: 'jon@doe.com' } }]
*
* I.seeResponseContainsJson({ user: { email: 'jon@doe.com' } });
* ```
*
* @param {object} json
*/
seeResponseContainsJson(json = {}) {
this._checkResponseReady()
if (Array.isArray(this.response.data)) {
let found = false
for (const el of this.response.data) {
try {
this._assertContains(el, json)
found = true
break
} catch (err) {
continue
}
}
assert(found, `No elements in array matched ${JSON.stringify(json)}`)
} else {
this._assertContains(this.response.data, json)
}
}
/**
* Checks for deep inclusion of a provided json in a response data.
*
* ```js
* // response.data == { data: { user: 1 } }
*
* I.dontSeeResponseContainsJson({ user: 2 });
* ```
* If an array is received, checks that no element of array contains json:
* ```js
* // response.data == [{ user: 1 }, { user: 3 }]
*
* I.dontSeeResponseContainsJson({ user: 2 });
* ```
*
* @param {object} json
*/
dontSeeResponseContainsJson(json = {}) {
this._checkResponseReady()
if (Array.isArray(this.response.data)) {
for (const data of this.response.data) {
try {
this._assertContains(data, json)
assert.fail(`Found matching element: ${JSON.stringify(data)}`)
} catch (err) {
// expected to fail
continue
}
}
} else {
try {
this._assertContains(this.response.data, json)
assert.fail('Response contains the JSON')
} catch (err) {
// expected to fail
}
}
}
/**
* Checks for deep inclusion of a provided json in a response data.
*
* ```js
* // response.data == { user: { name: 'jon', email: 'jon@doe.com' } }
*
* I.seeResponseContainsKeys(['user']);
* ```
*
* If an array is received, check is performed for each element of array:
*
* ```js
* // response.data == [{ user: 'jon' }, { user: 'matt'}]
*
* I.seeResponseContainsKeys(['user']);
* ```
*
* @param {array} keys
*/
seeResponseContainsKeys(keys = []) {
this._checkResponseReady()
if (Array.isArray(this.response.data)) {
for (const data of this.response.data) {
for (const key of keys) {
assert(key in data, `Key "${key}" is not found in ${JSON.stringify(data)}`)
}
}
} else {
for (const key of keys) {
assert(key in this.response.data, `Key "${key}" is not found in ${JSON.stringify(this.response.data)}`)
}
}
}
/**
* Executes a callback function passing in `response` object and assert
* Use it to perform custom checks of response data
*
* ```js
* I.seeResponseValidByCallback(({ data, status }) => {
* assert.strictEqual(status, 200);
* assert('user' in data);
* assert('company' in data);
* });
* ```
*
* @param {function} fn
*/
seeResponseValidByCallback(fn) {
this._checkResponseReady()
fn({ ...this.response, assert })
const body = fn.toString()
fn.toString = () => `${body.split('\n')[1]}...`
}
/**
* Checks that response data equals to expected:
*
* ```js
* // response.data is { error: 'Not allowed' }
*
* I.seeResponseEquals({ error: 'Not allowed' })
* ```
* @param {object} resp
*/
seeResponseEquals(resp) {
this._checkResponseReady()
assert.deepStrictEqual(this.response.data, resp)
}
/**
* Validates JSON structure of response using [joi library](https://joi.dev).
* See [joi API](https://joi.dev/api/) for complete reference on usage.
*
* Use pre-initialized joi instance by passing function callback:
*
* ```js
* // response.data is { name: 'jon', id: 1 }
*
* I.seeResponseMatchesJsonSchema(joi => {
* return joi.object({
* name: joi.string(),
* id: joi.number()
* })
* });
*
* // or pass a valid schema
* const joi = require('joi');
*
* I.seeResponseMatchesJsonSchema(joi.object({
* name: joi.string(),
* id: joi.number();
* });
* ```
*
* @param {any} fnOrSchema
*/
seeResponseMatchesJsonSchema(fnOrSchema) {
this._checkResponseReady()
let schema = fnOrSchema
if (typeof fnOrSchema === 'function') {
schema = fnOrSchema(joi)
const body = fnOrSchema.toString()
fnOrSchema.toString = () => `${body.split('\n')[1]}...`
}
if (!schema) throw new Error('Empty Joi schema provided, see https://joi.dev/ for details')
if (!joi.isSchema(schema)) throw new Error('Invalid Joi schema provided, see https://joi.dev/ for details')
schema.toString = () => schema.describe()
joi.assert(this.response.data, schema)
}
_checkResponseReady() {
if (!this.response) throw new Error('Response is not available')
}
_assertContains(actual, expected) {
for (const key in expected) {
assert(key in actual, `Key "${key}" not found in ${JSON.stringify(actual)}`)
if (typeof expected[key] === 'object' && expected[key] !== null) {
this._assertContains(actual[key], expected[key])
} else {
assert.deepStrictEqual(actual[key], expected[key], `Values for key "${key}" don't match`)
}
}
}
}
module.exports = JSONResponse