npmtest-sinon (v0.0.1)

Code coverage report for node-npmtest-sinon/sinon/lib/sinon/behavior.js

Statements: 25.25% (25 / 99)      Branches: 8.2% (5 / 61)      Functions: 19.05% (4 / 21)      Lines: 25.25% (25 / 99)      Ignored: none     

All files » node-npmtest-sinon/sinon/lib/sinon/ » behavior.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    1 1 1   1 1 1 1   1 1 1                       1                                                                 1                                             1                                   1                                                                                                                                   1                 1   8         1 32             1 29         29     1 1 1    
"use strict";
 
var extend = require("./util/core/extend");
var functionName = require("./util/core/function-name");
var valueToString = require("./util/core/value-to-string");
 
var slice = Array.prototype.slice;
var join = Array.prototype.join;
var useLeftMostCallback = -1;
var useRightMostCallback = -2;
 
var nextTick = (function () {
    Eif (typeof process === "object" && typeof process.nextTick === "function") {
        return process.nextTick;
    }
 
    if (typeof setImmediate === "function") {
        return setImmediate;
    }
 
    return function (callback) {
        setTimeout(callback, 0);
    };
})();
 
function getCallback(behavior, args) {
    var callArgAt = behavior.callArgAt;
 
    if (callArgAt >= 0) {
        return args[callArgAt];
    }
 
    var argumentList;
 
    if (callArgAt === useLeftMostCallback) {
        argumentList = args;
    }
 
    if (callArgAt === useRightMostCallback) {
        argumentList = slice.call(args).reverse();
    }
 
    var callArgProp = behavior.callArgProp;
 
    for (var i = 0, l = argumentList.length; i < l; ++i) {
        if (!callArgProp && typeof argumentList[i] === "function") {
            return argumentList[i];
        }
 
        if (callArgProp && argumentList[i] &&
            typeof argumentList[i][callArgProp] === "function") {
            return argumentList[i][callArgProp];
        }
    }
 
    return null;
}
 
function getCallbackError(behavior, func, args) {
    if (behavior.callArgAt < 0) {
        var msg;
 
        if (behavior.callArgProp) {
            msg = functionName(behavior.stub) +
                " expected to yield to '" + valueToString(behavior.callArgProp) +
                "', but no object with such a property was passed.";
        } else {
            msg = functionName(behavior.stub) +
                " expected to yield, but no callback was passed.";
        }
 
        if (args.length > 0) {
            msg += " Received [" + join.call(args, ", ") + "]";
        }
 
        return msg;
    }
 
    return "argument at index " + behavior.callArgAt + " is not a function: " + func;
}
 
function callCallback(behavior, args) {
    if (typeof behavior.callArgAt === "number") {
        var func = getCallback(behavior, args);
 
        if (typeof func !== "function") {
            throw new TypeError(getCallbackError(behavior, func, args));
        }
 
        if (behavior.callbackAsync) {
            nextTick(function () {
                func.apply(behavior.callbackContext, behavior.callbackArguments);
            });
        } else {
            func.apply(behavior.callbackContext, behavior.callbackArguments);
        }
    }
}
 
var proto = {
    create: function create(stub) {
        var behavior = extend({}, proto);
        delete behavior.create;
        delete behavior.addBehavior;
        delete behavior.createBehavior;
        behavior.stub = stub;
 
        return behavior;
    },
 
    isPresent: function isPresent() {
        return (typeof this.callArgAt === "number" ||
                this.exception ||
                typeof this.returnArgAt === "number" ||
                this.returnThis ||
                this.fakeFn ||
                this.returnValueDefined);
    },
 
    invoke: function invoke(context, args) {
        callCallback(this, args);
 
        if (this.exception) {
            throw this.exception;
        } else if (typeof this.returnArgAt === "number") {
            return args[this.returnArgAt];
        } else if (this.returnThis) {
            return context;
        } else if (this.fakeFn) {
            return this.fakeFn.apply(context, args);
        } else if (this.resolve) {
            return Promise.resolve(this.returnValue);
        } else if (this.reject) {
            return Promise.reject(this.returnValue);
        } else if (this.callsThrough) {
            return this.stub.wrappedMethod.apply(context, args);
        }
        return this.returnValue;
    },
 
    onCall: function onCall(index) {
        return this.stub.onCall(index);
    },
 
    onFirstCall: function onFirstCall() {
        return this.stub.onFirstCall();
    },
 
    onSecondCall: function onSecondCall() {
        return this.stub.onSecondCall();
    },
 
    onThirdCall: function onThirdCall() {
        return this.stub.onThirdCall();
    },
 
    withArgs: function withArgs(/* arguments */) {
        throw new Error(
            "Defining a stub by invoking \"stub.onCall(...).withArgs(...)\" " +
            "is not supported. Use \"stub.withArgs(...).onCall(...)\" " +
            "to define sequential behavior for calls with certain arguments."
        );
    }
};
 
function createAsyncVersion(syncFnName) {
    return function () {
        var result = this[syncFnName].apply(this, arguments);
        this.callbackAsync = true;
        return result;
    };
}
 
// create asynchronous versions of callsArg* and yields* methods
Object.keys(proto).forEach(function (method) {
    // need to avoid creating anotherasync versions of the newly added async methods
    Iif (method.match(/^(callsArg|yields)/) && !method.match(/Async/)) {
        proto[method + "Async"] = createAsyncVersion(method);
    }
});
 
function createBehavior(behaviorMethod) {
    return function () {
        this.defaultBehavior = this.defaultBehavior || proto.create(this);
        this.defaultBehavior[behaviorMethod].apply(this.defaultBehavior, arguments);
        return this;
    };
}
 
function addBehavior(stub, name, fn) {
    proto[name] = function () {
        fn.apply(this, [this].concat([].slice.call(arguments)));
        return this.stub || this;
    };
 
    stub[name] = createBehavior(name);
}
 
proto.addBehavior = addBehavior;
proto.createBehavior = createBehavior;
module.exports = proto;