forked from nodejs/node-v0.x-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-http-upgrade-server2.js
More file actions
53 lines (42 loc) · 1.19 KB
/
Copy pathtest-http-upgrade-server2.js
File metadata and controls
53 lines (42 loc) · 1.19 KB
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
common = require("../common");
assert = common.assert
http = require('http');
net = require('net');
server = http.createServer(function (req, res) {
common.error('got req');
throw new Error("This shouldn't happen.");
});
server.addListener('upgrade', function (req, socket, upgradeHead) {
common.error('got upgrade event');
// test that throwing an error from upgrade gets
// is uncaught
throw new Error('upgrade error');
});
gotError = false;
process.addListener('uncaughtException', function (e) {
common.error('got "clientError" event');
assert.equal('upgrade error', e.message);
gotError = true;
process.exit(0);
});
server.listen(common.PORT, function () {
var c = net.createConnection(common.PORT);
c.addListener('connect', function () {
common.error('client wrote message');
c.write( "GET /blah HTTP/1.1\r\n"
+ "Upgrade: WebSocket\r\n"
+ "Connection: Upgrade\r\n"
+ "\r\n\r\nhello world"
);
});
c.addListener('end', function () {
c.end();
});
c.addListener('close', function () {
common.error('client close');
server.close();
});
});
process.addListener('exit', function () {
assert.ok(gotError);
});