-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.js
320 lines (268 loc) · 8.62 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
var test = require('tape');
var async = require('async');
require('./').extend(async);
function containsNameSync(payload, validated) {
validated(null, payload.name === 'thiago');
}
function containsName(payload, validated) {
setImmediate(validated, null, payload.name === 'thiago');
}
function createAccount(payload, callback) {
setTimeout(fn,10);
function fn() {
payload.id = Date.now();
callback(null, payload);
}
}
test('valid predicate and sync statement', function(t) {
async.waterfall([
async.constant({name: 'thiago'}),
async.if(containsNameSync, createAccount),
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.ok(result.id, 'create account modified the payload');
t.end();
}
});
test('valid predicate and async statement', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(containsName, createAccount),
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.ok(result.id, 'create account modified the payload');
t.end();
}
});
function notifyAdminSync(payload, callback){
payload.notifyTo = '[email protected]';
callback(null, payload);
}
function notContainsName(payload, validated) {
validated(null, payload.name === undefined);
}
test('invalid predicate should call else sync statement', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(notContainsName, createAccount).else(notifyAdminSync),
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.equal(result.notifyTo, '[email protected]', 'else statement changed the payload');
t.notOk(result.id, 'create account should not be called');
t.end();
}
});
test('invalid predicate should call else sync statement', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(notContainsName, createAccount).else(notifyAdminSync),
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.equal(result.notifyTo, '[email protected]', 'else statement changed the payload');
t.notOk(result.id, 'create account should not be called');
t.end();
}
});
function validateAddressAndName(payload, country, validated) {
validated(null, payload.name === 'thiago' && country.city === 'lisbon');
}
function createAccountWithAddress(payload, country, callback) {
payload.city = country.city;
setImmediate(callback, null, payload);
}
test('different arities on if statement function', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
function(payload, callback) { callback(null, payload, { city: 'lisbon'}); },
async.if(validateAddressAndName, createAccountWithAddress)
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.equal(result.city, 'lisbon', 'payload city must exist');
t.end();
}
});
function forceFail(payload, country, validated) {
validated(null, false);
}
function notifyAdminWithCity(payload, country, callback) {
payload.notifyTo = '[email protected]';
setImmediate(callback, null, payload);
}
test('different arities on else statement function', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
function(payload, callback) { callback(null, payload, { city: 'lisbon'}); },
async.if(forceFail, createAccountWithAddress).else(notifyAdminWithCity)
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.equal(result.notifyTo, '[email protected]', 'else statement changed the payload');
t.notOk(result.city, 'payload city must not exist');
t.end();
}
});
function truthyValidation(payload, validated) {
setImmediate(validated, null, true);
}
function byPassOnly(payload, callback) {
payload.id = Date.now();
setImmediate(callback, null, payload);
}
test('must pass the result to next in chain after if statement', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(truthyValidation, byPassOnly),
function(payload, callback) {
payload.byPassed = true;
callback(null, payload);
},
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.ok(result.id, 'id must exist');
t.ok(result.byPassed, 'byPassed flag must exist');
t.end();
}
});
function nop(){}
function falsyValidation(payload, validated) {
validated(null, false);
}
test('invalid predicate and sync statement', function(t) {
async.waterfall([
async.constant({name: 'thiago'}),
async.if(falsyValidation, createAccount),
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.notOk(result.id);
t.end();
}
});
test('must pass the result to next in chain after else statement', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(falsyValidation, nop).else(byPassOnly),
function(payload, callback) {
payload.byPassed = true;
callback(null, payload);
},
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.name, 'thiago', 'payload name is the same as initial');
t.ok(result.id, 'id must exist');
t.ok(result.byPassed, 'byPassed flag must exist');
t.end();
}
});
function blowUp(payload, callback) {
var error = new Error('bum');
setImmediate(callback, error, payload);
}
test('errors must be passed to async properly on if statements', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(truthyValidation, blowUp)
], verify);
function verify(err, result) {
t.ok(err, 'error must exist');
t.end();
}
});
test('errors must be passed to async properly on else statements', function(t){
async.waterfall([
async.constant({name: 'thiago'}),
async.if(falsyValidation, nop).else(blowUp)
], verify);
function verify(err, result) {
t.ok(err, 'error must exist');
t.end();
}
});
function validationThrowError(payload, validated) {
var error = new Error('validate-error');
validated(error);
}
test('predicated returns an error the async callback must be called with error', function(t) {
async.waterfall([
async.constant({name: 'thiago'}),
async.if(validationThrowError, createAccount),
function willNotBeCalled(payload, callback) {
payload.next = true;
callback(null, payload);
}
], verify);
function verify(err, result) {
t.ok(err, 'error must be here');
t.notOk(result, 'must not exist');
t.end();
}
});
test('ifNot is the same as unless', function(t) {
t.equal(async.ifNot, async.unless);
t.end();
});
['ifNot', 'unless'].forEach(function(method) {
function girls(payload, validated) {
validated(null, payload.gender === 'female');
}
function notAllowed(payload, callback) {
payload.allowed = false;
callback(null, payload);
}
function allowed(payload, callback) {
payload.allowed = true;
callback(null, payload);
}
test(method + ' works as expected', function(t) {
async.waterfall([
async.constant({name: 'thiago', gender: 'male'}),
async[method](girls, notAllowed).else(allowed)
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.allowed, false, 'must be equals');
t.end();
}
});
function men(payload, validated) {
validated(null, payload.gender === 'male');
}
test(method + ' works as expected', function(t) {
async.waterfall([
async.constant({name: 'thiago', gender: 'male'}),
async[method](men, notAllowed).else(allowed)
], verify);
function verify(err, result) {
t.notOk(err, 'there is no error');
t.equal(result.allowed, true, 'must be equals');
t.end();
}
});
});
test('works with plain object', function(t){
var cond = require('./')({});
async.waterfall([
async.constant({ name: 'thiago' }),
cond.if(truthyValidation, createAccount),
], verify);
function verify(err, result) {
t.notOk(err, 'error must not be here');
t.ok(result.id, 'must exist');
t.end();
}
});