mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 16:55:46 +00:00

includes parsing improvements to ensure closer HTTP spec conformance PR-URL: https://github.com/nodejs/node-private/pull/26 Reviewed-By: Rod Vagg <r@va.gg> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
28 lines
791 B
JavaScript
28 lines
791 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const net = require('net');
|
|
const assert = require('assert');
|
|
|
|
const reqstr = 'HTTP/1.1 200 OK\r\n' +
|
|
'Foo: Bar\r' +
|
|
'Content-Length: 1\r\n\r\n';
|
|
|
|
const server = net.createServer((socket) => {
|
|
socket.write(reqstr);
|
|
});
|
|
|
|
server.listen(common.PORT, () => {
|
|
// The callback should not be called because the server is sending a
|
|
// header field that ends only in \r with no following \n
|
|
const req = http.get({port:common.PORT}, (res) => {
|
|
assert.fail(null, null, 'callback should not be called');
|
|
});
|
|
req.on('error', common.mustCall((err) => {
|
|
assert(/^Parse Error/.test(err.message));
|
|
assert.equal(err.code, 'HPE_LF_EXPECTED');
|
|
server.close();
|
|
}));
|
|
});
|