-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.js
145 lines (113 loc) · 3.16 KB
/
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
describe('asyncemit', function () {
'use strict';
var ee
, asyncemit = require('./')
, assume = require('assume')
, EventEmitter = require('eventemitter3');
beforeEach(function () {
ee = new EventEmitter();
ee.asyncemit = asyncemit;
});
afterEach(function () {
ee.removeAllListeners();
});
it('is exported as function', function () {
assume(asyncemit).is.a('function');
});
it('returns itself instead of a boolean', function () {
assume(ee.asyncemit('foo', function () {})).equals(ee);
});
it('works with `sync` emitters', function (next) {
next = assume.plan(2, next);
var foo;
ee.on('foo', function (arg) {
assume(arg).equals('bar');
foo = 'foo';
});
ee.asyncemit('foo', 'bar', function () {
assume(foo).equals('foo');
next();
});
});
it('calls the callback when no listeners are available', function (next) {
ee.asyncemit('foo', 'bar', next);
});
it('works with full async emitters', function (next) {
next = assume.plan(2, next);
var foo;
ee.on('foo', function (arg, next) {
assume(arg).equals('bar');
foo = 'foo';
setTimeout(next, 100);
});
ee.asyncemit('foo', 'bar', function () {
assume(foo).equals('foo');
next();
});
});
it('bails out completely if one emitter errors', function (next) {
next = assume.plan(3, next);
ee.on('foo', function (arg, next) {
assume(arg).equals('bar');
next(new Error('He\'s dead jim'));
});
/* istanbul ignore next */
ee.on('foo', function (arg, next) {
throw new Error('I should never be called');
});
ee.asyncemit('foo', 'bar', function (err) {
assume(err).is.instanceOf(Error);
assume(err.message).equals('He\'s dead jim');
next();
});
});
it('processes in order of assignment', function (next) {
var flow = '';
ee.on('foo', function (arg, next) {
assume(arg).equals('bar');
flow += '1';
next();
});
ee.on('foo', function (arg) {
assume(arg).equals('bar');
flow += '2';
});
ee.asyncemit('foo', 'bar', function (err) {
assume(err).is.undefined();
assume(flow).equals('12');
next();
});
});
it('works correctly with once listeners', function (next) {
var flow = '';
ee.once('foo', function (arg, next) {
assume(arg).equals('bar');
flow += '1';
next();
});
ee.once('foo', function (arg) {
assume(arg).equals('bar');
flow += '2';
});
ee.asyncemit('foo', 'bar', function (err) {
assume(err).is.undefined();
assume(flow).equals('12');
ee.asyncemit('foo', 'bar', function (err) {
assume(err).is.undefined();
assume(flow).equals('12');
next();
});
});
});
it('doesn\'t change the original array of listeners', function (next) {
ee.on('foo', function () {});
ee.on('foo', function () {});
ee.on('foo', function () {});
assume(ee.listeners('foo')).has.length(3);
ee.asyncemit('foo', 'bar', function (err) {
assume(err).is.undefined();
assume(ee.listeners('foo')).has.length(3);
next();
});
});
});