-
Notifications
You must be signed in to change notification settings - Fork 9
/
should-sinon.js
403 lines (362 loc) · 10.4 KB
/
should-sinon.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
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
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['should'], factory);
} else if (typeof exports === 'object') {
module.exports = factory(require('should'));
} else {
factory(should);
}
}(function (should) {
var Assertion = should.Assertion;
Assertion.add('sinonStub', function() {
this.params = { operator: 'to be sinon stub' };
this.is.not.null().and.not.undefined();
var method = this.obj;
if(method.proxy && method.proxy.isSinonProxy) {
method = method.proxy;
}
method.should.be.a.Function()
.and.have.property('getCall')
.which.is.a.Function();
});
function isStub(stub) {
if (!stub) {
return false;
}
if (method.proxy && method.proxy.isSinonProxy) {
verifyIsStub(method.proxy);
} else {
if (typeof method !== "function") {
assert.fail(method + " is not a function");
}
if (typeof method.getCall !== "function") {
assert.fail(method + " is not stubbed");
}
}
}
function timesInWords(count) {
switch (count) {
case 1:
return "once";
case 2:
return "twice";
case 3:
return "thrice";
default:
return (count || 0) + " times";
}
}
function isCall(call) {
return call && isSpy(call.proxy);
}
function isSpy(spy) {
return typeof spy === "function" &&
typeof spy.getCall === "function" &&
typeof spy.calledWithExactly === "function";
}
function proxySinonBooleanProperty(name, message) {
Assertion.add(name, function() {
var obj = this.obj;
if(!isSpy(obj) && !isCall(obj)) {
this.params = { obj: obj.toString(), operator: 'to be sinon spy or spy call' };
this.fail();
}
if(isCall(obj)) {
obj = obj.proxy;
}
this.params = { obj: obj.toString(), operator: obj.printf(message) };
should(obj[name]).be.true();
});
}
function proxySinonMethod(name, message) {
Assertion.add(name, function() {
var obj = this.obj;
if(!isSpy(obj) && !isCall(obj)) {
this.params = { obj: obj.toString(), operator: 'to be sinon spy or spy call' };
this.fail();
}
if(isCall(obj)) {
obj = obj.proxy;
}
var args = Array.prototype.slice.call(arguments);
args.unshift(message);
this.params = { obj: obj.toString(), operator: obj.printf.apply(obj, args) };
should(obj[name].apply(obj, arguments)).be.true();
});
}
/**
* Assert stub was called at least once
*
* @name called
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var callback = sinon.spy();
* callback();
* callback.should.be.called();
*/
proxySinonBooleanProperty('called', 'to have been called, but was called %c');
/**
* Assert stub was called at exactly once
*
* @name calledOnce
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var callback = sinon.spy();
* callback();
* callback.should.be.calledOnce();
*/
proxySinonBooleanProperty('calledOnce', 'to be called once but was called %c%C');
/**
* Assert stub was called at exactly twice
*
* @name calledTwice
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var callback = sinon.spy();
* callback();
* callback();
* callback.should.be.calledTwice();
*/
proxySinonBooleanProperty('calledTwice', 'to be called twice but was called %c%C');
/**
* Assert stub was called at exactly thrice
*
* @name calledThrice
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var callback = sinon.spy();
* callback();
* callback();
* callback();
* callback.should.be.calledThrice();
*/
proxySinonBooleanProperty('calledThrice', 'to be called thrice but was called %c%C');
/**
* Assert stub was called with given object as this
*
* @name calledOn
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {*} obj - object that was used as this
* @example
*
* var callback = sinon.spy();
* var obj = {};
* callback.call(obj);
* callback.should.be.calledOn(obj);
*/
proxySinonMethod('calledOn', 'to be called with %1 as this but was called with %t');
/**
* Assert stub was called with given object as this always. So if you call stub several times
* all should be with the same object
*
* @name alwaysCalledOn
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {*} obj - object that was used as this
* @example
*
* var callback = sinon.spy();
* var obj = {};
* callback.call(obj);
* callback.should.be.alwaysCalledOn(obj);
*/
proxySinonMethod('alwaysCalledOn', 'to always be called with %1 as this but was called with %t');
/**
* Asserts that stub was called with new
*
* @name calledWithNew
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var Class = sinon.spy();
*
* var c = new Class();
*
* Class.should.be.calledWithNew;
*/
proxySinonMethod('calledWithNew', 'to be called with new');
/**
* @name alwaysCalledWithNew
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @example
*
* var Class = sinon.spy();
*
* var c1 = new Class();
* var c2 = new Class();
*
* Class.should.be.alwaysCalledWithNew;
*/
proxySinonMethod('alwaysCalledWithNew', 'to always be called with new');
/**
* Asserts that stub was called with given arguments
*
* @name calledWith
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
* @example
*
* var callback = sinon.spy();
*
* callback(1, 2, 3);
*
* callback.should.be.calledWith(1, 2, 3);
*/
proxySinonMethod('calledWith', 'to be called with arguments %*%C');
/**
* @name alwaysCalledWith
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
* @example
*
* var callback = sinon.spy();
*
* callback(1, 2, 3);
*
* callback.should.be.alwaysCalledWith(1, 2, 3);
*/
proxySinonMethod('alwaysCalledWith', 'to always be called with arguments %*%C');
/**
* Returns true if the spy/stub was never called with the provided arguments.
*
* @name neverCalledWith
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
* @example
*
* var callback = sinon.spy();
*
* callback(1, 2, 3);
*
* callback.should.be.neverCalledWith(1, 2, 3);
*/
proxySinonMethod('neverCalledWith', 'to never be called with arguments %*%C');
/**
* Returns true if spy was called with matching arguments (and possibly others).
*
* @name calledWithMatch
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
*/
proxySinonMethod('calledWithMatch', 'to be called with match %*%C');
/**
* Returns true if spy was always called with matching arguments (and possibly others).
*
* @name alwaysCalledWithMatch
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
*/
proxySinonMethod('alwaysCalledWithMatch', 'to always be called with match %*%C');
/**
* Returns true if the spy/stub was never called with matching arguments.
*
* @name neverCalledWithMatch
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
*/
proxySinonMethod('neverCalledWithMatch', 'to never be called with match %*%C');
/**
* Returns true if call received provided arguments and no others.
*
* @name calledWithExactly
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
*/
proxySinonMethod('calledWithExactly', 'to be called with exact arguments %*%C');
/**
* Passes if the spy was always called with the provided arguments and no others.
*
* @name alwaysCalledWithExactly
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {...*} args - arguments that was used for calling
*/
proxySinonMethod('alwaysCalledWithExactly', 'to always be called with exact arguments %*%C');
/**
* Passes if the spy threw the given exception. The exception can be a
* string denoting its type, or an actual object. If no argument is
* provided, the assertion passes if the spy ever threw any exception.
*
* @name threw
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {string|Error} ex - exception to be thrown
*/
proxySinonMethod('threw', 'to throw exception%C');
/**
* Passes if the spy always threw the given exception. The exception can be a
* string denoting its type, or an actual object. If no argument is
* provided, the assertion passes if the spy ever threw any exception.
*
* @name alwaysThrew
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {string|Error} ex - exception to be thrown
*/
proxySinonMethod('alwaysThrew', 'to always throw exception%C');
/**
* Assert stub was called at exact number of times
*
* @name callCount
* @memberOf Assertion
* @category assertion stubs
* @module should-sinon
* @param {Number} count - number of calles
* @example
*
* var callback = sinon.spy();
* callback.should.have.callCount(0);
* callback();
* callback.should.have.callCount(1);
* callback();
* callback.should.have.callCount(2);
*/
Assertion.add('callCount', function(count) {
var obj = this.obj;
if(!isSpy(obj) && !isCall(obj)) {
this.params = { obj: obj.toString(), operator: 'to be sinon spy or spy call' };
this.fail();
}
if(isCall(obj)) {
obj = obj.proxy;
}
this.params = { operator: obj.printf('to be called ' + timesInWords(count) + ' but was called %c%C' )};
this.assert(obj.callCount === count);
});
}));