mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 22:33:26 +00:00

This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
35 lines
889 B
JavaScript
35 lines
889 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
process.chdir(common.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 };
|
|
|
|
var 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.strictEqual(false, /Cannot find module/.test(answer));
|
|
assert.strictEqual(false, /Error/.test(answer));
|
|
assert.strictEqual(answer, '\'eye catcher\'\n\'perhaps I work\'\n');
|
|
});
|