blob: cfa531cedf55231ce393a7c8752db0303ada2e59 (
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';
var common = require('../common');
var assert = require('assert');
var 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.equal(size, maxSize);
console.log('ok');
});
|