Added a test verifying innerError

This commit is contained in:
Justin Chase 2017-11-24 16:12:37 -06:00
parent bee9928e54
commit bf6c2b9319
2 changed files with 18 additions and 1 deletions

View File

@ -551,7 +551,10 @@ function onError(message, error) {
// log the stack trace
if (config.debug) { console.error(error.stack); }
// rethrow new high level error for api users
throw new Error(message + ': ' + error.message);
const newError = new Error(message + ': ' + error.message);
newError.stack += '\n' + error.stack;
newError.innerError = error;
throw newError;
}
/**

View File

@ -1200,6 +1200,20 @@ describe('OpenPGP.js public api tests', function() {
});
});
});
describe('Errors', function() {
it('Errors should contain innerError', function(done) {
openpgp.encrypt({
data: new Uint8Array([0x01, 0x01, 0x01]),
passwords: null
})
.then(() => done(new Error('Error expected.')))
.catch(function(error){
expect(error.innerError).to.exist;
done();
});
});
})
}
});