mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
508890d795
PR-URL: https://github.com/nodejs/node/pull/39928 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
28 lines
726 B
JavaScript
28 lines
726 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
const str = 'GET / HTTP/1.1\r\n' +
|
|
'Content-Length:';
|
|
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
server.on('clientError', common.mustCall((err, socket) => {
|
|
assert.match(err.message, /^Parse Error/);
|
|
assert.strictEqual(err.code, 'HPE_INVALID_EOF_STATE');
|
|
socket.destroy();
|
|
}, 1));
|
|
server.listen(0, () => {
|
|
const client = net.connect({ port: server.address().port }, () => {
|
|
client.on('data', common.mustNotCall());
|
|
client.on('end', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
client.write(str);
|
|
client.end();
|
|
});
|
|
});
|