mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 19:49:19 +00:00

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
31 lines
577 B
JavaScript
31 lines
577 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var domain = require('domain');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var crypto = require('crypto');
|
|
|
|
function test(fn) {
|
|
var ex = new Error('BAM');
|
|
var d = domain.create();
|
|
d.on('error', common.mustCall(function(err) {
|
|
assert.equal(err, ex);
|
|
}));
|
|
var cb = common.mustCall(function() {
|
|
throw ex;
|
|
});
|
|
d.run(cb);
|
|
}
|
|
|
|
test(function(cb) {
|
|
crypto.pbkdf2('password', 'salt', 1, 8, cb);
|
|
});
|
|
|
|
test(function(cb) {
|
|
crypto.randomBytes(32, cb);
|
|
});
|