summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-pipeline-assertionerror-finish.js
blob: 2780d4bdf676add063c2d61bf271e1ab9371e5fc (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
'use strict';
const common = require('../common');

// This test ensures that Node.js doesn't crash with an AssertionError at
// `ServerResponse.resOnFinish` because of an out-of-order 'finish' bug in
// pipelining.
// https://github.com/nodejs/node/issues/2639

const http = require('http');
const net = require('net');

const COUNT = 10;

const server = http
  .createServer(
    common.mustCall((req, res) => {
      // Close the server, we have only one TCP connection anyway
      server.close();
      res.writeHead(200);
      res.write('data');

      setTimeout(function() {
        res.end();
      }, (Math.random() * 100) | 0);
    }, COUNT)
  )
  .listen(0, function() {
    const s = net.connect(this.address().port);

    const big = 'GET / HTTP/1.0\r\n\r\n'.repeat(COUNT);

    s.write(big);
    s.resume();
  });