mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
508890d795
PR-URL: https://github.com/nodejs/node/pull/39928 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
72 lines
1.9 KiB
JavaScript
72 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
if (!common.isMainThread)
|
|
common.skip('process.chdir is not available in Workers');
|
|
|
|
process.chdir(fixtures.fixturesDir);
|
|
const repl = require('repl');
|
|
|
|
{
|
|
const server = net.createServer((conn) => {
|
|
repl.start('', conn).on('exit', () => {
|
|
conn.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
const host = common.localhostIPv4;
|
|
const port = 0;
|
|
const options = { host, port };
|
|
|
|
let answer = '';
|
|
server.listen(options, function() {
|
|
options.port = this.address().port;
|
|
const conn = net.connect(options);
|
|
conn.setEncoding('utf8');
|
|
conn.on('data', (data) => answer += data);
|
|
conn.write('require("baz")\nrequire("./baz")\n.exit\n');
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.doesNotMatch(answer, /Cannot find module/);
|
|
assert.doesNotMatch(answer, /Error/);
|
|
assert.strictEqual(answer, '\'eye catcher\'\n\'perhaps I work\'\n');
|
|
});
|
|
}
|
|
|
|
// Test for https://github.com/nodejs/node/issues/30808
|
|
// In REPL, we shouldn't look up relative modules from 'node_modules'.
|
|
{
|
|
const server = net.createServer((conn) => {
|
|
repl.start('', conn).on('exit', () => {
|
|
conn.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
const host = common.localhostIPv4;
|
|
const port = 0;
|
|
const options = { host, port };
|
|
|
|
let answer = '';
|
|
server.listen(options, function() {
|
|
options.port = this.address().port;
|
|
const conn = net.connect(options);
|
|
conn.setEncoding('utf8');
|
|
conn.on('data', (data) => answer += data);
|
|
conn.write('require("./bar")\n.exit\n');
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.match(answer, /Uncaught Error: Cannot find module '\.\/bar'/);
|
|
|
|
assert.match(answer, /code: 'MODULE_NOT_FOUND'/);
|
|
assert.match(answer, /requireStack: \[ '<repl>' \]/);
|
|
});
|
|
}
|