mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 08:42:45 +00:00

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>
27 lines
543 B
JavaScript
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();
|
|
});
|