forked from zhangchiqing/bluebird-promisell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
392 lines (340 loc) · 9.37 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
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
'use strict';
var expect = require('chai').expect;
var liftp = require('./index').liftp;
var liftp1 = require('./index').liftp1;
var liftp2 = require('./index').liftp2;
var liftp3 = require('./index').liftp3;
var liftp4 = require('./index').liftp4;
var liftp5 = require('./index').liftp5;
var firstp = require('./index').firstp;
var secondp = require('./index').secondp;
var purep = require('./index').purep;
var fmapp = require('./index').fmapp;
var sequencep = require('./index').sequencep;
var traversep = require('./index').traversep;
var pipep = require('./index').pipep;
var filterp = require('./index').filterp;
var foldp = require('./index').foldp;
var mapError = require('./index').mapError;
var resolveError = require('./index').resolveError;
var toPromise = require('./index').toPromise;
var Promise = require('bluebird');
var add = function(a, b) {
return a + b;
};
var promiseShouldFail = function(promise) {
return new Promise(function(resolve, reject) {
promise.then(reject).catch(resolve);
});
};
describe('purep', function() {
it('should resolve', function() {
return purep(3).then(function(r) {
expect(r).to.equal(3);
});
});
});
describe('liftp', function() {
it('should resolve', function() {
return liftp(add)(Promise.resolve(1), Promise.resolve(2))
.then(function(r) {
expect(r).to.equal(3);
});
});
it('fail first', function() {
return promiseShouldFail(liftp(add)(Promise.reject(1), Promise.resolve(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
it('fail second', function() {
return promiseShouldFail(liftp(add)(Promise.resolve(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(2);
});
});
it('fail both', function() {
return promiseShouldFail(liftp(add)(Promise.reject(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
});
describe('liftp1', function() {
it('resolve', function() {
return liftp1(function(user) {
return user.email;
})(Promise.resolve({ email: '[email protected]' }));
});
});
describe('liftp1', function() {
it('resolve', function() {
return liftp2(function(a, b) {
return a + b;
})(Promise.resolve(2), Promise.resolve(3))
.then(function(r) {
expect(r).to.equal(5);
});
});
});
describe('liftp1', function() {
it('resolve', function() {
return liftp2(function(a, b) {
return a + b;
})(Promise.resolve(2), Promise.resolve(3))
.then(function(r) {
expect(r).to.equal(5);
});
});
});
describe('liftp3', function() {
it('resolve', function() {
return liftp3(function(a, b, c) {
return a + b + c;
})(Promise.resolve(2), Promise.resolve(3), Promise.resolve(4))
.then(function(r) {
expect(r).to.equal(9);
});
});
});
describe('liftp4', function() {
it('resolve', function() {
return liftp4(function(a, b, c, d) {
return a + b + c + d;
})(Promise.resolve(2), Promise.resolve(3), Promise.resolve(4), Promise.resolve(5))
.then(function(r) {
expect(r).to.equal(14);
});
});
});
describe('liftp5', function() {
it('resolve', function() {
return liftp5(function(a, b, c, d, e) {
return a + b + c + d + e;
})(Promise.resolve(2), Promise.resolve(3), Promise.resolve(4), Promise.resolve(5), Promise.resolve(6))
.then(function(r) {
expect(r).to.equal(20);
});
});
});
describe('firstp', function() {
it('resolve', function() {
return firstp(Promise.resolve(1), Promise.resolve(2))
.then(function(r) {
expect(r).to.equal(1);
});
});
it('fail first', function() {
return promiseShouldFail(firstp(Promise.reject(1), Promise.resolve(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
it('fail second', function() {
return promiseShouldFail(firstp(Promise.resolve(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(2);
});
});
it('fail both', function() {
return promiseShouldFail(firstp(Promise.reject(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
});
describe('secondp', function() {
it('resolve', function() {
return secondp(Promise.resolve(1), Promise.resolve(2))
.then(function(r) {
expect(r).to.equal(2);
});
});
it('fail first', function() {
return promiseShouldFail(secondp(Promise.reject(1), Promise.resolve(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
it('fail second', function() {
return promiseShouldFail(secondp(Promise.resolve(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(2);
});
});
it('fail both', function() {
return promiseShouldFail(secondp(Promise.reject(1), Promise.reject(2)))
.then(function(r) {
expect(r).to.equal(1);
});
});
});
describe('validation', function() {
var query = function(email, password) {
return { email: email, password: password };
};
var notEmpty = function(field) {
return function(a) {
if (!a) {
return Promise.reject('Field ' + field + ' cannot be empty');
} else {
return Promise.resolve(a);
}
};
};
it('should resolve', function() {
var q = { email: '[email protected]', password: 'ppp' };
return liftp(query)(
secondp(notEmpty('email')(q.email), purep(q.email)),
secondp(notEmpty('password')(q.password), purep(q.password)))
.then(function(validQ) {
expect(validQ).to.eql(q);
});
});
it('should fail if mising field', function() {
var q = { email: '[email protected]', password: undefined };
return promiseShouldFail(liftp(query)(
secondp(notEmpty('email')(q.email), purep(q.email)),
secondp(notEmpty('password')(q.password), purep(q.password))))
.then(function(r) {
expect(r).to.equal('Field password cannot be empty');
});
});
});
describe('fmapp', function() {
it('should resolve', function() {
return fmapp(function(x) { return x * 3; })(Promise.resolve(1))
.then(function(r) {
expect(r).to.equal(3);
});
});
});
describe('sequencep', function() {
it('should resolve', function() {
return sequencep([Promise.resolve(1), Promise.resolve(2)])
.then(function(r) {
expect(r).to.eql([1, 2]);
});
});
it('should fail one', function() {
return promiseShouldFail(sequencep([Promise.reject(1), Promise.resolve(2)]))
.then(function(r) {
expect(r).to.equal(1);
});
});
it('should fail both', function() {
return promiseShouldFail(sequencep([Promise.reject(1), Promise.reject(2)]))
.then(function(r) {
expect(r).to.equal(1);
});
});
});
var resolveLater = function(a) {
return new Promise(function(resolve) {
setTimeout(function() {
resolve(a * 3);
}, 10);
});
};
describe('traversep', function() {
it('should resolve', function() {
return traversep(resolveLater)([1, 2, 3])
.then(function(r) {
expect(r).to.eql([3, 6, 9]);
});
});
});
describe('pipep', function() {
it('should resolve', function() {
return pipep([resolveLater, resolveLater])(1)
.then(function(r) {
expect(r).to.equal(9);
});
});
});
describe('filterp', function() {
it('should resolve', function() {
var gt = function(a) {
return function(b) {
return Promise.resolve(b > a);
};
};
var p = filterp(gt(3))([1,4,6,7]);
return p.then(function(arr) {
expect(arr).to.eql([4,6,7]);
});
});
it('should resolve for empty array', function() {
var gt = function(a) {
return function(b) {
return Promise.resolve(b > a);
};
};
var p = filterp(gt(3))([]);
return p.then(function(arr) {
expect(arr).to.eql([]);
});
});
});
describe('foldp', function() {
it('should resolve', function() {
return foldp(function(b, a) {
return Promise.resolve(b + a);
})(1)([2, 3, 4])
.then(function(r) {
expect(r).to.equal(10);
});
});
it('should resolve when array is empty', function() {
return foldp(function(b, a) {
return Promise.resolve(b + a);
})(1)([])
.then(function(r) {
expect(r).to.equal(1);
});
});
});
describe('mapError', function() {
it('should fail with transformed error', function() {
var transformer = function(error) {
var newError = new Error('new Error');
newError.status = 400;
return newError;
};
var shouldFail = mapError(transformer)(Promise.reject(new Error('error')));
return promiseShouldFail(shouldFail).then(function(error) {
expect(error.status).to.equal(400);
expect(error.message).to.equal('new Error');
});
});
});
describe('resolveError', function() {
it('should resolve', function() {
var recoverFn = function(error) {
return 'resolved';
};
return resolveError(recoverFn)(Promise.reject(new Error('error')))
.then(function(r) {
expect(r).to.equal('resolved');
});
});
});
describe('toPromise', function() {
var validateGreaterThan0 = toPromise(function(a) {
return a > 0;
}, function(a) {
return new Error('value is not greater than 0');
});
it('should resolve', function() {
return validateGreaterThan0(10)
.then(function(r) {
expect(r).to.equal(10);
});
});
it('should fail', function() {
return promiseShouldFail(validateGreaterThan0(-10))
.then(function(error) {
expect(error.message).to.equal('value is not greater than 0');
});
});
});