mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 14:26:57 +00:00

Due to npm using workers on Windows which inititate processes for code within node_modules, the current way of testing is a little too strict to catch all occurrences. PR-URL: https://github.com/nodejs/node/pull/20163 Fixes: https://github.com/nodejs/node/issues/20160 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const child_process = require('child_process');
|
|
const assert = require('assert');
|
|
const common = require('../common');
|
|
|
|
if (process.env.NODE_PENDING_DEPRECATION)
|
|
common.skip('test does not work when NODE_PENDING_DEPRECATION is set');
|
|
|
|
function test(main, callSite, expected) {
|
|
const { stderr } = child_process.spawnSync(process.execPath, ['-p', `
|
|
process.mainModule = { filename: ${JSON.stringify(main)} };
|
|
|
|
vm.runInNewContext('new Buffer(10)', { Buffer }, {
|
|
filename: ${JSON.stringify(callSite)}
|
|
});`], { encoding: 'utf8' });
|
|
if (expected)
|
|
assert(stderr.includes('[DEP0005] DeprecationWarning'), stderr);
|
|
else
|
|
assert.strictEqual(stderr.trim(), '');
|
|
}
|
|
|
|
test('/a/node_modules/b.js', '/a/node_modules/x.js', false);
|
|
test('/a/node_modules/b.js', '/a/node_modules/foo/node_modules/x.js', false);
|
|
test('/a/node_modules/foo/node_modules/b.js', '/a/node_modules/x.js', false);
|
|
test('/node_modules/foo/b.js', '/node_modules/foo/node_modules/x.js', false);
|
|
test('/a.js', '/b.js', true);
|
|
test('/a.js', '/node_modules/b.js', false);
|
|
test('/node_modules/a.js.js', '/b.js', true);
|
|
test('c:\\a\\node_modules\\b.js', 'c:\\a\\node_modules\\x.js', false);
|
|
test('c:\\a\\node_modules\\b.js',
|
|
'c:\\a\\node_modules\\foo\\node_modules\\x.js', false);
|
|
test('c:\\node_modules\\foo\\b.js',
|
|
'c:\\node_modules\\foo\\node_modules\\x.js', false);
|
|
test('c:\\a.js', 'c:\\b.js', true);
|
|
test('c:\\a.js', 'c:\\node_modules\\b.js', false);
|
|
test('c:\\node_modules\\a.js', 'c:\\b.js', true);
|