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.
38 lines
932 B
38 lines
932 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
|
||
|
if (!common.hasCrypto) {
|
||
|
common.skip('missing crypto');
|
||
|
return;
|
||
|
}
|
||
|
const tls = require('tls');
|
||
|
const net = require('net');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const bonkers = Buffer.alloc(1024, 42);
|
||
|
|
||
|
let tlsClientErrorEmited = false;
|
||
|
|
||
|
const server = tls.createServer({})
|
||
|
.listen(0, function() {
|
||
|
const c = net.connect({ port: this.address().port }, function() {
|
||
|
c.write(bonkers);
|
||
|
});
|
||
|
|
||
|
}).on('tlsClientError', function(e) {
|
||
|
tlsClientErrorEmited = true;
|
||
|
assert.ok(e instanceof Error,
|
||
|
'Instance of Error should be passed to error handler');
|
||
|
assert.ok(e.message.match(
|
||
|
/SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol/),
|
||
|
'Expecting SSL unknown protocol');
|
||
|
});
|
||
|
|
||
|
setTimeout(function() {
|
||
|
server.close();
|
||
|
|
||
|
assert.ok(tlsClientErrorEmited,
|
||
|
'tlsClientError should be emited');
|
||
|
|
||
|
}, common.platformTimeout(200));
|