Skip to content

Commit

Permalink
test: refactor test-tls-timeout-server-2
Browse files Browse the repository at this point in the history
* Use `common.mustCall` for all callbacks
* Use `const` instead of `var`

PR-URL: #9876
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
drifkin authored and addaleax committed Dec 8, 2016
1 parent e674704 commit 7fa3b6f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions test/parallel/test-tls-timeout-server-2.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
'use strict';
var common = require('../common');
var assert = require('assert');
const common = require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');
const tls = require('tls');

var fs = require('fs');
const fs = require('fs');

var options = {
const 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(cleartext) {
var s = cleartext.setTimeout(50, function() {
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, function() {
server.listen(0, common.mustCall(function() {
tls.connect({
host: '127.0.0.1',
port: this.address().port,
rejectUnauthorized: false
});
});
}));

0 comments on commit 7fa3b6f

Please sign in to comment.