mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
27f6d04dcf
Improve known_issues/test-vm-timeout-escape-queuemicrotask to mitigate CI failures on ubuntu1604-arm64. Failures are due to a race condition. Use `common.platformTimeout()` to help, adjust timeout to make sure `queueMicrotasks()` has a chance to run, and improve error message. PR-URL: https://github.com/nodejs/node/pull/25503 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Coe <bencoe@gmail.com>
44 lines
990 B
JavaScript
44 lines
990 B
JavaScript
'use strict';
|
|
|
|
// https://github.com/nodejs/node/issues/3020
|
|
// Promises, nextTick, and queueMicrotask allow code to escape the timeout
|
|
// set for runInContext, runInNewContext, and runInThisContext
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
|
|
const NS_PER_MS = 1000000n;
|
|
|
|
const hrtime = process.hrtime.bigint;
|
|
|
|
const loopDuration = common.platformTimeout(100n);
|
|
const timeout = common.platformTimeout(10);
|
|
|
|
function loop() {
|
|
const start = hrtime();
|
|
while (1) {
|
|
const current = hrtime();
|
|
const span = (current - start) / NS_PER_MS;
|
|
if (span >= loopDuration) {
|
|
throw new Error(
|
|
`escaped ${timeout}ms timeout at ${span}ms`);
|
|
}
|
|
}
|
|
}
|
|
|
|
assert.throws(() => {
|
|
vm.runInNewContext(
|
|
'queueMicrotask(loop); loop();',
|
|
{
|
|
hrtime,
|
|
queueMicrotask,
|
|
loop
|
|
},
|
|
{ timeout }
|
|
);
|
|
}, {
|
|
code: 'ERR_SCRIPT_EXECUTION_TIMEOUT',
|
|
message: `Script execution timed out after ${timeout}ms`
|
|
});
|