-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
343 lines (291 loc) · 9.25 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
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
/* eslint-disable prefer-arrow-callback, func-names */
import assert from 'assert';
import CaptainHook from '../src/captain-hook.js'
it('sets default method name `on` in prototype', function () {
const inst = Object.create(CaptainHook());
assert.equal(inst.hasOwnProperty('on'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('on'), true);
});
it('sets default method name `once` in prototype', function () {
const inst = Object.create(CaptainHook());
assert.equal(inst.hasOwnProperty('once'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('once'), true);
});
it('sets default method name `off` in prototype', function () {
const inst = Object.create(CaptainHook());
assert.equal(inst.hasOwnProperty('off'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('off'), true);
});
it('sets default method name `_emit` in prototype', function () {
const inst = Object.create(CaptainHook());
assert.equal(inst.hasOwnProperty('_emit'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('_emit'), true);
});
it('sets default property name `_handlers` on instance', function () {
const inst = Object.create(CaptainHook());
inst.on('event', function () {});
assert.equal(inst.hasOwnProperty('_handlers'), true);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('_handlers'), false);
});
it('cannot access truly private handler storage', function () {
const inst = Object.create(CaptainHook({
handlers_prop: null,
}));
inst.on('event', function () {}); // this creates _handlers on instance
assert.equal(inst.hasOwnProperty('_handlers'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('_handlers'), false);
});
it('sets custom method name for `on`', function () {
const inst = Object.create(CaptainHook({
on_prop: 'myon'
}));
assert.equal(inst.hasOwnProperty('myon'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('myon'), true);
});
it('sets custom method name for `once`', function () {
const inst = Object.create(CaptainHook({
once_prop: 'myonce'
}));
assert.equal(inst.hasOwnProperty('myonce'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('myonce'), true);
});
it('sets custom method name for `off`', function () {
const inst = Object.create(CaptainHook({
off_prop: 'myoff'
}));
assert.equal(inst.hasOwnProperty('myoff'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('myoff'), true);
});
it('sets custom method name for `_emit`', function () {
const inst = Object.create(CaptainHook({
emit_prop: 'myemit'
}));
assert.equal(inst.hasOwnProperty('myemit'), false);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('myemit'), true);
});
it('sets custom method name for `_handlers`', function () {
const inst = Object.create(CaptainHook({
handlers_prop: '_myhandlers'
}));
inst.on('event', function () {}); // this creates _handlers on instance
assert.equal(inst.hasOwnProperty('_myhandlers'), true);
assert.equal(Object.getPrototypeOf(inst).hasOwnProperty('_myhandlers'), false);
});
it('repeatedly calls registered handlers, concatenates the return values, and sorts callbacks by priority', function () {
const App = function () {
this.do = function () {
const results = this._emit('some_event');
assert.equal(results[0], 'b');
assert.equal(results[1], 'a');
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.on('some_event', function () { return 'a'; }, {
priority: 2,
});
inst.on('some_event', function () { return 'b'; }, {
priority: 9,
});
inst.do();
inst.do(); // second time must succeed too
});
it('uses truly private callback storage', function () {
const App = function () {
this.do = function () {
const results = this._emit('some_event');
assert.equal(results[0], 'b');
assert.equal(results[1], 'a');
};
};
Object.assign(App.prototype, CaptainHook({
handlers_prop: null,
}));
const inst = new App();
inst.on('some_event', function () { return 'a'; }, {
priority: 2,
});
inst.on('some_event', function () { return 'b'; }, {
priority: 9,
});
inst.do();
});
it('calls registered handlers only once', function () {
const App = function () {
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.once('some_event', function () { return 'a'; });
let result = inst.do();
assert.equal(result[0], 'a');
result = inst.do(); // second time should not call event handler
assert.equal(result.length, 0);
});
it('removes registered handlers by tag', function () {
const App = function () {
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.on('some_event', function () { return 'a'; }, {
tag: 'mysecret',
});
let result = inst.do();
assert.equal(result[0], 'a');
inst.off('some_event', 'mysecret');
result = inst.do(); // second time should not call event handler
assert.equal(result.length, 0);
});
it('does not remove registered handlers when supplying wrong tag', function () {
const App = function () {
this.do = function () {
const results = this._emit('some_event');
assert.equal(results[0], 'a');
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.on('some_event', function () { return 'a'; }, {
tag: 'mysecret',
});
inst.do();
inst.off('some_event', 'forgotsecret');
inst.do(); // second time should succeed too
});
it('does not share handler storage between instances', function () {
const App = function () {
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook());
const inst1 = new App();
inst1.on('some_event', function () { return 'a'; }, {
priority: 999,
});
inst1.on('some_event', function () { return 'b'; }, {
priority: 1001,
});
const inst2 = new App();
inst2.on('some_event', function () { return 'c'; }, {
priority: 2,
});
inst2.on('some_event', function () { return 'd'; }, {
priority: 9,
});
const result = inst2.do();
assert.equal(result[0], 'd');
assert.equal(result[1], 'c');
});
it('does share handler storage between instances when using private storage, this is a feature and a \'gotcha\'', function () {
const App = function () {
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook({
handlers_prop: null,
}));
const inst1 = new App();
inst1.on('some_event', function () { return 'a'; }, {
priority: 4,
});
inst1.on('some_event', function () { return 'b'; }, {
priority: 3,
});
const inst2 = new App();
inst2.on('some_event', function () { return 'c'; }, {
priority: 2,
});
inst2.on('some_event', function () { return 'd'; }, {
priority: 1,
});
const result = inst2.do();
assert.equal(result[0], 'a');
assert.equal(result[1], 'b');
assert.equal(result[2], 'c');
assert.equal(result[3], 'd');
});
it('does not share handler storage between instances when mixed into instances and when using private handler storage ', function () {
const App = function () {
this.do = function () {
return this._emit('some_event');
};
};
const inst1 = new App();
Object.assign(inst1, CaptainHook({
handlers_prop: null,
}));
const inst2 = new App();
Object.assign(inst2, CaptainHook({
handlers_prop: null,
}));
inst1.on('some_event', function () { return 'a'; }, {
priority: 999,
});
inst1.on('some_event', function () { return 'b'; }, {
priority: 1001,
});
inst2.on('some_event', function () { return 'c'; }, {
priority: 2,
});
inst2.on('some_event', function () { return 'd'; }, {
priority: 9,
});
const result = inst2.do();
assert.equal(result[0], 'd');
assert.equal(result[1], 'c');
});
it('passes arguments to event handlers', function () {
const App = function () {
this.do = function () {
const results = this._emit('some_event', 1, 'two', {three: 3});
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.on('some_event', function(num, str, obj) {
assert.equal(num, 1);
assert.equal(str, 'two');
assert.equal(obj.three, 3);
});
inst.do();
});
it('sets `this` context of event handlers, by default to the instance', function () {
const App = function () {
this.string = 'hello';
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook());
const inst = new App();
inst.on('some_event', function () {
return this.string;
});
assert.equal(inst.do(), 'hello');
});
it('sets `this` context of event handlers to some other object', function () {
const App = function () {
this.string = 'hello';
this.do = function () {
return this._emit('some_event');
};
};
Object.assign(App.prototype, CaptainHook());
const contextobj = {
string: 'world',
};
const inst = new App();
inst.on('some_event', function () {
return this.string;
}, {
context: contextobj,
});
assert.equal(inst.do(), 'world');
});