Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mocks to NodeJS "timers" module #467

Merged
merged 6 commits into from May 18, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 28 additions & 1 deletion src/fake-timers-src.js
@@ -1,6 +1,14 @@
"use strict";

const globalObject = require("@sinonjs/commons").global;
let timersModule;
if (typeof require === "function" && typeof module === "object") {
try {
timersModule = require("timers");
} catch (e) {
// ignored
}
}

/**
* @typedef {object} IdleDeadline
Expand Down Expand Up @@ -39,13 +47,13 @@

/**
* @typedef RequestAnimationFrame
* @property {function(number):void} requestAnimationFrame

Check warning on line 50 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @Property "requestAnimationFrame" description
* @returns {number} - the id
*/

/**
* @typedef Performance
* @property {function(): number} now

Check warning on line 56 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @Property "now" description
*/

/* eslint-disable jsdoc/require-property-description */
Expand Down Expand Up @@ -317,7 +325,7 @@
return timer && timer.callAt >= from && timer.callAt <= to;
}

/**

Check warning on line 328 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @returns declaration
* @param {Clock} clock
* @param {Timer} job
*/
Expand Down Expand Up @@ -619,7 +627,7 @@
}

/* eslint consistent-return: "off" */
/**

Check warning on line 630 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

JSDoc @returns declaration present but return expression not available in function
* Timer comparitor
*
* @param {Timer} a
Expand Down Expand Up @@ -751,7 +759,7 @@
}
}

/**

Check warning on line 762 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @returns declaration
* Gets clear handler name for a given timer type
*
* @param {string} ttype
Expand All @@ -763,7 +771,7 @@
return `clear${ttype}`;
}

/**

Check warning on line 774 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @returns declaration
* Gets schedule handler name for a given timer type
*
* @param {string} ttype
Expand All @@ -775,7 +783,7 @@
return `set${ttype}`;
}

/**

Check warning on line 786 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @returns declaration
* Creates an anonymous function to warn only once
*/
function createWarnOnce() {
Expand All @@ -787,7 +795,7 @@
}
const warnOnce = createWarnOnce();

/**

Check warning on line 798 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @returns declaration
* @param {Clock} clock
* @param {number} timerId
* @param {string} ttype
Expand Down Expand Up @@ -886,6 +894,14 @@
}
}
}
if (clock.timersModuleMocks) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They are not actual mocks, though, so could trim that bit off.

To be consistent with the methods prop, just name it timersModuleMethods

for (const [
methodName,
originalMethod,
] of clock.timersModuleMocks) {
timersModule[methodName] = originalMethod;
}
}
}

if (config.shouldAdvanceTime === true) {
Expand Down Expand Up @@ -968,8 +984,8 @@

/**
* @typedef {object} Timers
* @property {setTimeout} setTimeout

Check warning on line 987 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @Property "setTimeout" description
* @property {clearTimeout} clearTimeout

Check warning on line 988 in src/fake-timers-src.js

View workflow job for this annotation

GitHub Actions / lint

Missing JSDoc @Property "clearTimeout" description
* @property {setInterval} setInterval
* @property {clearInterval} clearInterval
* @property {Date} Date
Expand Down Expand Up @@ -1733,7 +1749,9 @@
);
}
}

if (_global === globalObject && timersModule) {
clock.timersModuleMocks = [];
}
for (i = 0, l = clock.methods.length; i < l; i++) {
const nameOfMethodToReplace = clock.methods[i];
if (nameOfMethodToReplace === "hrtime") {
Expand All @@ -1753,6 +1771,15 @@
} else {
hijackMethod(_global, nameOfMethodToReplace, clock);
}
if (
clock.timersModuleMocks !== undefined &&
timersModule[nameOfMethodToReplace]
) {
const original = timersModule[nameOfMethodToReplace];
clock.timersModuleMocks.push([nameOfMethodToReplace, original]);
timersModule[nameOfMethodToReplace] =
_global[nameOfMethodToReplace];
}
}

return clock;
Expand Down
144 changes: 144 additions & 0 deletions test/issue-466-test.js
@@ -0,0 +1,144 @@
"use strict";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stuff the tests inside of this into a suitably named new describe block in fake-timers-test.js. We usually reserve the issues* files for regression test cases.


const { FakeTimers, assert, refute } = require("./helpers/setup-tests");
const { sinon } = require("@sinonjs/referee-sinon");
var timersModule;

if (typeof require === "function" && typeof module === "object") {
try {
timersModule = require("timers");
} catch (e) {
// ignored
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just use Mocha's built-ins to selectively run it in supported environments

        before(function () {
            if (!timersModule) {
                this.skip();
            }
        });

Enables a bit better reporting :)

if (!timersModule) {
// eslint-disable-next-line no-console
console.warn("timers module is not supported in the current environment.");
return;
}

/**
* Returns elements that are present in both lists.
*
* @function
* @template E
* @param {E[]} [list1]
* @param {E[]} [list2]
* @return {E[]}
*/
function getIntersection(list1, list2) {
return list1.filter((value) => list2.indexOf(value) !== -1);
}

