mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
e9ff81016d
PR-URL: https://github.com/nodejs/node/pull/48981 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
27 lines
836 B
JavaScript
27 lines
836 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' +
|
|
'Content-Length: 1\r\n' +
|
|
'Transfer-Encoding: chunked\r\n\r\n';
|
|
|
|
const server = net.createServer((socket) => {
|
|
socket.write(reqstr);
|
|
});
|
|
|
|
server.listen(0, () => {
|
|
// The callback should not be called because the server is sending
|
|
// both a Content-Length header and a Transfer-Encoding: chunked
|
|
// header, which is a violation of the HTTP spec.
|
|
const req = http.get({ port: server.address().port }, common.mustNotCall());
|
|
req.on('error', common.mustCall((err) => {
|
|
assert.match(err.message, /^Parse Error/);
|
|
assert.strictEqual(err.code, 'HPE_INVALID_TRANSFER_ENCODING');
|
|
server.close();
|
|
}));
|
|
});
|