aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2019-03-29 12:37:40 +0800
committerkumavis <aaron@kumavis.me>2019-03-29 12:37:40 +0800
commite04f0c877ba94c126bbf94622640700c728f74c7 (patch)
treef09eb41f90baec38ae0cebae23beb0663d305366 /test
parenta64855ef4940f1a409b4a168a60d0f5f06836086 (diff)
downloadtangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar.gz
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar.bz2
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar.lz
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar.xz
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.tar.zst
tangerine-wallet-browser-e04f0c877ba94c126bbf94622640700c728f74c7.zip
lib - nodeify - correctly wrap synchronous functions
Diffstat (limited to 'test')
-rw-r--r--test/unit/app/nodeify-test.js49
1 files changed, 45 insertions, 4 deletions
diff --git a/test/unit/app/nodeify-test.js b/test/unit/app/nodeify-test.js
index 938b76c68..0dafc6653 100644
--- a/test/unit/app/nodeify-test.js
+++ b/test/unit/app/nodeify-test.js
@@ -2,16 +2,16 @@ const assert = require('assert')
const nodeify = require('../../../app/scripts/lib/nodeify')
describe('nodeify', function () {
- var obj = {
+ const obj = {
foo: 'bar',
promiseFunc: function (a) {
- var solution = this.foo + a
+ const solution = this.foo + a
return Promise.resolve(solution)
},
}
it('should retain original context', function (done) {
- var nodified = nodeify(obj.promiseFunc, obj)
+ const nodified = nodeify(obj.promiseFunc, obj)
nodified('baz', function (err, res) {
if (!err) {
assert.equal(res, 'barbaz')
@@ -22,7 +22,7 @@ describe('nodeify', function () {
})
})
- it('should allow the last argument to not be a function', function (done) {
+ it('no callback - should allow the last argument to not be a function', function (done) {
const nodified = nodeify(obj.promiseFunc, obj)
try {
nodified('baz')
@@ -31,4 +31,45 @@ describe('nodeify', function () {
done(new Error('should not have thrown if the last argument is not a function'))
}
})
+
+ it('no callback - should asyncly throw an error if underlying function does', function (done) {
+ const nodified = nodeify(async () => { throw new Error('boom!') }, obj)
+ process.prependOnceListener('uncaughtException', function (err) {
+ assert.ok(err, 'got expected error')
+ assert.ok(err.message.includes('boom!'), 'got expected error message')
+ done()
+ })
+ try {
+ nodified('baz')
+ } catch (err) {
+ done(new Error('should not have thrown an error synchronously'))
+ }
+ })
+
+ it('sync functions - returns value', function (done) {
+ const nodified = nodeify(() => 42)
+ try {
+ nodified((err, result) => {
+ if (err) return done(new Error(`should not have thrown any error: ${err.message}`))
+ assert.equal(42, result, 'got expected result')
+ })
+ done()
+ } catch (err) {
+ done(new Error(`should not have thrown any error: ${err.message}`))
+ }
+ })
+
+ it('sync functions - handles errors', function (done) {
+ const nodified = nodeify(() => { throw new Error('boom!') })
+ try {
+ nodified((err, result) => {
+ if (result) return done(new Error('should not have returned any result'))
+ assert.ok(err, 'got expected error')
+ assert.ok(err.message.includes('boom!'), 'got expected error message')
+ })
+ done()
+ } catch (err) {
+ done(new Error(`should not have thrown any error: ${err.message}`))
+ }
+ })
})