-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.test.js
391 lines (337 loc) · 10.5 KB
/
index.test.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
const Nuo = require('./index')
describe('Promise constructor', () => {
it('receives a resolver function when constructed which is called immediately', () => {
// mock function with spies
const executor = jest.fn()
const promise = new Nuo(executor)
// mock function should be called immediately
expect(executor.mock.calls.length).toBe(1)
// arguments should be functions
expect(typeof executor.mock.calls[0][0]).toBe('function')
expect(typeof executor.mock.calls[0][1]).toBe('function')
})
it('is in a PENDING state', () => {
const promise = new Nuo(function executor(resolve, reject) {
/* ... */
})
// for the sake of simplicity the state is public
expect(promise.state).toBe('PENDING')
})
it('transitions to the FULFILLED state with a `value`', () => {
const value = ':)'
const promise = new Nuo((resolve, reject) => {
resolve(value)
})
expect(promise.state).toBe('FULFILLED')
})
it('transitions to the REJECTED state with a `reason`', () => {
const reason = 'I failed :('
const promise = new Nuo((resolve, reject) => {
reject(reason)
})
expect(promise.state).toBe('REJECTED')
})
})
describe('Observing state changes', () => {
it('should have a .then method', () => {
const promise = new Nuo(() => {})
expect(typeof promise.then).toBe('function')
})
it('should call the onFulfilled method when promise is in a FULFILLED state', done => {
const value = ':)'
const onFulfilled = jest.fn()
const promise = new Nuo((resolve, reject) => {
resolve(value)
}).then(onFulfilled)
setTimeout(() => {
expect(onFulfilled.mock.calls.length).toBe(1)
expect(onFulfilled.mock.calls[0][0]).toBe(value)
done()
}, 10)
})
it('transitions to the REJECTED state with a `reason`', done => {
const reason = 'I failed :('
const onRejected = jest.fn()
const promise = new Nuo((resolve, reject) => {
reject(reason)
}).then(null, onRejected)
setTimeout(() => {
expect(onRejected.mock.calls.length).toBe(1)
expect(onRejected.mock.calls[0][0]).toBe(reason)
done()
}, 10)
})
})
describe('One way transition', () => {
const value = ':)'
const reason = 'I failed :('
it('when a promise is fulfilled it should not be rejected with another value', done => {
const onFulfilled = jest.fn()
const onRejected = jest.fn()
const promise = new Nuo((resolve, reject) => {
resolve(value)
reject(reason)
})
promise.then(onFulfilled, onRejected)
setTimeout(() => {
expect(onFulfilled.mock.calls.length).toBe(1)
expect(onFulfilled.mock.calls[0][0]).toBe(value)
expect(onRejected.mock.calls.length).toBe(0)
expect(promise.state === 'FULFILLED')
done()
}, 10)
})
it('when a promise is rejected it should not be fulfilled with another value', done => {
const onFulfilled = jest.fn()
const onRejected = jest.fn()
const promise = new Nuo((resolve, reject) => {
reject(reason)
resolve(value)
})
promise.then(onFulfilled, onRejected)
setTimeout(() => {
expect(onRejected.mock.calls.length).toBe(1)
expect(onRejected.mock.calls[0][0]).toBe(reason)
expect(onFulfilled.mock.calls.length).toBe(0)
expect(promise.state === 'REJECTED')
done()
}, 10)
})
})
describe('Handling resolver errors', () => {
it('when the resolver fails the promise should transition to the REJECTED state', done => {
const reason = new Error('I failed :(')
const onRejected = jest.fn()
const promise = new Nuo((resolve, reject) => {
throw reason
})
promise.then(null, onRejected)
setTimeout(() => {
expect(onRejected.mock.calls.length).toBe(1)
expect(onRejected.mock.calls[0][0]).toBe(reason)
expect(promise.state === 'REJECTED')
done()
}, 10)
})
})
describe('Async executors', () => {
it('should queue callbacks when the promise is not fulfilled immediately', done => {
const value = ':)'
const promise = new Nuo((resolve, reject) => {
setTimeout(resolve, 1, value)
})
const onFulfilled = jest.fn()
promise.then(onFulfilled)
setTimeout(() => {
// should have been called once
expect(onFulfilled.mock.calls.length).toBe(1)
expect(onFulfilled.mock.calls[0][0]).toBe(value)
promise.then(onFulfilled)
}, 5)
// should not be called immediately
expect(onFulfilled.mock.calls.length).toBe(0)
setTimeout(function() {
// should have been called twice
expect(onFulfilled.mock.calls.length).toBe(2)
expect(onFulfilled.mock.calls[1][0]).toBe(value)
done()
}, 10)
})
it('should queue callbacks when the promise is not rejected immediately', done => {
const reason = 'I failed :('
const promise = new Nuo((resolve, reject) => {
setTimeout(reject, 1, reason)
})
const onRejected = jest.fn()
promise.then(null, onRejected)
// should not be called immediately
expect(onRejected.mock.calls.length).toBe(0)
setTimeout(() => {
// should have been called once
expect(onRejected.mock.calls.length).toBe(1)
expect(onRejected.mock.calls[0][0]).toBe(reason)
promise.then(null, onRejected)
}, 5)
setTimeout(function() {
// should have been called twice
expect(onRejected.mock.calls.length).toBe(2)
expect(onRejected.mock.calls[1][0]).toBe(reason)
done()
}, 10)
})
})
describe('Chaining promises', () => {
it('.then should return a new promise', () => {
const f1 = jest.fn()
expect(function() {
new Nuo(resolve => resolve()).then(f1).then(f1)
}).not.toThrow()
})
it("if .then's onFulfilled is called without errors it should transition to FULFILLED", done => {
const value = ':)'
const f1 = jest.fn()
new Nuo(resolve => resolve()).then(() => value).then(f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
})
it("if .then's onRejected is called without errors it should transition to FULFILLED", done => {
const value = ':)'
const f1 = jest.fn()
new Nuo((fulfill, reject) => reject())
.then(null, () => value)
.then(f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
})
it("if .then's onFulfilled is called and has an error it should transition to REJECTED", done => {
const reason = new Error('I failed :(')
const f1 = jest.fn()
new Nuo(resolve => resolve())
.then(() => {
throw reason
})
.then(null, f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(reason)
done()
}, 10)
})
it("if .then's onRejected is called and has an error it should transition to REJECTED", done => {
const reason = new Error('I failed :(')
const f1 = jest.fn()
new Nuo((resolve, reject) => reject())
.then(null, () => {
throw reason
})
.then(null, f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(reason)
done()
}, 10)
})
})
describe('Async handlers', () => {
it(
'if a handler returns a promise, the previous promise should ' +
'adopt the state of the returned promise',
done => {
const value = ':)'
const f1 = jest.fn()
new Nuo(resolve => resolve())
.then(() => new Nuo(resolve => resolve(value)))
.then(f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
}
)
it(
'if a handler returns a promise resolved in the future, ' +
'the previous promise should adopt its value',
done => {
const value = ':)'
const f1 = jest.fn()
new Nuo(resolve => setTimeout(resolve, 0))
.then(() => new Nuo(resolve => setTimeout(resolve, 0, value)))
.then(f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
}
)
})
describe('Additional cases', () => {
// TODO: move up
it('works with invalid handlers (fulfill)', done => {
const value = ':)'
const f1 = jest.fn()
const p = new Nuo(resolve => resolve(value))
const q = p.then(null)
q.then(f1)
setTimeout(() => {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
})
it('works with invalid handlers (reject)', done => {
const reason = 'I failed :('
const r1 = jest.fn()
const p = new Nuo((resolve, reject) => reject(reason))
const q = p.then(null, null)
q.then(null, r1)
setTimeout(() => {
expect(r1.mock.calls.length).toBe(1)
expect(r1.mock.calls[0][0]).toBe(reason)
done()
}, 10)
})
it('the promise observers are called after the event loop', done => {
const value = ':)'
const f1 = jest.fn()
let resolved = false
const p = new Nuo(resolve => {
resolve(value) // should not execute f1 immediately
resolved = true
}).then(f1)
expect(f1.mock.calls.length).toBe(0)
setTimeout(function() {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
expect(resolved).toBe(true)
done()
}, 10)
})
it('rejects with a resolved promise', done => {
const value = ':)'
const reason = new Nuo(resolve => resolve(value))
const r1 = jest.fn()
const p = new Nuo(resolve => resolve())
.then(() => {
throw reason
})
.then(null, r1)
expect(r1.mock.calls.length).toBe(0)
setTimeout(function() {
expect(r1.mock.calls.length).toBe(1)
expect(r1.mock.calls[0][0]).toBe(reason)
done()
}, 10)
})
it('should throw when attempted to be resolved with itself', done => {
const r1 = jest.fn()
const p = new Nuo(resolve => resolve())
const q = p.then(() => q)
q.then(null, r1)
setTimeout(function() {
expect(r1.mock.calls.length).toBe(1)
expect(r1.mock.calls[0][0] instanceof TypeError).toBe(true)
done()
}, 10)
})
it('should work with thenables', done => {
const value = ':)'
const thenable = {
then: resolve => resolve(value)
}
const f1 = jest.fn()
new Nuo(resolve => resolve(value)).then(() => thenable).then(f1)
setTimeout(function() {
expect(f1.mock.calls.length).toBe(1)
expect(f1.mock.calls[0][0]).toBe(value)
done()
}, 10)
})
})