mirror of https://github.com/lukechilds/node.git
Browse Source
Replaces var with const and adds common.mustCall(). PR-URL: https://github.com/nodejs/node/pull/9967 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>v6
committed by
cjihrig
1 changed files with 11 additions and 11 deletions
@ -1,26 +1,26 @@ |
|||||
'use strict'; |
'use strict'; |
||||
var common = require('../common'); |
const common = require('../common'); |
||||
var assert = require('assert'); |
const assert = require('assert'); |
||||
|
|
||||
if (!common.hasCrypto) { |
if (!common.hasCrypto) { |
||||
common.skip('missing crypto'); |
common.skip('missing crypto'); |
||||
return; |
return; |
||||
} |
} |
||||
var tls = require('tls'); |
const tls = require('tls'); |
||||
|
|
||||
var fs = require('fs'); |
const fs = require('fs'); |
||||
|
|
||||
var key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'); |
const key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'); |
||||
var cert = fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'); |
const cert = fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'); |
||||
|
|
||||
tls.createServer({ key: key, cert: cert }, function(conn) { |
tls.createServer({ key: key, cert: cert }, common.mustCall(function(conn) { |
||||
conn.end(); |
conn.end(); |
||||
this.close(); |
this.close(); |
||||
}).listen(0, function() { |
})).listen(0, common.mustCall(function() { |
||||
var options = { port: this.address().port, rejectUnauthorized: true }; |
var options = { port: this.address().port, rejectUnauthorized: true }; |
||||
tls.connect(options).on('error', common.mustCall(function(err) { |
tls.connect(options).on('error', common.mustCall(function(err) { |
||||
assert.equal(err.code, 'UNABLE_TO_VERIFY_LEAF_SIGNATURE'); |
assert.strictEqual(err.code, 'UNABLE_TO_VERIFY_LEAF_SIGNATURE'); |
||||
assert.equal(err.message, 'unable to verify the first certificate'); |
assert.strictEqual(err.message, 'unable to verify the first certificate'); |
||||
this.destroy(); |
this.destroy(); |
||||
})); |
})); |
||||
}); |
})); |
||||
|
Loading…
Reference in new issue