node/test/parallel/test-http-double-content-length.js
cjihrig aa0e4f3843 test: use common.fail() instead of assert(false)
PR-URL: https://github.com/nodejs/node/pull/10899
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Italo A. Casas <me@italoacasas.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2017-01-23 09:45:58 -05:00

30 lines
891 B
JavaScript

'use strict';
const common = require('../common');
const http = require('http');
const assert = require('assert');
// The callback should never be invoked because the server
// should respond with a 400 Client Error when a double
// Content-Length header is received.
const server = http.createServer(common.fail);
server.on('clientError', common.mustCall((err, socket) => {
assert(/^Parse Error/.test(err.message));
assert.strictEqual(err.code, 'HPE_UNEXPECTED_CONTENT_LENGTH');
socket.destroy();
}));
server.listen(0, () => {
const req = http.get({
port: server.address().port,
// Send two content-length header values.
headers: {'Content-Length': [1, 2]}},
(res) => {
common.fail('an error should have occurred');
}
);
req.on('error', common.mustCall(() => {
server.close();
}));
});