'use strict';
var mocks = require('./moduleMocker');
var MS_IN_A_YEAR = 31536000000;
function FakeTimers(global, maxLoops) {
this._global = global;
this._uuidCounter = 1;
this._maxLoops = maxLoops || 100000;
this.reset();
this._originalTimerAPIs = {
setTimeout: global.setTimeout,
clearTimeout: global.clearTimeout,
setInterval: global.setInterval,
clearInterval: global.clearInterval
};
this._fakeTimerAPIs = {
setTimeout: mocks.getMockFn().mockImpl(
this._fakeSetTimeout.bind(this)
),
clearTimeout: mocks.getMockFn().mockImpl(
this._fakeClearTimer.bind(this)
),
setInterval: mocks.getMockFn().mockImpl(
this._fakeSetInterval.bind(this)
),
clearInterval: mocks.getMockFn().mockImpl(
this._fakeClearTimer.bind(this)
)
};
if (typeof global.process === 'object'
&& typeof global.process.nextTick === 'function') {
this._originalTimerAPIs.nextTick = global.process.nextTick;
this._fakeTimerAPIs.nextTick = mocks.getMockFn().mockImpl(
this._fakeNextTick.bind(this)
);
}
if (typeof global.setImmediate === 'function') {
this._originalTimerAPIs.setImmediate = global.setImmediate;
this._fakeTimerAPIs.setImmediate = mocks.getMockFn().mockImpl(
this._fakeSetImmediate.bind(this)
);
this._originalTimerAPIs.clearImmediate = global.clearImmediate;
this._fakeTimerAPIs.clearImmediate = mocks.getMockFn().mockImpl(
this._fakeClearImmediate.bind(this)
);
}
this.useFakeTimers();
global.mockRunTicksRepeatedly = this.runAllTicks.bind(this);
global.mockRunTimersOnce = this.runOnlyPendingTimers.bind(this);
global.mockRunTimersToTime = this.runTimersToTime.bind(this);
global.mockRunTimersRepeatedly = this.runAllTimers.bind(this);
global.mockClearTimers = this.clearAllTimers.bind(this);
global.mockGetTimersCount = function() {
return Object.keys(this._timers).length;
}.bind(this);
}
FakeTimers.prototype.clearAllTimers = function() {
for (var uuid in this._timers) {
delete this._timers[uuid];
}
};
FakeTimers.prototype.reset = function() {
this._cancelledTicks = {};
this._cancelledImmediates = {};
this._now = 0;
this._ticks = [];
this._immediates = [];
this._timers = {};
};
FakeTimers.prototype.runAllTicks = function() {
for (var i = 0; i < this._maxLoops; i++) {
var tick = this._ticks.shift();
if (tick === undefined) {
break;
}
if (!this._cancelledTicks.hasOwnProperty(tick.uuid)) {
this._cancelledTicks[tick.uuid] = true;
tick.callback();
}
}
if (i === this._maxLoops) {
throw new Error(
'Ran ' + this._maxLoops + ' ticks, and there are still more! Assuming ' +
'we\'ve hit an infinite recursion and bailing out...'
);
}
};
FakeTimers.prototype.runAllImmediates = function() {
for (var i = 0; i < this._maxLoops; i++) {
var immediate = this._immediates.shift();
if (immediate === undefined) {
break;
}
if (!this._cancelledImmediates.hasOwnProperty(immediate.uuid)) {
this._cancelledImmediates[immediate.uuid] = true;
immediate.callback();
}
}
if (i === this._maxLoops) {
throw new Error(
'Ran ' + this._maxLoops +
' immediates, and there are still more! Assuming ' +
'we\'ve hit an infinite recursion and bailing out...'
);
}
};
FakeTimers.prototype.runAllTimers = function() {
this.runAllTicks();
this.runAllImmediates();
for (var i = 0; i < this._maxLoops; i++) {
var nextTimerHandle = this._getNextTimerHandle();
if (nextTimerHandle === null) {
break;
}
this._runTimerHandle(nextTimerHandle);
}
if (i === this._maxLoops) {
throw new Error(
'Ran ' + this._maxLoops + ' timers, and there are still more! Assuming ' +
'we\'ve hit an infinite recursion and bailing out...'
);
}
};
FakeTimers.prototype.runOnlyPendingTimers = function() {
var timers = this._timers;
Object.keys(timers)
.sort(function(left, right) {
return timers[left].expiry - timers[right].expiry;
})
.forEach(this._runTimerHandle, this);
};
FakeTimers.prototype.runTimersToTime = function(msToRun) {
for (var i = 0; i < this._maxLoops; i++) {
var timerHandle = this._getNextTimerHandle();
if (timerHandle === null) {
break;
}
var nextTimerExpiry = this._timers[timerHandle].expiry;
if (this._now + msToRun < nextTimerExpiry) {
this._now += msToRun;
break;
} else {
msToRun -= (nextTimerExpiry - this._now);
this._now = nextTimerExpiry;
this._runTimerHandle(timerHandle);
}
}
if (i === this._maxLoops) {
throw new Error(
'Ran ' + this._maxLoops + ' timers, and there are still more! Assuming ' +
'we\'ve hit an infinite recursion and bailing out...'
);
}
};
FakeTimers.prototype.runWithRealTimers = function(cb) {
var hasNextTick =
typeof this._global.process === 'object'
&& typeof this._global.process.nextTick === 'function';
var hasSetImmediate = typeof this._global.setImmediate === 'function';
var prevSetTimeout = this._global.setTimeout;
var prevSetInterval = this._global.setInterval;
var prevClearTimeout = this._global.clearTimeout;
var prevClearInterval = this._global.clearInterval;
if (hasNextTick) {
var prevNextTick = this._global.process.nextTick;
}
if (hasSetImmediate) {
var prevSetImmediate = this._global.setImmediate;
var prevClearImmediate = this._global.clearImmediate;
}
this.useRealTimers();
var cbErr = null;
var errThrown = false;
try {
cb();
} catch (e) {
errThrown = true;
cbErr = e;
}
this._global.setTimeout = prevSetTimeout;
this._global.setInterval = prevSetInterval;
this._global.clearTimeout = prevClearTimeout;
this._global.clearInterval = prevClearInterval;
if (hasNextTick) {
this._global.process.nextTick = prevNextTick;
}
if (hasSetImmediate) {
this._global.setImmediate = prevSetImmediate;
this._global.clearImmediate = prevClearImmediate;
}
if (errThrown) {
throw cbErr;
}
};
FakeTimers.prototype.useRealTimers = function() {
var hasNextTick =
typeof this._global.process === 'object'
&& typeof this._global.process.nextTick === 'function';
var hasSetImmediate = typeof this._global.setImmediate === 'function';
this._global.setTimeout = this._originalTimerAPIs.setTimeout;
this._global.setInterval = this._originalTimerAPIs.setInterval;
this._global.clearTimeout = this._originalTimerAPIs.clearTimeout;
this._global.clearInterval = this._originalTimerAPIs.clearInterval;
if (hasNextTick) {
this._global.process.nextTick = this._originalTimerAPIs.nextTick;
}
if (hasSetImmediate) {
this._global.setImmediate = this._originalTimerAPIs.setImmediate;
this._global.clearImmediate = this._originalTimerAPIs.clearImmediate;
}
};
FakeTimers.prototype.useFakeTimers = function() {
var hasNextTick =
typeof this._global.process === 'object'
&& typeof this._global.process.nextTick === 'function';
var hasSetImmediate = typeof this._global.setImmediate === 'function';
this._global.setTimeout = this._fakeTimerAPIs.setTimeout;
this._global.setInterval = this._fakeTimerAPIs.setInterval;
this._global.clearTimeout = this._fakeTimerAPIs.clearTimeout;
this._global.clearInterval = this._fakeTimerAPIs.clearInterval;
if (hasNextTick) {
this._global.process.nextTick = this._fakeTimerAPIs.nextTick;
}
if (hasSetImmediate) {
this._global.setImmediate = this._fakeTimerAPIs.setImmediate;
this._global.clearImmediate = this._fakeTimerAPIs.clearImmediate;
}
};
FakeTimers.prototype._fakeClearTimer = function(uuid) {
if (this._timers.hasOwnProperty(uuid)) {
delete this._timers[uuid];
}
};
FakeTimers.prototype._fakeClearImmediate = function(uuid) {
this._cancelledImmediates[uuid] = true;
};
FakeTimers.prototype._fakeNextTick = function(callback) {
var uuid = this._uuidCounter++;
this._ticks.push({
uuid: uuid,
callback: callback
});
var cancelledTicks = this._cancelledTicks;
this._originalTimerAPIs.nextTick(function() {
if (!cancelledTicks.hasOwnProperty(uuid)) {
cancelledTicks[uuid] = true;
callback();
}
});
};
FakeTimers.prototype._fakeSetImmediate = function(callback) {
var args = [];
for (var ii = 1, ll = arguments.length; ii < ll; ii++) {
args.push(arguments[ii]);
}
var uuid = this._uuidCounter++;
this._immediates.push({
uuid: uuid,
callback: function() {
return callback.apply(null, args);
}
});
var cancelledImmediates = this._cancelledImmediates;
this._originalTimerAPIs.setImmediate(function() {
if (!cancelledImmediates.hasOwnProperty(uuid)) {
cancelledImmediates[uuid] = true;
callback();
}
});
return uuid;
};
FakeTimers.prototype._fakeSetInterval = function(callback, intervalDelay) {
if (intervalDelay === undefined || intervalDelay === null) {
intervalDelay = 0;
}
var args = [];
for (var ii = 2, ll = arguments.length; ii < ll; ii++) {
args.push(arguments[ii]);
}
var uuid = this._uuidCounter++;
this._timers[uuid] = {
type: 'interval',
callback: function() {
return callback.apply(null, args);
},
expiry: this._now + intervalDelay,
interval: intervalDelay
};
return uuid;
};
FakeTimers.prototype._fakeSetTimeout = function(callback, delay) {
if (delay === undefined || delay === null) {
delay = 0;
}
var args = [];
for (var ii = 2, ll = arguments.length; ii < ll; ii++) {
args.push(arguments[ii]);
}
var uuid = this._uuidCounter++;
this._timers[uuid] = {
type: 'timeout',
callback: function() {
return callback.apply(null, args);
},
expiry: this._now + delay,
interval: null
};
return uuid;
};
FakeTimers.prototype._getNextTimerHandle = function() {
var nextTimerHandle = null;
var uuid;
var soonestTime = MS_IN_A_YEAR;
var timer;
for (uuid in this._timers) {
timer = this._timers[uuid];
if (timer.expiry < soonestTime) {
soonestTime = timer.expiry;
nextTimerHandle = uuid;
}
}
return nextTimerHandle;
};
FakeTimers.prototype._runTimerHandle = function(timerHandle) {
var timer = this._timers[timerHandle];
switch (timer.type) {
case 'timeout':
var callback = timer.callback;
delete this._timers[timerHandle];
callback();
break;
case 'interval':
timer.expiry = this._now + timer.interval;
timer.callback();
break;
default:
throw new Error('Unexepcted timer type: ' + timer.type);
}
};
module.exports = FakeTimers;