0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-25 08:19:38 +01:00
nodejs/test/parallel/test-http-client-timeout-event.js

40 lines
842 B
JavaScript
Raw Normal View History

var common = require('../common');
var assert = require('assert');
var http = require('http');
var options = {
method: 'GET',
port: common.PORT,
host: '127.0.0.1',
path: '/'
};
var server = http.createServer(function(req, res) {
// this space intentionally left blank
});
server.listen(options.port, options.host, function() {
var req = http.request(options, function(res) {
// this space intentionally left blank
});
req.on('error', function() {
// this space is intentionally left blank
});
req.on('close', function() {
server.close();
});
var timeout_events = 0;
req.setTimeout(1);
req.on('timeout', function () {
timeout_events += 1;
});
setTimeout(function () {
req.destroy();
assert.equal(timeout_events, 1);
}, 100);
2013-04-08 14:40:31 +02:00
setTimeout(function () {
req.end();
}, 50);
});