-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathevent-emitter.test.js
75 lines (66 loc) · 2.03 KB
/
event-emitter.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
import EventEmitter from './event-emitter';
describe('EventEmitter', () => {
let emitter;
beforeEach(() => {
emitter = new EventEmitter();
});
it('exposes the public API', () => {
expect(emitter).toHaveProperty('on');
expect(emitter).toHaveProperty('emit');
expect(emitter).toHaveProperty('once');
expect(emitter).toHaveProperty('off');
});
it('emitter.on', () => {
const foo = jest.fn();
const bar = jest.fn();
emitter.on('foo', foo);
expect(emitter.listeners['foo'].listeners).toEqual([foo]);
emitter.on('foo', bar);
expect(emitter.listeners['foo'].listeners).toEqual([foo, bar]);
});
it('emitter.once', () => {
const foo = jest.fn();
const bar = jest.fn();
emitter.once('foo', foo);
expect(emitter.listeners['foo'].listeners).toEqual([foo]);
emitter.once('foo', bar);
expect(emitter.listeners['foo'].listeners).toEqual([bar]);
});
it('emitter.emit', () => {
// emitter.on
const foo = jest.fn();
emitter.on('foo', foo);
emitter.emit('foo', 'x');
expect(foo).toHaveBeenNthCalledWith(1, 'x');
emitter.emit('foo', 'x');
expect(foo).toHaveBeenCalledTimes(2);
// emitter.once
const bar = jest.fn();
emitter.once('bar', bar);
emitter.emit('bar', 'x');
expect(bar).toHaveBeenNthCalledWith(1, 'x');
emitter.emit('bar', 'x');
expect(bar).toHaveBeenCalledTimes(1);
});
it('emitter.off, remove all listener', () => {
const foo = jest.fn();
emitter.on('foo', foo);
emitter.emit('foo', 'x');
emitter.off('foo');
emitter.emit('foo', 'x');
expect(foo).toHaveBeenCalledTimes(1);
});
it('emitter.off, remove specific listener', () => {
const foo = jest.fn();
const bar = jest.fn();
emitter.on('foo', foo);
emitter.on('foo', bar);
emitter.emit('foo', 'x');
expect(foo).toHaveBeenCalledTimes(1);
expect(bar).toHaveBeenCalledTimes(1);
emitter.off('foo', foo);
emitter.emit('foo', 'x');
expect(foo).toHaveBeenCalledTimes(1);
expect(bar).toHaveBeenCalledTimes(2);
});
});