Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-http-timeout.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63f87ed63089ee729284a1212bed3e954c3537c3 (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
44
'use strict';
require('../common');

const http = require('http');

const server = http.createServer(function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('OK');
});

const agent = new http.Agent({maxSockets: 1});

server.listen(0, function() {

  for (let i = 0; i < 11; ++i) {
    createRequest().end();
  }

  function callback() {}

  let count = 0;

  function createRequest() {
    const req = http.request(
      {port: server.address().port, path: '/', agent: agent},
      function(res) {
        req.clearTimeout(callback);

        res.on('end', function() {
          count++;

          if (count === 11) {
            server.close();
          }
        });

        res.resume();
      }
    );

    req.setTimeout(1000, callback);
    return req;
  }
});