mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.8 KiB
81 lines
2.8 KiB
10 years ago
|
'use strict';
|
||
|
|
||
|
/*
|
||
|
* This is a regression test for https://github.com/joyent/node/issues/15447
|
||
|
* and https://github.com/joyent/node/issues/9333.
|
||
|
*
|
||
|
* When a timer is added in another timer's callback, its underlying timer
|
||
|
* handle was started with a timeout that was actually incorrect.
|
||
|
*
|
||
|
* The reason was that the value that represents the current time was not
|
||
|
* updated between the time the original callback was called and the time
|
||
8 years ago
|
* the added timer was processed by timers.listOnTimeout. That led the
|
||
10 years ago
|
* logic in timers.listOnTimeout to do an incorrect computation that made
|
||
|
* the added timer fire with a timeout of scheduledTimeout +
|
||
|
* timeSpentInCallback.
|
||
|
*
|
||
|
* This test makes sure that a timer added by another timer's callback
|
||
8 years ago
|
* fires with the expected timeout.
|
||
10 years ago
|
*
|
||
|
* It makes sure that it works when the timers list for a given timeout is
|
||
|
* empty (see testAddingTimerToEmptyTimersList) and when the timers list
|
||
|
* is not empty (see testAddingTimerToNonEmptyTimersList).
|
||
|
*/
|
||
|
|
||
|
const common = require('../common');
|
||
9 years ago
|
const assert = require('assert');
|
||
10 years ago
|
const Timer = process.binding('timer_wrap').Timer;
|
||
|
|
||
|
const TIMEOUT = 100;
|
||
|
|
||
|
var nbBlockingCallbackCalls = 0;
|
||
|
var latestDelay = 0;
|
||
|
var timeCallbackScheduled = 0;
|
||
|
|
||
|
function initTest() {
|
||
|
nbBlockingCallbackCalls = 0;
|
||
|
latestDelay = 0;
|
||
|
timeCallbackScheduled = 0;
|
||
|
}
|
||
|
|
||
|
function blockingCallback(callback) {
|
||
|
++nbBlockingCallbackCalls;
|
||
|
|
||
|
if (nbBlockingCallbackCalls > 1) {
|
||
|
latestDelay = Timer.now() - timeCallbackScheduled;
|
||
|
// Even if timers can fire later than when they've been scheduled
|
||
8 years ago
|
// to fire, they shouldn't generally be more than 100% late in this case.
|
||
|
// But they are guaranteed to be at least 100ms late given the bug in
|
||
10 years ago
|
// https://github.com/nodejs/node-v0.x-archive/issues/15447 and
|
||
|
// https://github.com/nodejs/node-v0.x-archive/issues/9333..
|
||
8 years ago
|
assert(latestDelay < TIMEOUT * 2);
|
||
10 years ago
|
if (callback)
|
||
|
return callback();
|
||
|
} else {
|
||
|
// block by busy-looping to trigger the issue
|
||
|
common.busyLoop(TIMEOUT);
|
||
|
|
||
|
timeCallbackScheduled = Timer.now();
|
||
8 years ago
|
setTimeout(blockingCallback.bind(null, callback), TIMEOUT);
|
||
10 years ago
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
const testAddingTimerToEmptyTimersList = common.mustCall(function(callback) {
|
||
10 years ago
|
initTest();
|
||
|
// Call setTimeout just once to make sure the timers list is
|
||
|
// empty when blockingCallback is called.
|
||
|
setTimeout(blockingCallback.bind(null, callback), TIMEOUT);
|
||
8 years ago
|
});
|
||
10 years ago
|
|
||
8 years ago
|
const testAddingTimerToNonEmptyTimersList = common.mustCall(function() {
|
||
10 years ago
|
initTest();
|
||
|
// Call setTimeout twice with the same timeout to make
|
||
|
// sure the timers list is not empty when blockingCallback is called.
|
||
|
setTimeout(blockingCallback, TIMEOUT);
|
||
|
setTimeout(blockingCallback, TIMEOUT);
|
||
8 years ago
|
});
|
||
10 years ago
|
|
||
|
// Run the test for the empty timers list case, and then for the non-empty
|
||
|
// timers list one
|
||
|
testAddingTimerToEmptyTimersList(testAddingTimerToNonEmptyTimersList);
|