forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue_runner.test.js
More file actions
158 lines (149 loc) Β· 3.9 KB
/
queue_runner.test.js
File metadata and controls
158 lines (149 loc) Β· 3.9 KB
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
/**
* Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
import queueRunner from '../queue_runner';
describe('queueRunner', () => {
it('runs every function in the queue.', async () => {
const fnOne = jest.fn(next => next());
const fnTwo = jest.fn(next => next());
const options = {
clearTimeout,
fail: () => {},
onException: () => {},
queueableFns: [
{
fn: fnOne,
},
{
fn: fnTwo,
},
],
setTimeout,
};
await queueRunner(options);
expect(fnOne).toHaveBeenCalled();
expect(fnTwo).toHaveBeenCalled();
});
it('exposes `fail` to `next`.', async () => {
const fail = jest.fn();
const fnOne = jest.fn(next => next.fail());
const fnTwo = jest.fn(next => next());
const options = {
clearTimeout,
fail,
onException: () => {},
queueableFns: [
{
fn: fnOne,
},
{
fn: fnTwo,
},
],
setTimeout,
};
await queueRunner(options);
expect(fnOne).toHaveBeenCalled();
expect(fail).toHaveBeenCalled();
// Even if `fail` is called, the queue keeps running.
expect(fnTwo).toHaveBeenCalled();
});
it('passes errors to `onException`.', async () => {
const error = new Error('The error a test throws.');
const fnOne = jest.fn(() => {
throw error;
});
const fnTwo = jest.fn(next => next());
const onException = jest.fn();
const options = {
clearTimeout,
fail: () => {},
onException,
queueableFns: [
{
fn: fnOne,
},
{
fn: fnTwo,
},
],
setTimeout,
};
await queueRunner(options);
expect(fnOne).toHaveBeenCalled();
expect(onException).toHaveBeenCalledWith(error);
// Even if one of them errors, the queue keeps running.
expect(fnTwo).toHaveBeenCalled();
});
it('passes an error to `onException` on timeout.', async () => {
const fnOne = jest.fn(next => {});
const fnTwo = jest.fn(next => next());
const onException = jest.fn();
const options = {
clearTimeout,
fail: () => {},
onException,
queueableFns: [
{
fn: fnOne,
// It times out in zero seconds.
timeout: () => 0,
},
{
fn: fnTwo,
},
],
setTimeout,
};
await queueRunner(options);
expect(fnOne).toHaveBeenCalled();
expect(onException).toHaveBeenCalled();
// i.e. the `message` of the error passed to `onException`.
expect(onException.mock.calls[0][0].message).toEqual(
'Timeout - Async callback was not invoked within timeout specified ' +
'by jest.setTimeout: 0ms.',
);
expect(fnTwo).toHaveBeenCalled();
});
it('calls `fail` with arguments', async () => {
const failFn = jest.fn(next => next.fail('miserably', 'failed'));
const options = {
clearTimeout,
fail: jest.fn(),
queueableFns: [{fn: failFn}],
setTimeout,
};
await queueRunner(options);
expect(options.fail).toHaveBeenCalledWith('miserably', 'failed');
});
it('calls `fail` when done(error) is invoked', async () => {
const error = new Error('I am an error');
const fail = jest.fn();
const fnOne = jest.fn(next => next(error));
const fnTwo = jest.fn(next => next());
const options = {
clearTimeout,
fail,
onException: () => {},
queueableFns: [
{
fn: fnOne,
},
{
fn: fnTwo,
},
],
setTimeout,
};
await queueRunner(options);
expect(fnOne).toHaveBeenCalled();
expect(fail).toHaveBeenCalledWith(error);
// Even if `fail` is called, the queue keeps running.
expect(fnTwo).toHaveBeenCalled();
});
});