forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest-net-settimeout.js
More file actions
36 lines (28 loc) · 857 Bytes
/
test-net-settimeout.js
File metadata and controls
36 lines (28 loc) · 857 Bytes
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
// This example sets a timeout then immediately attempts to disable the timeout
// https://github.com/joyent/node/pull/2245
var common = require('../common');
var net = require('net');
var assert = require('assert');
var T = 100;
var server = net.createServer(function(c) {
c.write('hello');
});
server.listen(common.PORT);
var killers = [0];
var left = killers.length;
killers.forEach(function(killer) {
var socket = net.createConnection(common.PORT, 'localhost');
var s = socket.setTimeout(T, function() {
socket.destroy();
if (--left === 0) server.close();
assert.ok(killer !== 0);
clearTimeout(timeout);
});
assert.ok(s instanceof net.Socket);
socket.setTimeout(killer);
var timeout = setTimeout(function() {
socket.destroy();
if (--left === 0) server.close();
assert.ok(killer === 0);
}, T * 2);
});