summaryrefslogtreecommitdiff
path: root/test/parallel/test-regress-GH-4948.js
blob: 5ec79b8685b40926375cdcca05e396a50273e9d3 (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
41
42
43
'use strict';
// https://github.com/joyent/node/issues/4948

require('../common');
const http = require('http');

let reqCount = 0;
const server = http.createServer(function(serverReq, serverRes) {
  if (reqCount) {
    serverRes.end();
    server.close();
    return;
  }
  reqCount = 1;


  // normally the use case would be to call an external site
  // does not require connecting locally or to itself to fail
  const r = http.request({hostname: 'localhost',
                          port: this.address().port}, function(res) {
    // required, just needs to be in the client response somewhere
    serverRes.end();

    // required for test to fail
    res.on('data', () => {});

  });
  r.on('error', () => {});
  r.end();

  serverRes.write('some data');
}).listen(0, function() {
  // simulate a client request that closes early
  const net = require('net');

  const sock = new net.Socket();
  sock.connect(this.address().port, 'localhost');

  sock.on('connect', function() {
    sock.write('GET / HTTP/1.1\r\n\r\n');
    sock.end();
  });
});