This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
jasmine-signalsSpec.js
294 lines (229 loc) · 10 KB
/
jasmine-signalsSpec.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
describe('jasmine-signals', function() {
var signal, spy, listenerSpy, result;
beforeEach(function () {
signal = new signals.Signal();
spy = spyOnSignal(signal);
});
it('should fail if not spying on signal', function() {
expect(function() {
spyOnSignal({ });
}).toThrow('spyOnSignal requires a signal as a parameter');
});
it('should fail if signal to spy on not specified', function() {
expect(function() {
spyOnSignal();
}).toThrow('spyOnSignal requires a signal as a parameter');
});
it('should fail if signal to spy on is null', function() {
expect(function() {
spyOnSignal(null);
}).toThrow('spyOnSignal requires a signal as a parameter');
});
it('should subscribe to signal on spy', function() {
expect(signal.getNumListeners()).toBe(1);
});
it('should accept signal in expectations', function () {
signal.dispatch();
expect(signal).toHaveBeenDispatched();
});
it('should halt dispatch before it reaches listeners added before spy invocation', function () {
var signal = new signals.Signal();
listenerSpy = jasmine.createSpy('listenerSpy');
signal.add(listenerSpy);
spy = spyOnSignal(signal);
signal.dispatch();
expect(spy).toHaveBeenDispatched();
expect(listenerSpy).not.toHaveBeenCalled();
});
it('should halt dispatch before it reaches listeners added after spy invocation', function () {
listenerSpy = jasmine.createSpy('listenerSpy');
signal.add(listenerSpy);
signal.dispatch();
expect(spy).toHaveBeenDispatched();
expect(listenerSpy).not.toHaveBeenCalled();
});
describe('stop', function() {
it('should unsubscribe from the signal', function() {
spy.stop();
expect(signal.getNumListeners()).toBe(0);
});
it('should resume normal dispatch to listeners', function () {
listenerSpy = jasmine.createSpy('listenerSpy');
signal.add(listenerSpy);
spy.stop();
signal.dispatch();
expect(spy).not.toHaveBeenDispatched();
expect(listenerSpy).toHaveBeenCalled();
});
});
describe('andThrow', function() {
it('should throw the correct exception', function() {
var exceptionMsg = 'test exception';
spy.andThrow(exceptionMsg);
expect(spy).not.toHaveBeenDispatched();
expect(signal.dispatch).toThrow(exceptionMsg);
});
it('should not throw an exception after the spy has been stopped', function () {
var exceptionMsg = 'test exception';
spy.andThrow(exceptionMsg);
spy.stop();
expect(spy).not.toHaveBeenDispatched();
expect(signal.dispatch).not.toThrow(exceptionMsg);
});
});
describe('andCallFake', function() {
it('should call the mock function on signal dispatch', function() {
listenerSpy = jasmine.createSpy('listenerSpy');
spy.andCallFake(listenerSpy);
signal.dispatch();
expect(spy).toHaveBeenDispatched();
expect(listenerSpy).toHaveBeenCalled();
});
it('should not call the mock function after the spy has been stopped', function () {
listenerSpy = jasmine.createSpy('listenerSpy');
spy.andCallFake(listenerSpy);
spy.stop();
signal.dispatch();
expect(spy).not.toHaveBeenDispatched();
expect(listenerSpy).not.toHaveBeenCalled();
});
});
describe('andCallThrough', function() {
it('should call through to listeners added before spy invocation', function () {
var signal = new signals.Signal();
listenerSpy = jasmine.createSpy('listenerSpy');
signal.add(listenerSpy);
spy = spyOnSignal(signal).andCallThrough();
signal.dispatch();
expect(spy).toHaveBeenDispatched();
expect(listenerSpy).toHaveBeenCalled();
});
it('should call through to listeners added after spy invocation', function () {
listenerSpy = jasmine.createSpy('listenerSpy');
signal.add(listenerSpy);
spy.andCallThrough();
signal.dispatch();
expect(spy).toHaveBeenDispatched();
expect(listenerSpy).toHaveBeenCalled();
});
});
describe('toHaveBeenDispatched', function() {
it('should know if signal dispatched', function() {
signal.dispatch();
expect(spy).toHaveBeenDispatched();
});
it('should know if signal not dispatched', function() {
expect(spy).not.toHaveBeenDispatched();
});
it('should pass if dispatched specified number of times', function() {
signal.dispatch();
signal.dispatch();
signal.dispatch();
expect(spy).toHaveBeenDispatched(3);
});
it('should fail if signal count wrong', function() {
signal.dispatch();
expect(spy).not.toHaveBeenDispatched(3);
});
describe('messages', function () {
it('should show message when signal expected', function () {
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] to have been dispatched');
});
it('should show message when signal not expected', function () {
signal.dispatch();
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] not to have been dispatched');
});
it('should show message when signal expected with count', function () {
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy, 2);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] to have been dispatched 2 times but was 0');
});
it('should show message when signal not expected with count', function () {
signal.dispatch();
signal.dispatch();
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy, 2);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] not to have been dispatched 2 times but was 2');
});
});
});
describe('toHaveBeenDispatchedWith', function() {
it('should know if signal dispatched with parameters', function() {
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy, [2, 6]);
expect(result.pass).toBe(false);
});
it('should know if signal not dispatched with parameters', function() {
result = jasmine.signals.matchers.toHaveBeenDispatched(jasmine.matchersUtil).compare(spy, [2, 6]);
signal.dispatch(1, 5);
expect(result.pass).toBe(false);
});
it('should know if signal dispatched with parameters', function() {
signal.dispatch(1, 5);
signal.dispatch(2, 6);
expect(spy).toHaveBeenDispatchedWith(1, 5);
expect(spy).toHaveBeenDispatchedWith(2, 6);
});
it('should know if signal not dispatched', function() {
signal.dispatch(1, 5);
expect(spy).not.toHaveBeenDispatchedWith(2, 3);
});
it('should know if signal dispatched with same parameters', function() {
signal.dispatch(1);
expect(spy).not.toHaveBeenDispatchedWith(1, 5);
});
it('supports simple object equality', function () {
signal.dispatch({foo: 'bar'});
expect(spy).toHaveBeenDispatchedWith({foo: 'bar'});
});
it('supports jasmine.any', function () {
signal.dispatch('some string', {foo: 'bar'});
expect(spy).toHaveBeenDispatchedWith(jasmine.any(String),jasmine.any(Object));
});
describe('messages', function () {
it('should show message when signal expected with matching values', function () {
signal.dispatch(3, 4);
signal.dispatch(5, 6);
result = jasmine.signals.matchers.toHaveBeenDispatchedWith(jasmine.matchersUtil).compare(spy, 1, 2);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] to have been dispatched with (1, 2) but was with (3,4)(5,6)');
});
it('should show message when signal not expected with matching values', function () {
signal.dispatch(1, 2);
signal.dispatch(3, 4);
result = jasmine.signals.matchers.toHaveBeenDispatchedWith(jasmine.matchersUtil).compare(spy, 1, 2);
expect(result.message).toBe('Expected [Signal active:true numListeners:1] not to have been dispatched with (1, 2) but was with (1,2)(3,4)');
});
});
});
describe('matching', function() {
it('should spyOnSignal with function matcher', function() {
spy.matching(function(signalInfo) {
return signalInfo === 1;
});
signal.dispatch(1);
signal.dispatch(5);
signal.dispatch(1);
expect(spy).toHaveBeenDispatched();
expect(spy).toHaveBeenDispatched(2);
});
});
describe('createSignalSpyObj', function() {
var error_msg = 'createSignalSpyObj requires a non-empty array of method names to create spies for';
it('should throw an error if methodNames is an empty array', function() {
expect(function() {
jasmine.createSignalSpyObj([]);
}).toThrowError(error_msg);
});
it('should throw an error if methodNames is not an array', function() {
expect(function() {
jasmine.createSignalSpyObj({});
}).toThrowError(error_msg);
});
it('should return an object of SignalSpies', function() {
var methodNames = ['test1', 'test2', 'test3'],
spies = jasmine.createSignalSpyObj(methodNames);
methodNames.forEach(function(spy_name) {
expect(spies[spy_name] instanceof jasmine.signals.SignalSpy).toEqual(true);
});
});
});
});