summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-pipeline-regr-3332.js
blob: 9247214ebf6285f8ffc1b88ecbc7a56bc3bb813c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');

const big = Buffer.alloc(16 * 1024, 'A');

const COUNT = 1e4;

var received = 0;

var client;
const server = http.createServer(function(req, res) {
  res.end(big, function() {
    if (++received === COUNT) {
      server.close();
      client.end();
    }
  });
}).listen(common.PORT, function() {
  var req = new Array(COUNT + 1).join('GET / HTTP/1.1\r\n\r\n');
  client = net.connect(common.PORT, function() {
    client.write(req);
  });

  // Just let the test terminate instead of hanging
  client.on('close', function() {
    if (received !== COUNT)
      server.close();
  });
  client.resume();
});

process.on('exit', function() {
  // The server should pause connection on pipeline flood, but it shoul still
  // resume it and finish processing the requests, when its output queue will
  // be empty again.
  assert.equal(received, COUNT);
});