Browse Source

tests: add test for non-matching network

hk-custom-address
Daniel Cousens 10 years ago
parent
commit
1ac79b8327
  1. 5
      test/fixtures/hdnode.json
  2. 4
      test/hdnode.js

5
test/fixtures/hdnode.json

@ -201,6 +201,11 @@
{
"exception": "Could not find version 0",
"string": "1111111111111adADjFaSNPxwXqLjHLj4mBfYxuewDPbw9hEj1uaXCzMxRPXDFF3cUoezTFYom4sEmEVSQmENPPR315cFk9YUFVek73wE9"
},
{
"exception": "Network doesn\\'t match",
"string": "Ltpv73XYpw28ZyVe2zEVyiFnxUZxoKLGQNdZ8NxUi1WcqjNmMBgtLbh3KimGSnPHCoLv1RmvxHs4dnKmo1oXQ8dXuDu8uroxrbVxZPA1gXboYvx",
"network": "bitcoin"
}
],
"fromBuffer": [

4
test/hdnode.js

@ -135,7 +135,9 @@ describe('HDNode', function() {
fixtures.invalid.fromBase58.forEach(function(f) {
it('throws on ' + f.string, function() {
assert.throws(function() {
HDNode.fromBase58(f.string)
var network = networks[f.network]
HDNode.fromBase58(f.string, network)
}, new RegExp(f.exception))
})
})

Loading…
Cancel
Save