node/test/parallel/test-tls-timeout-server-2.js
Devon Rifkin 7a38e49341 test: refactor test-tls-timeout-server-2
* Use `common.mustCall` for all callbacks
* Use `const` instead of `var`

PR-URL: https://github.com/nodejs/node/pull/9876
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-12-04 14:50:42 -08:00

33 lines
757 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
const tls = require('tls');
const fs = require('fs');
const options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
const server = tls.createServer(options, common.mustCall(function(cleartext) {
const s = cleartext.setTimeout(50, function() {
cleartext.destroy();
server.close();
});
assert.ok(s instanceof tls.TLSSocket);
}));
server.listen(0, common.mustCall(function() {
tls.connect({
host: '127.0.0.1',
port: this.address().port,
rejectUnauthorized: false
});
}));