@@ -24,33 +24,99 @@ var assert = require('assert');
24
24
var net = require ( 'net' ) ;
25
25
26
26
var tcpPort = common . PORT ;
27
+ var expectedConnections = 7 ;
27
28
var clientConnected = 0 ;
28
29
var serverConnected = 0 ;
29
30
30
31
var server = net . createServer ( function ( socket ) {
31
32
socket . end ( ) ;
32
- if ( ++ serverConnected === 4 ) {
33
+ if ( ++ serverConnected === expectedConnections ) {
33
34
server . close ( ) ;
34
35
}
35
36
} ) ;
37
+
36
38
server . listen ( tcpPort , 'localhost' , function ( ) {
37
39
function cb ( ) {
38
40
++ clientConnected ;
39
41
}
40
42
43
+ function fail ( opts , errtype , msg ) {
44
+ assert . throws ( function ( ) {
45
+ var client = net . createConnection ( opts , cb ) ;
46
+ } , function ( err ) {
47
+ return err instanceof errtype && msg === err . message ;
48
+ } ) ;
49
+ }
50
+
41
51
net . createConnection ( tcpPort ) . on ( 'connect' , cb ) ;
42
52
net . createConnection ( tcpPort , 'localhost' ) . on ( 'connect' , cb ) ;
43
53
net . createConnection ( tcpPort , cb ) ;
44
54
net . createConnection ( tcpPort , 'localhost' , cb ) ;
55
+ net . createConnection ( tcpPort + '' , 'localhost' , cb ) ;
56
+ net . createConnection ( { port : tcpPort + '' } ) . on ( 'connect' , cb ) ;
57
+ net . createConnection ( { port : '0x' + tcpPort . toString ( 16 ) } , cb ) ;
58
+
59
+ fail ( {
60
+ port : true
61
+ } , TypeError , 'port should be a number or string: true' ) ;
62
+
63
+ fail ( {
64
+ port : false
65
+ } , TypeError , 'port should be a number or string: false' ) ;
66
+
67
+ fail ( {
68
+ port : [ ]
69
+ } , TypeError , 'port should be a number or string: ' ) ;
70
+
71
+ fail ( {
72
+ port : { }
73
+ } , TypeError , 'port should be a number or string: [object Object]' ) ;
74
+
75
+ fail ( {
76
+ port : null
77
+ } , TypeError , 'port should be a number or string: null' ) ;
78
+
79
+ fail ( {
80
+ port : ''
81
+ } , RangeError , 'port should be >= 0 and < 65536: ' ) ;
82
+
83
+ fail ( {
84
+ port : ' '
85
+ } , RangeError , 'port should be >= 0 and < 65536: ' ) ;
45
86
46
- assert . throws ( function ( ) {
47
- net . createConnection ( {
48
- port : 'invalid!'
49
- } , cb ) ;
50
- } ) ;
87
+ fail ( {
88
+ port : '0x'
89
+ } , RangeError , 'port should be >= 0 and < 65536: 0x' ) ;
90
+
91
+ fail ( {
92
+ port : '-0x1'
93
+ } , RangeError , 'port should be >= 0 and < 65536: -0x1' ) ;
94
+
95
+ fail ( {
96
+ port : NaN
97
+ } , RangeError , 'port should be >= 0 and < 65536: NaN' ) ;
98
+
99
+ fail ( {
100
+ port : Infinity
101
+ } , RangeError , 'port should be >= 0 and < 65536: Infinity' ) ;
102
+
103
+ fail ( {
104
+ port : - 1
105
+ } , RangeError , 'port should be >= 0 and < 65536: -1' ) ;
106
+
107
+ fail ( {
108
+ port : 65536
109
+ } , RangeError , 'port should be >= 0 and < 65536: 65536' ) ;
51
110
} ) ;
52
111
53
- process . on ( 'exit' , function ( ) {
54
- assert . equal ( clientConnected , 4 ) ;
112
+ // Try connecting to random ports, but do so once the server is closed
113
+ server . on ( 'close' , function ( ) {
114
+ function nop ( ) { }
115
+
116
+ net . createConnection ( { port : 0 } ) . on ( 'error' , nop ) ;
117
+ net . createConnection ( { port : undefined } ) . on ( 'error' , nop ) ;
55
118
} ) ;
56
119
120
+ process . on ( 'exit' , function ( ) {
121
+ assert . equal ( clientConnected , expectedConnections ) ;
122
+ } ) ;
0 commit comments