Created
May 16, 2018 23:23
-
-
Save macedd/c6b04978d1389e3295520a0b641d9502 to your computer and use it in GitHub Desktop.
Mocha Sinon Fake Timer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sinon = require('sinon'); | |
module.exports = function() { | |
/** | |
* Fake timers (setImmediate, setTimeout) | |
*/ | |
before(function() { | |
this.clock = sinon.useFakeTimers(new Date()); | |
}); | |
after(function() { | |
this.clock.restore(); | |
}); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const assert = require('assert'); | |
const app = require('express')(); | |
describe('mocha-timer', function() { | |
// usage of the timer in a test | |
require('./mocha-timer')(); | |
it('loads', function() { | |
}); | |
it('injects sinon', function() { | |
assert(this.clock); | |
}); | |
it('mocks setImmediate', function() { | |
let called = false; | |
setImmediate(() => { | |
called = true; | |
}); | |
assert(Object.keys(this.clock.timers).length == 1); | |
this.clock.runAll(); | |
assert(called); | |
}); | |
it('mocks nested setImmediate', function() { | |
let called = false; | |
setImmediate(() => { | |
setImmediate(() => { | |
called = true; | |
}); | |
}); | |
assert(Object.keys(this.clock.timers).length == 1); | |
this.clock.runAll(); | |
assert(called); | |
}); | |
it('mocks async setImmediate', function() { | |
let called = false; | |
setImmediate(async () => { | |
// WIP | |
const promise = new Promise((done) => { | |
require('http').get('http://nodejs.org/dist/index.json', (res) => { | |
called = true; | |
done(); | |
}); | |
}); | |
return await promise; | |
}); | |
this.clock.runAll(); | |
// it does not wait for the promise resolution | |
// assert(called); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment