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
782 B
38 lines
782 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
|
|
var hadTimeout = false;
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
var server = tls.Server(options, function(socket) {
|
|
socket.setTimeout(100);
|
|
|
|
socket.on('timeout', function(err) {
|
|
hadTimeout = true;
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var socket = tls.connect({
|
|
port: common.PORT,
|
|
rejectUnauthorized: false
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(hadTimeout);
|
|
});
|
|
|