forked from chatwoot/chatwoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-matchers.js
423 lines (412 loc) · 12 KB
/
test-matchers.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import { fail } from 'jest';
function runAssertions(ctx, func) {
try {
const message = func() || '';
return {
message: typeof message === 'function' ? message : () => message,
pass: true,
};
} catch (e) {
return {
pass: false,
message: () => e.message || e,
};
}
}
function assert(expr, failMessage) {
if (!expr) {
const finalMessage =
typeof failMessage === 'function' ? failMessage() : failMessage;
throw new Error(finalMessage);
}
}
function prettyPrint(obj) {
return JSON.stringify(obj, null, 2);
}
async function sleep(ms) {
return new Promise(resolve => {
window.setTimeout(() => {
resolve();
}, ms);
});
}
function assertHasKeys(obj, keys, msg) {
assert(obj, 'actual is not set');
assert(typeof obj === 'object', 'actual is not an object');
assert(
(() => {
const objectKeys = Object.keys(obj);
return keys.reduce(
(acc, cur) => acc && objectKeys.indexOf(cur) > -1,
true
);
})(),
msg
);
return msg;
}
function notFor(self) {
return self.isNot ? ' not ' : ' ';
}
function testIsInstance(actual, ctor) {
assert(actual !== undefined, 'actual is undefined');
assert(actual !== null, 'actual is null');
assert(
actual instanceof ctor,
`Expected instance of ${Object.prototype.toString.call(
ctor
)} but got ${actual}`
);
}
async function runAssertionsAsync(ctx, func) {
try {
await func();
return {
message: () => '',
pass: !ctx.isNot,
};
} catch (e) {
return {
pass: false,
message: () => e.message || e,
};
}
}
beforeAll(() => {
expect.extend({
toHaveKeys(actual, ...expected) {
return runAssertions(this, () => {
assert(expected, 'keys are not set');
const msg = () =>
`expected\n${prettyPrint(actual)}\nto have keys\n${prettyPrint(
expected
)}`;
return assertHasKeys(actual, expected, msg);
});
},
toHaveKey(actual, expected) {
return runAssertions(this, () => {
assert(expected, 'key is not set');
const msg = () =>
`expected ${prettyPrint(actual)} to have key "${expected}"`;
return assertHasKeys(actual, [expected], msg);
});
},
toBeEquivalentTo(actual, expected) {
return runAssertions(this, () => {
const msg = () =>
`expected collection equivalent to\n${prettyPrint(
expected
)}\nbut got\n${prettyPrint(actual)}`;
assert(Array.isArray(actual), () => `${actual} is not an array`);
assert(Array.isArray(expected), () => `${expected} is not an array`);
assert(actual.length === expected.length, msg);
assert(
actual.reduce((acc, cur) => acc && expected.indexOf(cur) > -1, true),
msg
);
return msg;
});
},
toBePrototypical(actual) {
return runAssertions(this, () => {
const msg = () =>
`expected${notFor(this)}prototype, but got ${prettyPrint(actual)}`;
assert(actual, msg);
assert(actual.prototype, msg);
return msg;
});
},
toBeAsyncFunction(actual) {
return runAssertions(this, () => {
const msg = () =>
`expected${notFor(this)}async function but got ${prettyPrint(
actual
)}`;
assert(
Object.prototype.toString.call(actual) === '[object AsyncFunction]' ||
Object.prototype.toString.call(actual) === '[object Function]',
msg
);
return msg;
});
},
toBePromiseLike(actual) {
return runAssertions(this, () => {
const err = moreInfo => {
return `expected something${notFor(
this
)}promise-like, but got ${actual}${
moreInfo ? '\n\t(' : ''
}${moreInfo}${moreInfo ? ')' : ''}`;
};
assert(actual, err);
assert(typeof actual === 'object', err);
assert(
actual.then && typeof actual.then === 'function',
'should have a then function'
);
return () => err();
});
},
toBeConstructor(actual) {
return runAssertions(this, () => {
const err = () => {
return `expected ${actual}${notFor(this)}to be a constructor`;
};
assert(actual, err);
assert(actual.prototype, err);
return err;
});
},
toBeA(actual, ctor) {
return runAssertions(this, () => {
testIsInstance(actual, ctor);
return () =>
`expected${notFor(
this
)}to get instance of ${ctor}, but received ${actual}`;
});
},
toBeAn(actual, ctor) {
return runAssertions(this, () => {
testIsInstance(actual, ctor);
return () =>
`expected${notFor(
this
)}to get instance of ${ctor}, but received ${actual}`;
});
},
toBeVueComponent(actual, withName) {
return runAssertions(this, () => {
assert(
typeof actual.render === 'function',
`actual does not have a render function -- are you sure it's a Vue component?`
);
assert(
actual.name === withName,
`Expected component${notFor(
this
)}to have name "${withName}", but found "${actual.name}"`
);
return () =>
`Expected${notFor(
this
)}to receive a Vue component with name ${withName}`;
});
},
toBeNumericInput(htmlElement) {
return runAssertions(this, () => {
const msg = () =>
`Expected${notFor(this)}to receive numeric input but got: ${
htmlElement.outerHTML
}`;
assert(htmlElement.type === 'number', msg);
return msg;
});
},
toHaveCssClass(actual, cssClass) {
return runAssertions(this, () => {
const msg = () =>
`Expected ${actual.outerHTML}${notFor(
this
)}to have css class "${cssClass}"`;
const el = actual.$el || actual;
assert(el.classList.contains(cssClass), msg);
return msg;
});
},
toHaveBeenCalledOnce(actual) {
return runAssertions(this, () => {
if (this.isNot) {
throw new Error(
[
"Negation of 'toHaveBeenCalledOnce' is ambiguous ",
"(do you mean 'not at all' or 'any number except 1'?)",
].join('')
);
}
expect(actual).toHaveBeenCalledTimes(1);
return () => `Expected${notFor(this)}to have been called once`;
});
},
toHaveBeenCalledOnceWith(actual, ...args) {
return runAssertions(this, () => {
expect(actual).toHaveBeenCalledTimes(1);
expect(actual).toHaveBeenCalledWith(...args);
return () =>
`Expected${notFor(this)}to have been called once with ${args}`;
});
},
toBeHidden(actual) {
return runAssertions(this, () => {
const msg = () =>
`Expected '${actual.outerHTML}'${notFor(this)}to be hidden`;
assert(actual, 'actual does not exist');
assert(actual.style, 'actual may not be an html element?');
assert(
actual.style.display === 'none' ||
actual.style.visibility === 'hidden' ||
actual.style.visibility === 'collapse',
msg
);
return msg;
});
},
toBeVisible(htmlElement) {
return runAssertions(this, () => {
const msg = () =>
`Expected '${htmlElement.outerHTML}'${notFor(this)}to be hidden`;
assert(htmlElement, 'actual does not exist');
assert(
htmlElement.style.display !== 'none' &&
htmlElement.style.visibility !== 'hidden' &&
htmlElement.style.visibility !== 'collapse',
msg
);
return msg;
});
},
async toBeCompleted(actual) {
return runAssertionsAsync(this, async () => {
let completed = false;
let state = 'pending';
const msg = () =>
`expected${notFor(this)}to complete promise (final state: ${state})`;
actual
.then(() => {
state = 'resolved';
completed = true;
})
.catch(() => {
state = 'rejected';
completed = true;
});
await sleep(50);
if (completed && this.isNot) {
fail(msg());
} else if (!completed && !this.isNot) {
fail(msg());
}
});
},
async toBeResolved(actual, message, timeoutMs) {
return runAssertionsAsync(this, async () => {
let resolved = null;
const timeout = timeoutMs || 50;
const msg = () =>
`expected${notFor(this)}to resolve promise, but ${
resolved === null ? 'it never completed' : 'it rejected'
}${message ? `More info: ${message}` : ''}`;
actual
.then(() => {
resolved = true;
})
.catch(() => {
resolved = false;
});
let slept = 0;
while (resolved === null && slept < timeout) {
// eslint-disable-next-line no-await-in-loop
await sleep(50);
slept += 50;
}
if (resolved && this.isNot) {
fail(msg());
} else if (!resolved && !this.isNot) {
fail(msg());
}
});
},
async toBeRejected(actual, message, timeoutMs) {
return runAssertionsAsync(this, async () => {
let rejected = null;
const timeout = timeoutMs || 50;
const msg = () =>
`expected${notFor(this)}to reject promise, but ${
rejected === null ? 'it never completed' : 'it resolved'
}${message ? `More info: ${message}` : ''}`;
actual
.then(() => {
rejected = false;
})
.catch(() => {
rejected = true;
});
let slept = 0;
while (rejected === null && slept < timeout) {
// eslint-disable-next-line no-await-in-loop
await sleep(50);
slept += 50;
}
if (rejected && this.isNot) {
fail(msg());
} else if (!rejected && !this.isNot) {
fail(msg());
}
});
},
toExist(actual) {
return runAssertions(this, () => {
const msg = () => `Expected ${actual}${notFor(this)}to exist`;
assert(actual !== null && actual !== undefined, msg);
return msg;
});
},
toBeDisabled(actual) {
return runAssertions(this, () => {
const msg = () => `Expected ${actual}${notFor(this)}to be disabled`;
assert(actual.disabled, msg);
return msg;
});
},
toHaveReceivedNoCallsAtAll(mockedObject) {
return runAssertions(this, () => {
const called = Object.getOwnPropertyNames(
Object.getPrototypeOf(mockedObject)
).reduce((acc, cur) => {
const prop = mockedObject[cur];
if (typeof prop.mock === 'undefined') {
return acc;
}
if (prop.mock.calls && prop.mock.calls.length) {
acc.push(cur);
}
return acc;
}, []);
const msg = () =>
`expected${notFor(
this
)}to have received any calls, but got ${called}`;
assert(!called.length, msg);
return msg;
});
},
toHaveReceivedOnly(mockedObject, ...calls) {
return runAssertions(this, () => {
const called = Object.getOwnPropertyNames(
Object.getPrototypeOf(mockedObject)
).reduce((acc, cur) => {
const prop = mockedObject[cur];
if (typeof prop.mock === 'undefined') {
return acc;
}
if (
prop.mock.calls &&
prop.mock.calls.length &&
calls.indexOf(cur) === -1
) {
acc.push(cur);
}
return acc;
}, []);
const msg = () =>
`expected${notFor(
this
)}to have received any calls, but got ${called}`;
assert(!called.length, msg);
return msg;
});
},
});
});