mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
229dca3dee
Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
// Flags: --require ./test/fixtures/overwrite-config-preload-module.js
|
|
'use strict';
|
|
|
|
// This test ensures that overwriting a process configuration
|
|
// value does not affect code in lib/internal/bootstrap/node.js.
|
|
// Specifically this tests
|
|
// that the inspector console functions are bound even though
|
|
// overwrite-config-preload-module.js overwrote the process.config variable.
|
|
|
|
// We cannot do a check for the inspector because the configuration variables
|
|
// were reset/removed by overwrite-config-preload-module.js.
|
|
/* eslint-disable node-core/inspector-check */
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.isMainThread)
|
|
common.skip('--require does not work with Workers');
|
|
|
|
const inspector = require('inspector');
|
|
const msg = 'Test inspector logging';
|
|
let asserted = false;
|
|
|
|
async function testConsoleLog() {
|
|
const session = new inspector.Session();
|
|
session.connect();
|
|
session.on('inspectorNotification', (data) => {
|
|
if (data.method === 'Runtime.consoleAPICalled') {
|
|
assert.strictEqual(data.params.args.length, 1);
|
|
assert.strictEqual(data.params.args[0].value, msg);
|
|
asserted = true;
|
|
}
|
|
});
|
|
session.post('Runtime.enable');
|
|
console.log(msg);
|
|
session.disconnect();
|
|
}
|
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
async function runTests() {
|
|
await testConsoleLog();
|
|
assert.ok(asserted, 'log statement did not reach the inspector');
|
|
}
|
|
|
|
runTests();
|