Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__with__.js « lib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 387714da128ee41b3960ab7b385d4bd6b098efb5 (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
"use strict";

/**
 * This function will be stringified and then injected into every rewired module.
 *
 * Calling myModule.__with__("myPrivateVar", newValue) returns a function where
 * you can place your tests. As long as the returned function is executed variables
 * will be set to the given value, after that all changed variables are reset back to normal.
 *
 * @param {String|Object} varName name of the variable to set
 * @param {String} varValue new value
 * @return {Function}
 */
function __with__() {
    var args = arguments;

    return function (callback) {
        var undo,
            returned,
            isPromise;

        if (typeof callback !== "function") {
            throw new TypeError("__with__ expects a callback function");
        }

        undo = module.exports.__set__.apply(null, args);

        try {
            returned = callback();
            isPromise = returned && typeof returned.then === "function";
            if (isPromise) {
                returned.then(undo, undo);
                return returned;
            }
        } finally {
            if (!isPromise) {
                undo();
            }
        }
    };
}

module.exports = __with__;