Skip to content

Commit c786d63

Browse files
committed
test: do not use public IPs for timeout testing
PR-URL: #2057 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 543dabb commit c786d63

File tree

1 file changed

+13
-42
lines changed

1 file changed

+13
-42
lines changed

test/internet/test-net-connect-timeout.js

+13-42
Original file line numberDiff line numberDiff line change
@@ -2,70 +2,41 @@
22
// This example attempts to time out before the connection is established
33
// https://groups.google.com/forum/#!topic/nodejs/UE0ZbfLt6t8
44
// https://groups.google.com/forum/#!topic/nodejs-dev/jR7-5UDqXkw
5-
//
6-
// TODO: how to do this without relying on the responses of specific sites?
75

86
var common = require('../common');
97
var net = require('net');
108
var assert = require('assert');
119

1210
var start = new Date();
1311

14-
var gotTimeout0 = false;
15-
var gotTimeout1 = false;
12+
var gotTimeout = false;
1613

17-
var gotConnect0 = false;
18-
var gotConnect1 = false;
14+
var gotConnect = false;
1915

2016
var T = 100;
2117

2218

23-
// With DNS
19+
// 240.*.*.*.* is "reserved for future use"
20+
var socket = net.createConnection(9999, '240.0.0.0');
2421

25-
var socket0 = net.createConnection(9999, 'google.com');
22+
socket.setTimeout(T);
2623

27-
socket0.setTimeout(T);
28-
29-
socket0.on('timeout', function() {
30-
console.error('timeout');
31-
gotTimeout0 = true;
32-
var now = new Date();
33-
assert.ok(now - start < T + 500);
34-
socket0.destroy();
35-
});
36-
37-
socket0.on('connect', function() {
38-
console.error('connect');
39-
gotConnect0 = true;
40-
socket0.destroy();
41-
});
42-
43-
44-
// Without DNS
45-
46-
var socket1 = net.createConnection(9999, '24.24.24.24');
47-
48-
socket1.setTimeout(T);
49-
50-
socket1.on('timeout', function() {
24+
socket.on('timeout', function() {
5125
console.error('timeout');
52-
gotTimeout1 = true;
26+
gotTimeout = true;
5327
var now = new Date();
5428
assert.ok(now - start < T + 500);
55-
socket1.destroy();
29+
socket.destroy();
5630
});
5731

58-
socket1.on('connect', function() {
32+
socket.on('connect', function() {
5933
console.error('connect');
60-
gotConnect1 = true;
61-
socket1.destroy();
34+
gotConnect = true;
35+
socket.destroy();
6236
});
6337

6438

6539
process.on('exit', function() {
66-
assert.ok(gotTimeout0);
67-
assert.ok(!gotConnect0);
68-
69-
assert.ok(gotTimeout1);
70-
assert.ok(!gotConnect1);
40+
assert.ok(gotTimeout);
41+
assert.ok(!gotConnect);
7142
});

0 commit comments

Comments
 (0)