1
1
'use strict' ;
2
- var common = require ( '../common' ) ;
3
- var assert = require ( 'assert' ) ;
4
- var http = require ( 'http' ) ;
5
- var Agent = require ( '_http_agent' ) . Agent ;
6
- var EventEmitter = require ( 'events' ) . EventEmitter ;
2
+ const common = require ( '../common' ) ;
3
+ const assert = require ( 'assert' ) ;
4
+ const http = require ( 'http' ) ;
5
+ const Agent = require ( '_http_agent' ) . Agent ;
6
+ const EventEmitter = require ( 'events' ) . EventEmitter ;
7
7
8
- var agent = new Agent ( {
8
+ const agent = new Agent ( {
9
9
keepAlive : true ,
10
10
keepAliveMsecs : 1000 ,
11
11
maxSockets : 5 ,
12
12
maxFreeSockets : 5
13
13
} ) ;
14
14
15
- var server = http . createServer ( function ( req , res ) {
15
+ const server = http . createServer ( function ( req , res ) {
16
16
if ( req . url === '/error' ) {
17
17
res . destroy ( ) ;
18
18
return ;
19
19
} else if ( req . url === '/remote_close' ) {
20
- // cache the socket, close it after 100ms
21
- var socket = res . connection ;
22
- setTimeout ( function ( ) {
20
+ // cache the socket, close it after a short delay
21
+ const socket = res . connection ;
22
+ setImmediate ( function ( ) {
23
23
socket . end ( ) ;
24
- } , 100 ) ;
24
+ } ) ;
25
25
}
26
26
res . end ( 'hello world' ) ;
27
27
} ) ;
@@ -35,7 +35,7 @@ function get(path, callback) {
35
35
} , callback ) ;
36
36
}
37
37
38
- var name = 'localhost:' + common . PORT + ':' ;
38
+ const name = 'localhost:' + common . PORT + ':' ;
39
39
40
40
function checkDataAndSockets ( body ) {
41
41
assert . equal ( body . toString ( ) , 'hello world' ) ;
@@ -77,15 +77,15 @@ function remoteClose() {
77
77
assert . equal ( agent . freeSockets [ name ] , undefined ,
78
78
'freeSockets is not empty' ) ;
79
79
remoteError ( ) ;
80
- } , 200 ) ;
80
+ } , common . platformTimeout ( 200 ) ) ;
81
81
} ) ;
82
82
} ) ;
83
83
} ) ;
84
84
}
85
85
86
86
function remoteError ( ) {
87
87
// remove server will destroy ths socket
88
- var req = get ( '/error' , function ( res ) {
88
+ const req = get ( '/error' , function ( res ) {
89
89
throw new Error ( 'should not call this function' ) ;
90
90
} ) ;
91
91
req . on ( 'error' , function ( err ) {
@@ -98,7 +98,7 @@ function remoteError() {
98
98
assert . equal ( agent . sockets [ name ] , undefined ) ;
99
99
assert . equal ( agent . freeSockets [ name ] , undefined ) ;
100
100
done ( ) ;
101
- } , 1 ) ;
101
+ } , common . platformTimeout ( 1 ) ) ;
102
102
} ) ;
103
103
}
104
104
0 commit comments