node/test/parallel/test-http-request-large-payload.js
Ujjwal Sharma ff7c2ccf23 test: rename tests with descriptive filenames
Refs: https://github.com/nodejs/node/issues/19105
Refs: https://github.com/nodejs/node/blob/master/doc/guides/writing-tests.md#test-structure

PR-URL: https://github.com/nodejs/node/pull/19608
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
2018-03-28 16:18:10 -07:00

27 lines
543 B
JavaScript

'use strict';
require('../common');
// This test ensures Node.js doesn't throw an error when making requests with
// the payload 16kb or more in size.
// https://github.com/nodejs/node/issues/2821
const http = require('http');
const server = http.createServer(function(req, res) {
res.writeHead(200);
res.end();
server.close();
});
server.listen(0, function() {
const req = http.request({
method: 'POST',
port: this.address().port
});
const payload = Buffer.alloc(16390, 'Й');
req.write(payload);
req.end();
});