node/test/parallel/test-http-localaddress.js
Gibson Fahnestock 7a0e462f9f test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically.

PR-URL: https://github.com/nodejs/node/pull/10685
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2017-01-11 11:43:52 +00:00

38 lines
981 B
JavaScript

'use strict';
const common = require('../common');
const http = require('http');
const assert = require('assert');
if (!common.hasMultiLocalhost()) {
common.skip('platform-specific test.');
return;
}
const server = http.createServer(function(req, res) {
console.log('Connect from: ' + req.connection.remoteAddress);
assert.equal('127.0.0.2', req.connection.remoteAddress);
req.on('end', function() {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('You are from: ' + req.connection.remoteAddress);
});
req.resume();
});
server.listen(0, '127.0.0.1', function() {
const options = { host: 'localhost',
port: this.address().port,
path: '/',
method: 'GET',
localAddress: '127.0.0.2' };
const req = http.request(options, function(res) {
res.on('end', function() {
server.close();
process.exit();
});
res.resume();
});
req.end();
});