mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
c925039b35
PR-URL: https://github.com/nodejs/node/pull/33633 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
704 B
JavaScript
30 lines
704 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
const server = http.createServer(common.mustCall((req, res) => {
|
|
res.writeHead(200);
|
|
res.end('hello world');
|
|
})).listen(0, '127.0.0.1');
|
|
|
|
server.on('listening', common.mustCall(() => {
|
|
const req = new http.ClientRequest(server.address(), common.mustCall((response) => {
|
|
let body = '';
|
|
response.setEncoding('utf8');
|
|
response.on('data', (chunk) => {
|
|
body += chunk;
|
|
});
|
|
|
|
response.on('end', common.mustCall(() => {
|
|
assert.strictEqual(body, 'hello world');
|
|
server.close();
|
|
}));
|
|
}));
|
|
|
|
req.end();
|
|
}));
|
|
}
|