mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

This patch uses `return` statement to skip the test instead of using `process.exit` call. PR-URL: https://github.com/nodejs/io.js/pull/2109 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
31 lines
593 B
JavaScript
31 lines
593 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var domain = require('domain');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: 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);
|
|
});
|