mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 23:52:54 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
33 lines
701 B
JavaScript
33 lines
701 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
var options = {
|
|
method: 'GET',
|
|
port: undefined,
|
|
host: '127.0.0.1',
|
|
path: '/'
|
|
};
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
// this space intentionally left blank
|
|
});
|
|
|
|
server.listen(0, options.host, function() {
|
|
options.port = this.address().port;
|
|
var req = http.request(options, function(res) {
|
|
// this space intentionally left blank
|
|
});
|
|
req.on('close', function() {
|
|
server.close();
|
|
});
|
|
function destroy() {
|
|
req.destroy();
|
|
}
|
|
var s = req.setTimeout(1, destroy);
|
|
assert.ok(s instanceof http.ClientRequest);
|
|
req.on('error', destroy);
|
|
req.end();
|
|
});
|