A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/test/unit/app/nodeify-test.js

75 lines
1.8 KiB

import assert from 'assert'
import nodeify from '../../../app/scripts/lib/nodeify'
8 years ago
8 years ago
describe('nodeify', function () {
const obj = {
8 years ago
foo: 'bar',
promiseFunc(a) {
const solution = this.foo + a
8 years ago
return Promise.resolve(solution)
8 years ago
},
8 years ago
}
8 years ago
it('should retain original context', function (done) {
const nodified = nodeify(obj.promiseFunc, obj)
nodified('baz', (err, res) => {
6 years ago
if (!err) {
assert.equal(res, 'barbaz')
done()
return
6 years ago
}
done(new Error(err.toString()))
8 years ago
})
})
it('no callback - should allow the last argument to not be a function', function (done) {
const nodified = nodeify(obj.promiseFunc, obj)
try {
nodified('baz')
done()
} catch (err) {
done(
new Error(
'should not have thrown if the last argument is not a function',
),
)
}
})
it('sync functions - returns value', function (done) {
const nodified = nodeify(() => 42)
try {
nodified((err, result) => {
if (err) {
done(new Error(`should not have thrown any error: ${err.message}`))
return
}
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) {
done(new Error('should not have returned any result'))
return
}
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}`))
}
})
8 years ago
})