Typechecking indexes

As a consequence, it will not allow accidentally double-hardened indexes.

It also won't allow strings or forgotten parameters.
This commit is contained in:
Karel Bilek 2016-02-06 17:12:13 +01:00
parent 75bd8331cd
commit 4a72001335
3 changed files with 51 additions and 0 deletions

View file

@ -327,5 +327,47 @@ describe('HDNode', function () {
master.deriveHardened(c.m)
}, /Could not derive hardened child key/)
})
it('throws on negative indexes', function () {
var f = fixtures.valid[0]
var master = HDNode.fromBase58(f.master.base58, NETWORKS_LIST)
assert.throws(function () {
master.deriveHardened(-1)
}, /Expected UInt31/)
assert.throws(function () {
master.derive(-1)
}, /Expected UInt32/)
})
it('throws on high indexes', function () {
var f = fixtures.valid[0]
var master = HDNode.fromBase58(f.master.base58, NETWORKS_LIST)
assert.throws(function () {
master.deriveHardened(0x80000000)
}, /Expected UInt31/)
assert.throws(function () {
master.derive(0x100000000)
}, /Expected UInt32/)
})
it('throws on non-numbers', function () {
var f = fixtures.valid[0]
var master = HDNode.fromBase58(f.master.base58, NETWORKS_LIST)
assert.throws(function () {
master.deriveHardened()
}, /Expected UInt31/)
assert.throws(function () {
master.derive()
}, /Expected UInt32/)
assert.throws(function () {
master.deriveHardened('foo')
}, /Expected UInt31/)
assert.throws(function () {
master.derive('foo')
}, /Expected UInt32/)
})
})
})