mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
66 lines
1.5 KiB
JavaScript
66 lines
1.5 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var CRLF = '\r\n';
|
|
|
|
var server = http.createServer();
|
|
server.on('upgrade', function(req, socket, head) {
|
|
socket.write('HTTP/1.1 101 Ok' + CRLF +
|
|
'Connection: Upgrade' + CRLF +
|
|
'Upgrade: Test' + CRLF + CRLF + 'head');
|
|
socket.on('end', function() {
|
|
socket.end();
|
|
});
|
|
});
|
|
|
|
var successCount = 0;
|
|
|
|
server.listen(common.PORT, function() {
|
|
|
|
function upgradeRequest(fn) {
|
|
console.log('req');
|
|
var header = { 'Connection': 'Upgrade', 'Upgrade': 'Test' };
|
|
var request = http.request({ port: common.PORT, headers: header });
|
|
var wasUpgrade = false;
|
|
|
|
function onUpgrade(res, socket, head) {
|
|
console.log('client upgraded');
|
|
wasUpgrade = true;
|
|
|
|
request.removeListener('upgrade', onUpgrade);
|
|
socket.end();
|
|
}
|
|
request.on('upgrade', onUpgrade);
|
|
|
|
function onEnd() {
|
|
console.log('client end');
|
|
request.removeListener('end', onEnd);
|
|
if (!wasUpgrade) {
|
|
throw new Error('hasn\'t received upgrade event');
|
|
} else {
|
|
fn && process.nextTick(fn);
|
|
}
|
|
}
|
|
request.on('close', onEnd);
|
|
|
|
request.write('head');
|
|
|
|
}
|
|
|
|
upgradeRequest(function() {
|
|
successCount++;
|
|
upgradeRequest(function() {
|
|
successCount++;
|
|
// Test pass
|
|
console.log('Pass!');
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, successCount);
|
|
});
|