mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 08:42:45 +00:00

PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
18 lines
468 B
JavaScript
18 lines
468 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
var server = http.createServer(common.mustCall(function(req, res) {
|
|
assert.equal('GET', req.method);
|
|
assert.equal('/foo?bar', req.url);
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.write('hello\n');
|
|
res.end();
|
|
server.close();
|
|
}));
|
|
|
|
server.listen(0, function() {
|
|
http.get(`http://127.0.0.1:${this.address().port}/foo?bar`);
|
|
});
|