mirror of https://gitee.com/bigwinds/arangodb
112 lines
3.8 KiB
JavaScript
112 lines
3.8 KiB
JavaScript
/**
|
|
* Sinon.JS 1.15.4, 2015/06/27
|
|
*
|
|
* @author Christian Johansen (christian@cjohansen.no)
|
|
* @author Contributors: https://github.com/cjohansen/Sinon.JS/blob/master/AUTHORS
|
|
*
|
|
* (The BSD License)
|
|
*
|
|
* Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* * Neither the name of Christian Johansen nor the names of his contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/*global lolex */
|
|
|
|
/**
|
|
* Fake timer API
|
|
* setTimeout
|
|
* setInterval
|
|
* clearTimeout
|
|
* clearInterval
|
|
* tick
|
|
* reset
|
|
* Date
|
|
*
|
|
* Inspired by jsUnitMockTimeOut from JsUnit
|
|
*
|
|
* @author Christian Johansen (christian@cjohansen.no)
|
|
* @license BSD
|
|
*
|
|
* Copyright (c) 2010-2013 Christian Johansen
|
|
*/
|
|
|
|
if (typeof sinon == "undefined") {
|
|
var sinon = {};
|
|
}
|
|
|
|
(function (global) {
|
|
function makeApi(sinon, lol) {
|
|
var llx = typeof lolex !== "undefined" ? lolex : lol;
|
|
|
|
sinon.useFakeTimers = function () {
|
|
var now, methods = Array.prototype.slice.call(arguments);
|
|
|
|
if (typeof methods[0] === "string") {
|
|
now = 0;
|
|
} else {
|
|
now = methods.shift();
|
|
}
|
|
|
|
var clock = llx.install(now || 0, methods);
|
|
clock.restore = clock.uninstall;
|
|
return clock;
|
|
};
|
|
|
|
sinon.clock = {
|
|
create: function (now) {
|
|
return llx.createClock(now);
|
|
}
|
|
};
|
|
|
|
sinon.timers = {
|
|
setTimeout: setTimeout,
|
|
clearTimeout: clearTimeout,
|
|
setImmediate: (typeof setImmediate !== "undefined" ? setImmediate : undefined),
|
|
clearImmediate: (typeof clearImmediate !== "undefined" ? clearImmediate : undefined),
|
|
setInterval: setInterval,
|
|
clearInterval: clearInterval,
|
|
Date: Date
|
|
};
|
|
}
|
|
|
|
var isNode = typeof module !== "undefined" && module.exports && typeof require == "function";
|
|
var isAMD = typeof define === "function" && typeof define.amd === "object" && define.amd;
|
|
|
|
function loadDependencies(require, epxorts, module, lolex) {
|
|
var sinon = require("./core");
|
|
makeApi(sinon, lolex);
|
|
module.exports = sinon;
|
|
}
|
|
|
|
if (isAMD) {
|
|
define(loadDependencies);
|
|
} else if (isNode) {
|
|
loadDependencies(require, module.exports, module, require("lolex"));
|
|
} else {
|
|
makeApi(sinon);
|
|
}
|
|
}(typeof global != "undefined" && typeof global !== "function" ? global : this));
|