mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3038b8ee6a
The test is timing dependent, ensure that it won't fail on the busy CI boxes. Fix: https://github.com/iojs/io.js/issues/1200 PR-URL: https://github.com/iojs/io.js/pull/1201 Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
39 lines
859 B
JavaScript
39 lines
859 B
JavaScript
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 net = require('net');
|
|
var fs = require('fs');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
var server = tls.createServer(options, function(c) {
|
|
setTimeout(function() {
|
|
c.write('hello');
|
|
setTimeout(function() {
|
|
c.destroy();
|
|
server.close();
|
|
}, 150);
|
|
}, 150);
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var socket = net.connect(common.PORT, function() {
|
|
socket.setTimeout(240, assert.fail);
|
|
|
|
var tsocket = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
});
|
|
tsocket.resume();
|
|
});
|
|
});
|