mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
06c29a66d4
common.fail() was added to paste over issues with assert.fail() function signature. assert.fail() has been updated to accept a single argument so common.fail() is no longer necessary. PR-URL: https://github.com/nodejs/node/pull/12293 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
929 B
JavaScript
30 lines
929 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const net = require('net');
|
|
const assert = require('assert');
|
|
|
|
const reqstr = 'POST / HTTP/1.1\r\n' +
|
|
'Content-Length: 1\r\n' +
|
|
'Transfer-Encoding: chunked\r\n\r\n';
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
server.on('clientError', common.mustCall((err) => {
|
|
assert(/^Parse Error/.test(err.message));
|
|
assert.strictEqual(err.code, 'HPE_UNEXPECTED_CONTENT_LENGTH');
|
|
server.close();
|
|
}));
|
|
server.listen(0, () => {
|
|
const client = net.connect({port: server.address().port}, () => {
|
|
client.write(reqstr);
|
|
client.end();
|
|
});
|
|
client.on('data', (data) => {
|
|
// Should not get to this point because the server should simply
|
|
// close the connection without returning any data.
|
|
assert.fail('no data should be returned by the server');
|
|
});
|
|
client.on('end', common.mustCall());
|
|
});
|