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>
30 lines
766 B
JavaScript
30 lines
766 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' +
|
|
'Dummy: Header\r' +
|
|
'Content-Length: 1\r\n' +
|
|
'\r\n';
|
|
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
server.on('clientError', common.mustCall((err) => {
|
|
assert.match(err.message, /^Parse Error/);
|
|
assert.strictEqual(err.code, 'HPE_LF_EXPECTED');
|
|
server.close();
|
|
}));
|
|
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();
|
|
});
|
|
});
|