Skip to content

Commit

Permalink
test: improve crypto.setEngine coverage to check for errors
Browse files Browse the repository at this point in the history
PR-URL: #11143
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
seppevs authored and MylesBorins committed Mar 9, 2017
1 parent 28111f9 commit 3248cdb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/parallel/test-crypto-engine.js
@@ -0,0 +1,18 @@
'use strict';
const common = require('../common');

if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}

const assert = require('assert');
const crypto = require('crypto');

assert.throws(function() {
crypto.setEngine(true);
}, /^TypeError: "id" argument should be a string$/);

assert.throws(function() {
crypto.setEngine('/path/to/engine', 'notANumber');
}, /^TypeError: "flags" argument should be a number, if present$/);

0 comments on commit 3248cdb

Please sign in to comment.