mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 22:40:57 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
41 lines
932 B
JavaScript
41 lines
932 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
const net = require('net');
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
throw new Error('This shouldn\'t happen.');
|
|
});
|
|
|
|
server.on('upgrade', function(req, socket, upgradeHead) {
|
|
// test that throwing an error from upgrade gets
|
|
// is uncaught
|
|
throw new Error('upgrade error');
|
|
});
|
|
|
|
process.on('uncaughtException', common.mustCall(function(e) {
|
|
assert.equal('upgrade error', e.message);
|
|
process.exit(0);
|
|
}));
|
|
|
|
|
|
server.listen(0, function() {
|
|
const c = net.createConnection(this.address().port);
|
|
|
|
c.on('connect', function() {
|
|
c.write('GET /blah HTTP/1.1\r\n' +
|
|
'Upgrade: WebSocket\r\n' +
|
|
'Connection: Upgrade\r\n' +
|
|
'\r\n\r\nhello world');
|
|
});
|
|
|
|
c.on('end', function() {
|
|
c.end();
|
|
});
|
|
|
|
c.on('close', function() {
|
|
server.close();
|
|
});
|
|
});
|