-
Notifications
You must be signed in to change notification settings - Fork 31.1k
/
Copy pathtest-http-agent-keepalive.js
124 lines (114 loc) Β· 3.43 KB
/
test-http-agent-keepalive.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
var common = require('../common');
var assert = require('assert');
var http = require('http');
var Agent = require('_http_agent').Agent;
var EventEmitter = require('events').EventEmitter;
var agent = new Agent({
keepAlive: true,
keepAliveMsecs: 1000,
maxSockets: 5,
maxFreeSockets: 5
});
var server = http.createServer(function (req, res) {
if (req.url === '/error') {
res.destroy();
return;
} else if (req.url === '/remote_close') {
// cache the socket, close it after 100ms
var socket = res.connection;
setTimeout(function () {
socket.end();
}, 100);
}
res.end('hello world');
});
function get(path, callback) {
return http.get({
host: 'localhost',
port: common.PORT,
agent: agent,
path: path
}, callback);
}
var name = 'localhost:' + common.PORT + '::';
function checkDataAndSockets(body) {
assert.equal(body.toString(), 'hello world');
assert.equal(agent.sockets[name].length, 1);
assert.equal(agent.freeSockets[name], undefined);
}
function second() {
// request second, use the same socket
get('/second', function (res) {
assert.equal(res.statusCode, 200);
res.on('data', checkDataAndSockets);
res.on('end', function () {
assert.equal(agent.sockets[name].length, 1);
assert.equal(agent.freeSockets[name], undefined);
process.nextTick(function () {
assert.equal(agent.sockets[name], undefined);
assert.equal(agent.freeSockets[name].length, 1);
remoteClose();
});
});
});
}
function remoteClose() {
// mock remote server close the socket
get('/remote_close', function (res) {
assert.deepEqual(res.statusCode, 200);
res.on('data', checkDataAndSockets);
res.on('end', function () {
assert.equal(agent.sockets[name].length, 1);
assert.equal(agent.freeSockets[name], undefined);
process.nextTick(function () {
assert.equal(agent.sockets[name], undefined);
assert.equal(agent.freeSockets[name].length, 1);
// waitting remote server close the socket
setTimeout(function () {
assert.equal(agent.sockets[name], undefined);
assert.equal(agent.freeSockets[name], undefined,
'freeSockets is not empty');
remoteError();
}, 200);
});
});
});
}
function remoteError() {
// remove server will destroy ths socket
var req = get('/error', function (res) {
throw new Error('should not call this function');
});
req.on('error', function (err) {
assert.ok(err);
assert.equal(err.message, 'socket hang up');
assert.equal(agent.sockets[name].length, 1);
assert.equal(agent.freeSockets[name], undefined);
// Wait socket 'close' event emit
setTimeout(function () {
assert.equal(agent.sockets[name], undefined);
assert.equal(agent.freeSockets[name], undefined);
done();
}, 1);
});
}
function done() {
console.log('http keepalive agent test success.');
process.exit(0);
}
server.listen(common.PORT, function() {
// request first, and keep alive
get('/first', function (res) {
assert.equal(res.statusCode, 200);
res.on('data', checkDataAndSockets);
res.on('end', function () {
assert.equal(agent.sockets[name].length, 1);
assert.equal(agent.freeSockets[name], undefined);
process.nextTick(function () {
assert.equal(agent.sockets[name], undefined);
assert.equal(agent.freeSockets[name].length, 1);
second();
});
});
});
});