-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathemit.spec.ts
More file actions
457 lines (357 loc) · 12.6 KB
/
emit.spec.ts
File metadata and controls
457 lines (357 loc) · 12.6 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
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
* @adonisjs/events
*
* (c) AdonisJS
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { test } from '@japa/runner'
import { fileURLToPath } from 'node:url'
import { setTimeout } from 'node:timers/promises'
import { Application } from '@adonisjs/application'
import { Emitter } from '../../src/emitter.ts'
const BASE_URL = new URL('../app/', import.meta.url)
const BASE_PATH = fileURLToPath(BASE_URL)
type NewUserEvent = { id: number }
test.group('Emitter | emit', (group) => {
group.each.setup(async ({ context }) => {
context.fs.baseUrl = BASE_URL
context.fs.basePath = BASE_PATH
})
test('emit event multiple times', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
await emitter.emit('new:user', { id: 1 })
await emitter.emit('new:user', { id: 2 })
assert.deepEqual(stack, [{ id: 1 }, { id: 2 }])
})
test('emit event for class based events', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
class UserRegistered {
constructor(public email: string) {}
}
emitter.on(UserRegistered, (data) => {
stack.push(data)
})
await emitter.emit(UserRegistered, new UserRegistered('foo@bar.com'))
await emitter.emit(UserRegistered, new UserRegistered('baz@bar.com'))
assert.deepEqual(stack, [new UserRegistered('foo@bar.com'), new UserRegistered('baz@bar.com')])
})
test('validate emit types', async ({ assert, expectTypeOf }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter<{ 'new:user': NewUserEvent }>(app)
class UserRegistered {
constructor(public email: string) {}
}
emitter.on('new:user', (data) => {
stack.push(data)
})
emitter.on(UserRegistered, (data) => {
stack.push(data)
})
type EmitParams = Parameters<(typeof emitter)['emit']>
expectTypeOf<EmitParams>().toEqualTypeOf<['new:user', NewUserEvent]>()
await emitter.emit('new:user', { id: 2 })
await emitter.emit(UserRegistered, new UserRegistered('foo@bar.com'))
assert.deepEqual(stack, [{ id: 2 }, new UserRegistered('foo@bar.com')])
})
test('raise exception when listener fails', async ({ assert }) => {
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', () => {
throw new Error('boom')
})
await assert.rejects(() => emitter.emit('new:user', { id: 1 }), 'boom')
})
test('raise exception when magic string listener fails', async ({ assert, fs }) => {
await fs.create(
'listeners/raises_exception.ts',
`
export default class RaisesException {
handle() {
throw new Error('boom')
}
}
`
)
const app = new Application(fs.baseUrl, {
environment: 'web',
importer(filePath) {
return import(filePath)
},
})
const emitter = new Emitter(app)
await app.init()
emitter.on('new:user', '#listeners/raises_exception')
await assert.rejects(() => emitter.emit('new:user', { id: 1 }), 'boom')
})
test('raise exception when lazy loaded listener fails', async ({ assert }) => {
const NewUserListener = async () => {
return {
default: class NewUser {
sendEmail() {
throw new Error('boom')
}
},
}
}
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
await app.init()
emitter.on('new:user', [NewUserListener, 'sendEmail'])
await assert.rejects(() => emitter.emit('new:user', { id: 1 }), 'boom')
})
test('raise exception when class reference listener fails', async ({ assert }) => {
class NewUser {
sendEmail() {
throw new Error('boom')
}
}
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
await app.init()
emitter.on('new:user', [NewUser, 'sendEmail'])
await assert.rejects(() => emitter.emit('new:user', { id: 1 }), 'boom')
})
test('invoke listeners serially', async ({ assert }) => {
let stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', async () => {
stack.push('1st listener')
})
emitter.on('new:user', async () => {
await setTimeout(300)
stack.push('2nd listener')
})
emitter.on('new:user', async () => {
stack.push('3rd listener')
})
await emitter.emit('new:user', {})
assert.deepEqual(stack, ['1st listener', '3rd listener', '2nd listener'])
stack = []
await emitter.emitSerial('new:user', {})
assert.deepEqual(stack, ['1st listener', '2nd listener', '3rd listener'])
})
})
test.group('Emitter | emit | with error handler', (group) => {
group.each.setup(async ({ context }) => {
context.fs.baseUrl = BASE_URL
context.fs.basePath = BASE_PATH
})
test('capture error using onError handler', async ({ assert }, done) => {
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.onError((event, error) => {
assert.equal(event, 'new:user')
assert.equal(error.message, 'boom')
done()
})
emitter.on('new:user', () => {
throw new Error('boom')
})
await emitter.emit('new:user', { id: 1 })
}).waitForDone()
test('raise exception when magic string listener fails', async ({ assert, fs }, done) => {
await fs.create(
'./listeners/raises_exception.ts',
`
export default class RaisesException {
handle() {
throw new Error('boom')
}
}
`
)
const app = new Application(BASE_URL, {
environment: 'web',
importer(filePath) {
return import(filePath)
},
})
const emitter = new Emitter(app)
await app.init()
emitter.onError((event, error) => {
assert.equal(event, 'new:user')
assert.equal(error.message, 'boom')
done()
})
emitter.on('new:user', '#listeners/raises_exception')
await emitter.emit('new:user', { id: 1 })
}).waitForDone()
test('raise exception when lazy loaded listener fails', async ({ assert }, done) => {
const NewUserListener = async () => {
return {
default: class NewUser {
sendEmail() {
throw new Error('boom')
}
},
}
}
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
await app.init()
emitter.onError((event, error) => {
assert.equal(event, 'new:user')
assert.equal(error.message, 'boom')
done()
})
emitter.on('new:user', [NewUserListener, 'sendEmail'])
await emitter.emit('new:user', { id: 1 })
}).waitForDone()
test('raise exception when class reference listener fails', async ({ assert }, done) => {
class NewUser {
sendEmail() {
throw new Error('boom')
}
}
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
await app.init()
emitter.onError((event, error) => {
assert.equal(event, 'new:user')
assert.equal(error.message, 'boom')
done()
})
emitter.on('new:user', [NewUser, 'sendEmail'])
await emitter.emit('new:user', { id: 1 })
}).waitForDone()
test('capture error using onError handler during emitSerial', async ({ assert }, done) => {
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.onError((event, error) => {
assert.equal(event, 'new:user')
assert.equal(error.message, 'boom')
done()
})
emitter.on('new:user', () => {
throw new Error('boom')
})
await emitter.emitSerial('new:user', { id: 1 })
}).waitForDone()
test('throw error when no error listener is defined during emitSerial', async () => {
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', () => {
throw new Error('boom')
})
await emitter.emitSerial('new:user', { id: 1 })
}).throws('boom')
})
test.group('Emitter | fake', () => {
test('fake event', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
const events = emitter.fake(['new:user'])
await emitter.emit('new:user', { id: 1 })
assert.deepEqual(stack, [])
assert.deepEqual(events.all(), [{ event: 'new:user', data: { id: 1 } }])
})
test('fake event with emitSerial', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
const events = emitter.fake(['new:user'])
await emitter.emitSerial('new:user', { id: 1 })
assert.deepEqual(stack, [])
assert.deepEqual(events.all(), [{ event: 'new:user', data: { id: 1 } }])
})
test('faking multiple times should drop old fakes', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
emitter.on('resend:email', (data) => {
stack.push(data)
})
const events = emitter.fake(['new:user'])
const events1 = emitter.fake(['resend:email'])
await emitter.emit('new:user', { id: 1 })
await emitter.emit('resend:email', { email: 'foo@bar.com' })
assert.deepEqual(stack, [{ id: 1 }])
assert.deepEqual(events.all(), [])
assert.deepEqual(events1.all(), [{ event: 'resend:email', data: { email: 'foo@bar.com' } }])
})
test('fake all events', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
emitter.on('resend:email', (data) => {
stack.push(data)
})
const events = emitter.fake()
await emitter.emit('new:user', { id: 1 })
await emitter.emit('resend:email', { email: 'foo@bar.com' })
assert.deepEqual(stack, [])
assert.deepEqual(events.all(), [
{ event: 'new:user', data: { id: 1 } },
{ event: 'resend:email', data: { email: 'foo@bar.com' } },
])
})
test('do not invoke "onAny" listeners when all events are faked', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.onAny((data) => {
stack.push(data)
})
const events = emitter.fake()
await emitter.emit('new:user', { id: 1 })
await emitter.emit('resend:email', { email: 'foo@bar.com' })
assert.deepEqual(stack, [])
assert.deepEqual(events.all(), [
{ event: 'new:user', data: { id: 1 } },
{ event: 'resend:email', data: { email: 'foo@bar.com' } },
])
})
test('invoke "onAny" listeners when some events are not faked', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter(app)
emitter.onAny((name, data) => {
stack.push({ name, data })
})
const events = emitter.fake(['resend:email'])
await emitter.emit('new:user', { id: 1 })
await emitter.emit('resend:email', { email: 'foo@bar.com' })
assert.deepEqual(stack, [{ name: 'new:user', data: { id: 1 } }])
assert.deepEqual(events.all(), [{ event: 'resend:email', data: { email: 'foo@bar.com' } }])
})
test('restore fakes using Symbol.dispose', async ({ assert }) => {
const stack: any[] = []
const app = new Application(BASE_URL, { environment: 'web' })
const emitter = new Emitter<{ 'new:user': { id: number } }>(app)
emitter.on('new:user', (data) => {
stack.push(data)
})
{
using events = emitter.fake(['new:user'])
await emitter.emit('new:user', { id: 1 })
assert.deepEqual(stack, [])
assert.deepEqual(events.all(), [{ event: 'new:user', data: { id: 1 } }])
}
await emitter.emit('new:user', { id: 2 })
assert.deepEqual(stack, [{ id: 2 }])
})
})