/**
* Get property names and original values from timers module.
*
* @function
* @param {string[]} [toFake]
* @return {{propertyName: string, originalValue: any}[]}
*/
function getOriginals(toFake) {
return toFake.map((propertyName) => ({
propertyName,
originalValue: timersModule[propertyName],
}));
}

describe("issue #466", function () {
afterEach(function () {
if (this.clock) {
this.clock.uninstall();
delete this.clock;
}
});

it("should install all timers on timers module", function () {
const toFake = getIntersection(
Object.getOwnPropertyNames(timersModule),
Object.getOwnPropertyNames(FakeTimers.timers)
);
const originals = getOriginals(toFake);

this.clock = FakeTimers.install();

for (const { propertyName, originalValue } of originals) {
refute.same(timersModule[propertyName], originalValue);
}
});

it("should uninstall all timers on timers module", function () {
const toFake = getIntersection(
Object.getOwnPropertyNames(timersModule),
Object.getOwnPropertyNames(FakeTimers.timers)
);
const originals = getOriginals(toFake);

this.clock = FakeTimers.install();
this.clock.uninstall();

for (const { propertyName, originalValue } of originals) {
assert.same(timersModule[propertyName], originalValue);
}
});

it("should have synchronized clocks on global and timers module", function () {
this.clock = FakeTimers.install();

const globalStub = sinon.stub();
const timersStub = sinon.stub();

timersModule.setTimeout(timersStub, 5);
setTimeout(globalStub, 5);
this.clock.tick(5);
assert(globalStub.calledOnce);
assert(timersStub.calledOnce);
});

it("fakes and resets provided methods on timers module", function () {
const toFake = ["setTimeout", "Date"];
const originals = getOriginals(toFake);
this.clock = FakeTimers.install({ toFake });

for (const { propertyName, originalValue } of originals) {
if (originalValue === undefined) {
assert.same(timersModule[propertyName], originalValue);
} else {
refute.same(timersModule[propertyName], originalValue);
}
}
});

it("resets faked methods on timers module", function () {
const toFake = ["setTimeout", "Date"];
const originals = getOriginals(toFake);

this.clock = FakeTimers.install({ toFake });
this.clock.uninstall();

for (const { propertyName, originalValue } of originals) {
assert.same(timersModule[propertyName], originalValue);
}
});

it("does not fake methods not provided on timers module", function () {
const toFake = ["setTimeout", "Date"];
const notToFake = ["clearTimeout", "setInterval", "clearInterval"];
const originals = getOriginals(notToFake);

this.clock = FakeTimers.install({ toFake });

for (const { propertyName, originalValue } of originals) {
assert.same(timersModule[propertyName], originalValue);
}
});

it("does not fake timers module on custom global object", function () {
const original = timersModule.setTimeout;
this.clock = FakeTimers.withGlobal({
Date: Date,
setTimeout: sinon.fake(),
clearTimeout: sinon.fake(),
}).install();
assert.same(timersModule.setTimeout, original);
});
});