11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_cirequire('../common'); 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ci// This test ensures Node.js doesn't throw an error when making requests with 51cb0ef41Sopenharmony_ci// the payload 16kb or more in size. 61cb0ef41Sopenharmony_ci// https://github.com/nodejs/node/issues/2821 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst http = require('http'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciconst server = http.createServer(function(req, res) { 111cb0ef41Sopenharmony_ci res.writeHead(200); 121cb0ef41Sopenharmony_ci res.end(); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci server.close(); 151cb0ef41Sopenharmony_ci}); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ciserver.listen(0, function() { 181cb0ef41Sopenharmony_ci const req = http.request({ 191cb0ef41Sopenharmony_ci method: 'POST', 201cb0ef41Sopenharmony_ci port: this.address().port 211cb0ef41Sopenharmony_ci }); 221cb0ef41Sopenharmony_ci 231cb0ef41Sopenharmony_ci const payload = Buffer.alloc(16390, 'Й'); 241cb0ef41Sopenharmony_ci req.write(payload); 251cb0ef41Sopenharmony_ci req.end(); 261cb0ef41Sopenharmony_ci}); 27