mirror of https://github.com/lukechilds/node.git
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.
41 lines
834 B
41 lines
834 B
'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');
|
|
});
|
|
|