summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-regr-gh-2821.js
blob: 8725111324a86908844e5c1830b083ad89eec8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common');
const http = require('http');

const server = http.createServer(function(req, res) {
  res.writeHead(200);
  res.end();

  server.close();
});

server.listen(common.PORT, function() {

  const req = http.request({
    method: 'POST',
    port: common.PORT
  });

  const payload = new Buffer(16390);
  payload.fill('Й');
  req.write(payload);
  req.end();
});