mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00: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>
32 lines
868 B
JavaScript
32 lines
868 B
JavaScript
'use strict';
|
|
const { mustCall } = require('../common');
|
|
const assert = require('assert');
|
|
const { createServer } = require('http');
|
|
const { createConnection } = require('net');
|
|
|
|
const server = createServer();
|
|
|
|
server.on('request', mustCall((req, res) => {
|
|
res.write('asd', () => {
|
|
res.socket.emit('error', new Error('kaboom'));
|
|
});
|
|
}));
|
|
|
|
server.listen(0, mustCall(() => {
|
|
const c = createConnection(server.address().port);
|
|
let received = '';
|
|
|
|
c.on('connect', mustCall(() => {
|
|
c.write('GET /blah HTTP/1.1\r\nHost: example.com\r\n\r\n');
|
|
}));
|
|
c.on('data', mustCall((data) => {
|
|
received += data.toString();
|
|
}));
|
|
c.on('end', mustCall(() => {
|
|
// Should not include anything else after asd.
|
|
assert.strictEqual(received.indexOf('asd\r\n'), received.length - 5);
|
|
c.end();
|
|
}));
|
|
c.on('close', mustCall(() => server.close()));
|
|
}));
|