-
Notifications
You must be signed in to change notification settings - Fork 2
/
sinon-expect.js
133 lines (114 loc) · 2.76 KB
/
sinon-expect.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
var SinonExpect = {
/**
* Sinon assertions supported.
*
*
* @property assertions
* @type {Array}
* @private
*/
assertions: [
"notCalled",
"called",
"calledOnce",
"calledTwice",
"calledThrice",
"callCount",
"callOrder",
"calledOn",
"alwaysCalledOn",
"calledWith",
"calledWithMatch",
"alwaysCalledWith",
"alwaysCalledWithMatch",
"neverCalledWith",
"neverCalledWithMatch",
"calledWithExactly",
"alwaysCalledWithExactly",
"threw",
"alwaysThrew"
],
/**
* Enhances expect with sinon matchers.
* Usage:
*
*
* //Yes you need to override the old expect, sorry.
* expect = SinonExpect.enhance(expect, sinon)
*
* expect(object.withSpy).spy.called();
*
*
*
* @param {expect.js} expect expect.js object
* @param {sinon} sinon sinon instance
*/
enhance: function(expect, sinon, name){
if(typeof(name) === 'undefined'){
name = 'spy';
}
SinonExpect._expect = expect;
SinonExpect._sinon = sinon;
SinonExpect.ExpectWrapper.__proto__ = expect.Assertion;
SinonExpect.ExpectWrapper.spyName = name;
var result = function(obj){
return new SinonExpect.ExpectWrapper(obj);
};
result.Assertion = SinonExpect.ExpectWrapper;
SinonExpect.buildMatchers();
return result;
},
/**
* Creates sinon matchers on the SinonExpect.SinonAssertions prototype.
* This could also be done on including the file but I prefer
* keeping it in a method.
*
* @private
*/
buildMatchers: function(){
var i = 0, len = SinonExpect.assertions.length,
matcher;
for(i, len; i < len; i++){
matcher = SinonExpect.assertions[i];
(function(matcher){
SinonExpect.SinonAssertions.prototype[matcher] = function(){
var args = Array.prototype.slice.call(arguments),
sinon = SinonExpect._sinon;
args.unshift(this.obj);
sinon.assert[matcher].apply(
sinon.assert,
args
);
};
}(matcher));
}
}
};
/**
* Expect wrapper.
* Creates .spy flag for all expect.Assertion instances.
*
* @constructor
* @class ExpectWrapper
* @private
*/
SinonExpect.ExpectWrapper = function(){
SinonExpect._expect.Assertion.apply(this, arguments);
this[SinonExpect.ExpectWrapper.spyName] = new SinonExpect.SinonAssertions(this.obj);
};
/**
* Spy flag class.
* Instance used when using expect(foo).spy.
* where `spy` is an actual instance of SinonAssertions.
*
*
* @constructor
* @class SinonAssertions
* @private
*/
SinonExpect.SinonAssertions = function(obj){
this.obj = obj;
};
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = exports = SinonExpect;
}