-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: refactor test-tls-friendly-error-message.js
Replaces var with const and adds common.mustCall(). PR-URL: #9967 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
'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 key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'); | ||
var cert = fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'); | ||
const key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.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(); | ||
this.close(); | ||
}).listen(0, function() { | ||
})).listen(0, common.mustCall(function() { | ||
var options = { port: this.address().port, rejectUnauthorized: true }; | ||
tls.connect(options).on('error', common.mustCall(function(err) { | ||
assert.equal(err.code, 'UNABLE_TO_VERIFY_LEAF_SIGNATURE'); | ||
assert.equal(err.message, 'unable to verify the first certificate'); | ||
assert.strictEqual(err.code, 'UNABLE_TO_VERIFY_LEAF_SIGNATURE'); | ||
assert.strictEqual(err.message, 'unable to verify the first certificate'); | ||
this.destroy(); | ||
})); | ||
}); | ||
})); |