mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
ed3604cd64
PR-URL: https://github.com/nodejs/node/pull/45597 Fixes: https://github.com/nodejs/node/issues/39033 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> Co-authored-by: mscdex <mscdex@users.noreply.github.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
34 lines
859 B
JavaScript
34 lines
859 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
const net = require('net');
|
|
|
|
['on', 'addListener', 'prependListener'].forEach((testFn) => {
|
|
let received = '';
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end();
|
|
|
|
req.socket[testFn]('data', function(data) {
|
|
received += data;
|
|
});
|
|
|
|
server.close();
|
|
}).listen(0, function() {
|
|
const socket = net.connect(this.address().port, function() {
|
|
socket.write('PUT / HTTP/1.1\r\nHost: example.com\r\n\r\n');
|
|
|
|
socket.once('data', function() {
|
|
socket.end('hello world');
|
|
});
|
|
|
|
socket.on('end', common.mustCall(() => {
|
|
assert.strictEqual(received, 'hello world',
|
|
`failed for socket.${testFn}`);
|
|
}));
|
|
});
|
|
});
|
|
});
|