Skip to content

Commit f108578

Browse files
badkeyymarco-ippolito
authored andcommitted
lib: test_runner#mock:timers respeced timeout_max behaviour
PR-URL: #55375 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Claudio Wunder <[email protected]>
1 parent 7281707 commit f108578

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

lib/internal/test_runner/mock/mock_timers.js

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ const {
3434
codes: { ERR_INVALID_STATE, ERR_INVALID_ARG_VALUE },
3535
} = require('internal/errors');
3636

37+
const { TIMEOUT_MAX } = require('internal/timers');
38+
3739
const PriorityQueue = require('internal/priority_queue');
3840
const nodeTimers = require('timers');
3941
const nodeTimersPromises = require('timers/promises');
@@ -284,6 +286,10 @@ class MockTimers {
284286
}
285287

286288
#createTimer(isInterval, callback, delay, ...args) {
289+
if (delay > TIMEOUT_MAX) {
290+
delay = 1;
291+
}
292+
287293
const timerId = this.#currentTimer++;
288294
const opts = {
289295
__proto__: null,

test/parallel/test-runner-mock-timers.js

+16
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,22 @@ describe('Mock Timers Test Suite', () => {
251251
done();
252252
}), timeout);
253253
});
254+
255+
it('should change timeout to 1ms when it is >= 2 ** 31', (t) => {
256+
t.mock.timers.enable({ apis: ['setTimeout'] });
257+
const fn = t.mock.fn();
258+
global.setTimeout(fn, 2 ** 31);
259+
t.mock.timers.tick(1);
260+
assert.strictEqual(fn.mock.callCount(), 1);
261+
});
262+
263+
it('should change the delay to one if timeout < 0', (t) => {
264+
t.mock.timers.enable({ apis: ['setTimeout'] });
265+
const fn = t.mock.fn();
266+
global.setTimeout(fn, -1);
267+
t.mock.timers.tick(1);
268+
assert.strictEqual(fn.mock.callCount(), 1);
269+
});
254270
});
255271

256272
describe('clearTimeout Suite', () => {

0 commit comments

Comments
 (0)