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

test-http-abort-stream-end.js « disabled « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5dc51d9eee911fe35500eb461efe5a3ce3f79524 (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
'use strict';
const common = require('../common');
const assert = require('assert');

const http = require('http');

var maxSize = 1024;
var size = 0;

var s = http.createServer(function(req, res) {
  this.close();

  res.writeHead(200, {'Content-Type': 'text/plain'});
  for (var i = 0; i < maxSize; i++) {
    res.write('x' + i);
  }
  res.end();
});

var aborted = false;
s.listen(common.PORT, function() {
  var req = http.get('http://localhost:' + common.PORT, function(res) {
    res.on('data', function(chunk) {
      size += chunk.length;
      assert(!aborted, 'got data after abort');
      if (size > maxSize) {
        aborted = true;
        req.abort();
        size = maxSize;
      }
    });
  });

  req.end();
});

process.on('exit', function() {
  assert(aborted);
  assert.strictEqual(size, maxSize);
  console.log('ok');
});