forked from socketio/engine.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengine.io.js
230 lines (190 loc) · 6.46 KB
/
engine.io.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
* Test dependencies.
*/
var net = require('net');
var eio = require('..');
var listen = require('./common').listen;
var expect = require('expect.js');
var request = require('superagent');
var http = require('http');
/**
* Tests.
*/
describe('engine', function () {
it('should expose protocol number', function () {
expect(eio.protocol).to.be.a('number');
});
it('should be the same version as client', function(){
expect(eio.protocol).to.be.a('number');
var version = require('../package').version;
expect(version).to.be(require('engine.io-client/package').version);
});
describe('engine()', function () {
it('should create a Server when require called with no arguments', function () {
var engine = eio();
expect(engine).to.be.an(eio.Server);
});
});
describe('listen', function () {
it('should open a http server that returns 501', function (done) {
var server = listen(function (port) {
request.get('http://localhost:%d/'.s(port), function (res) {
expect(res.status).to.be(501);
done();
});
});
});
});
describe('attach()', function () {
it('should work from require()', function () {
var server = http.createServer();
var engine = eio(server);
expect(engine).to.be.an(eio.Server);
});
it('should return an engine.Server', function () {
var server = http.createServer()
, engine = eio.attach(server);
expect(engine).to.be.an(eio.Server);
});
it('should attach engine to an http server', function (done) {
var server = http.createServer()
, engine = eio.attach(server);
server.listen(function () {
var uri = 'http://localhost:%d/engine.io/default/'.s(server.address().port);
request.get(uri, function (res) {
expect(res.status).to.be(400);
expect(res.body.code).to.be(0);
expect(res.body.message).to.be('Transport unknown');
server.once('close', done);
server.close();
});
});
});
it('should destroy upgrades not handled by engine', function (done) {
var server = http.createServer()
, engine = eio.attach(server);
server.listen(function () {
var client = net.createConnection(server.address().port);
client.setEncoding('ascii');
client.write([
'GET / HTTP/1.1'
, 'Upgrade: IRC/6.9'
, '', ''
].join('\r\n'));
var check = setTimeout(function () {
done(new Error('Client should have ended'));
}, 20);
client.on('end', function () {
clearTimeout(check);
done();
});
});
});
it('should not destroy unhandled upgrades with destroyUpgrade:false', function (done) {
var server = http.createServer()
, engine = eio.attach(server, { destroyUpgrade: false, destroyUpgradeTimeout: 50 });
server.listen(function () {
var client = net.createConnection(server.address().port);
client.on('connect', function () {
client.setEncoding('ascii');
client.write([
'GET / HTTP/1.1'
, 'Upgrade: IRC/6.9'
, '', ''
].join('\r\n'));
var check = setTimeout(function () {
client.removeListener('end', onEnd);
done();
}, 100);
function onEnd () {
done(new Error('Client should not end'));
}
client.on('end', onEnd);
});
});
});
it('should destroy unhandled upgrades with after a timeout', function (done) {
var server = http.createServer()
, engine = eio.attach(server, { destroyUpgradeTimeout: 200 });
server.listen(function () {
var client = net.createConnection(server.address().port);
client.on('connect', function () {
client.setEncoding('ascii');
client.write([
'GET / HTTP/1.1'
, 'Upgrade: IRC/6.9'
, '', ''
].join('\r\n'));
// send from client to server
// tests that socket is still alive
// this will not keep the socket open as the server does not handle it
setTimeout(function() {
client.write('foo');
}, 100);
function onEnd () {
done();
}
client.on('end', onEnd);
});
});
});
it('should not destroy handled upgrades with after a timeout', function (done) {
var server = http.createServer()
, engine = eio.attach(server, { destroyUpgradeTimeout: 100 });
// write to the socket to keep engine.io from closing it by writing before the timeout
server.on('upgrade', function(req, socket) {
socket.write('foo');
socket.on('data', function(chunk) {
expect(chunk.toString()).to.be('foo');
socket.end();
});
});
server.listen(function () {
var client = net.createConnection(server.address().port);
client.on('connect', function () {
client.setEncoding('ascii');
client.write([
'GET / HTTP/1.1'
, 'Upgrade: IRC/6.9'
, '', ''
].join('\r\n'));
// test that socket is still open by writing after the timeout period
setTimeout(function() {
client.write('foo');
}, 200);
client.on('data', function (data) {
});
client.on('end', done);
});
});
});
it('should preserve original request listeners', function (done) {
var listeners = 0
, server = http.createServer(function (req, res) {
expect(req && res).to.be.ok();
listeners++;
});
server.on('request', function (req, res) {
expect(req && res).to.be.ok();
res.writeHead(200);
res.end('');
listeners++;
});
eio.attach(server);
server.listen(function () {
var port = server.address().port;
request.get('http://localhost:%d/engine.io/default/'.s(port), function (res) {
expect(res.status).to.be(400);
expect(res.body.code).to.be(0);
expect(res.body.message).to.be('Transport unknown');
request.get('http://localhost:%d/test'.s(port), function (res) {
expect(res.status).to.be(200);
expect(listeners).to.eql(2);
server.once('close', done);
server.close();
});
});
});
});
});
});