summaryrefslogtreecommitdiff
path: root/test/ensureAsync.js
blob: b4fb31112c91d00b4745e75e5de0996a20f1428e (plain)
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
var async = require('../lib');
var {expect} = require('chai');
var assert = require('assert');

describe('ensureAsync', () => {
    var passContext = function(cb) {
        cb(this);
    };

    it('defer sync functions', (done) => {
        var sync = true;
        async.ensureAsync((arg1, arg2, cb) => {
            expect(arg1).to.equal(1);
            expect(arg2).to.equal(2);
            cb(null, 4, 5);
        })(1, 2, (err, arg4, arg5) => {
            expect(err).to.equal(null);
            expect(arg4).to.equal(4);
            expect(arg5).to.equal(5);
            assert(!sync, 'callback called on same tick');
            done();
        });
        sync = false;
    });

    it('do not defer async functions', (done) => {
        var sync = false;
        async.ensureAsync((arg1, arg2, cb) => {
            expect(arg1).to.equal(1);
            expect(arg2).to.equal(2);
            async.setImmediate(() => {
                sync = true;
                cb(null, 4, 5);
                sync = false;
            });
        })(1, 2, (err, arg4, arg5) => {
            expect(err).to.equal(null);
            expect(arg4).to.equal(4);
            expect(arg5).to.equal(5);
            assert(sync, 'callback called on next tick');
            done();
        });
    });

    it('double wrapping', (done) => {
        var sync = true;
        async.ensureAsync(async.ensureAsync((arg1, arg2, cb) => {
            expect(arg1).to.equal(1);
            expect(arg2).to.equal(2);
            cb(null, 4, 5);
        }))(1, 2, (err, arg4, arg5) => {
            expect(err).to.equal(null);
            expect(arg4).to.equal(4);
            expect(arg5).to.equal(5);
            assert(!sync, 'callback called on same tick');
            done();
        });
        sync = false;
    });


    it('should propely bind context to the wrapped function', (done) => {

        // call bind after wrapping with ensureAsync
        var context = {context: "post"};
        var postBind = async.ensureAsync(passContext);
        postBind = postBind.bind(context);
        postBind((ref) => {
            expect(ref).to.equal(context);
            done();
        });
    });

    it('should not override the bound context of a function when wrapping', (done) => {

        // call bind before wrapping with ensureAsync
        var context = {context: "pre"};
        var preBind = passContext.bind(context);
        preBind = async.ensureAsync(preBind);
        preBind((ref) => {
            expect(ref).to.equal(context);
            done();
        });
    });
});