mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
643 B
30 lines
643 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
|
||
|
if (!common.hasCrypto) {
|
||
|
console.log('1..0 # Skipped: missing crypto');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const https = require('https');
|
||
|
const net = require('net');
|
||
|
|
||
|
const server = net.createServer(function(s) {
|
||
|
s.once('data', function() {
|
||
|
s.end('I was waiting for you, hello!', function() {
|
||
|
s.destroy();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
server.listen(common.PORT, function() {
|
||
|
const req = https.request({ port: common.PORT });
|
||
|
req.end();
|
||
|
|
||
|
req.once('error', common.mustCall(function(err) {
|
||
|
assert(/unknown protocol/.test(err.message));
|
||
|
server.close();
|
||
|
}));
|
||
|
});
|