You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
846 B

'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');
});