870eb7551aee3233cfd2afc1849c964ffea9383f.svn-base
6.84 KB
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
/* THIS FILE SHOULD BE BROWSER-COMPATIBLE JS!
* You can use @REMOVE_LINE_FOR_BROWSER to remove code from the browser build.
* Only code on that line will be removed, its mostly to avoid requiring code
* that is node specific
*/
var nodeunit = require('../lib/nodeunit'); // @REMOVE_LINE_FOR_BROWSER
var testCase = nodeunit.testCase;
exports.testTestCase = function (test) {
test.expect(7);
var call_order = [];
var s = testCase({
setUp: function (callback) {
call_order.push('setUp');
test.equals(this.one, undefined);
this.one = 1;
callback();
},
tearDown: function (callback) {
call_order.push('tearDown');
test.ok(true, 'tearDown called');
callback();
},
test1: function (t) {
call_order.push('test1');
test.equals(this.one, 1);
this.one = 2;
t.done();
},
test2: function (t) {
call_order.push('test2');
test.equals(this.one, 1);
t.done();
}
});
nodeunit.runSuite(null, s, {}, function () {
test.same(call_order, [
'setUp', 'test1', 'tearDown',
'setUp', 'test2', 'tearDown'
]);
test.done();
});
};
exports.tearDownAfterError = function (test) {
test.expect(1);
var s = testCase({
tearDown: function (callback) {
test.ok(true, 'tearDown called');
callback();
},
test: function (t) {
throw new Error('some error');
}
});
nodeunit.runSuite(null, s, {}, function () {
test.done();
});
};
exports.catchSetUpError = function (test) {
test.expect(2);
var test_error = new Error('test error');
var s = testCase({
setUp: function (callback) {
throw test_error;
},
test: function (t) {
test.ok(false, 'test function should not be called');
t.done();
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.equal(assertions.length, 1);
test.equal(assertions[0].error, test_error);
test.done();
});
};
exports.setUpErrorCallback = function (test) {
test.expect(2);
var test_error = new Error('test error');
var s = testCase({
setUp: function (callback) {
callback(test_error);
},
test: function (t) {
test.ok(false, 'test function should not be called');
t.done();
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.equal(assertions.length, 1);
test.equal(assertions[0].error, test_error);
test.done();
});
};
exports.catchTearDownError = function (test) {
test.expect(2);
var test_error = new Error('test error');
var s = testCase({
tearDown: function (callback) {
throw test_error;
},
test: function (t) {
t.done();
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.equal(assertions.length, 1);
test.equal(assertions[0].error, test_error);
test.done();
});
};
exports.tearDownErrorCallback = function (test) {
test.expect(2);
var test_error = new Error('test error');
var s = testCase({
tearDown: function (callback) {
callback(test_error);
},
test: function (t) {
t.done();
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.equal(assertions.length, 1);
test.equal(assertions[0].error, test_error);
test.done();
});
};
exports.testErrorAndtearDownError = function (test) {
test.expect(3);
var error1 = new Error('test error one');
var error2 = new Error('test error two');
var s = testCase({
tearDown: function (callback) {
callback(error2);
},
test: function (t) {
t.done(error1);
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.equal(assertions.length, 2);
test.equal(assertions[0].error, error1);
test.equal(assertions[1].error, error2);
test.done();
});
};
exports.testCaseGroups = function (test) {
var call_order = [];
var s = testCase({
setUp: function (callback) {
call_order.push('setUp');
callback();
},
tearDown: function (callback) {
call_order.push('tearDown');
callback();
},
test1: function (test) {
call_order.push('test1');
test.done();
},
group1: {
test2: function (test) {
call_order.push('group1.test2');
test.done();
}
}
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.same(call_order, [
'setUp',
'test1',
'tearDown',
'setUp',
'group1.test2',
'tearDown'
]);
test.done();
});
};
exports.nestedTestCases = function (test) {
var call_order = [];
var s = testCase({
setUp: function (callback) {
call_order.push('setUp');
callback();
},
tearDown: function (callback) {
call_order.push('tearDown');
callback();
},
test1: function (test) {
call_order.push('test1');
test.done();
},
group1: testCase({
setUp: function (callback) {
call_order.push('group1.setUp');
callback();
},
tearDown: function (callback) {
call_order.push('group1.tearDown');
callback();
},
test2: function (test) {
call_order.push('group1.test2');
test.done();
}
})
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.same(call_order, [
'setUp',
'test1',
'tearDown',
'setUp',
'group1.setUp',
'group1.test2',
'group1.tearDown',
'tearDown'
]);
test.done();
});
};
exports.deepNestedTestCases = function (test) {
var val = 'foo';
var s = testCase({
setUp: function (callback) {
val = 'bar';
callback();
},
group1: testCase({
test: testCase({
test2: function (test) {
test.equal(val, 'bar');
test.done();
}
})
})
});
nodeunit.runSuite(null, s, {}, function (err, assertions) {
test.ok(!assertions[0].failed());
test.equal(assertions.length, 1);
test.done();
});
};