bitcoinjs-lib/test/base58check.js

53 lines
1.4 KiB
JavaScript
Raw Normal View History

var assert = require('assert')
var base58check = require('../src/base58check')
2014-05-18 11:47:39 +02:00
var fixtures = require('./fixtures/base58check.json')
function b2h(b) { return new Buffer(b).toString('hex') }
function h2b(h) { return new Buffer(h, 'hex') }
2014-04-19 21:41:20 +02:00
describe('base58check', function() {
describe('decode', function() {
it('can decode Bitcoin core test data', function() {
2014-04-19 21:41:20 +02:00
fixtures.valid.forEach(function(f) {
var actual = base58check.decode(f.string)
var expected = {
version: f.decode.version,
payload: h2b(f.decode.payload),
checksum: h2b(f.decode.checksum)
}
assert.deepEqual(actual, expected)
2014-04-19 21:41:20 +02:00
})
})
fixtures.invalid.forEach(function(f) {
it('throws on ' + f.description, function() {
2014-04-19 21:41:20 +02:00
assert.throws(function() {
base58check.decode(f.string)
})
})
})
it('throws on [invalid] Bitcoin core test data', function() {
fixtures.invalid2.forEach(function(f) {
assert.throws(function() {
base58check.decode(f.string)
2014-04-19 21:41:20 +02:00
})
})
})
})
describe('encode', function() {
it('can encode Bitcoin core test data', function() {
2014-04-19 21:41:20 +02:00
fixtures.valid.forEach(function(f) {
var actual = base58check.encode(h2b(f.decode.payload), f.decode.version)
var expected = f.string
2014-04-19 21:41:20 +02:00
assert.strictEqual(actual, expected)
})
})
})
})