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.
38 lines
1015 B
38 lines
1015 B
var assert = require('assert')
|
|
var base58 = require('../src/base58')
|
|
var fixtures = require('./fixtures/base58')
|
|
|
|
function b2h(b) { return new Buffer(b).toString('hex') }
|
|
function h2b(h) { return new Buffer(h, 'hex') }
|
|
|
|
describe('base58', function() {
|
|
describe('decode', function() {
|
|
it('can decode Bitcoin core test data', function() {
|
|
fixtures.valid.forEach(function(f) {
|
|
var actual = base58.decode(f.string)
|
|
var expected = f.hex
|
|
|
|
assert.strictEqual(b2h(actual), expected)
|
|
})
|
|
})
|
|
|
|
fixtures.invalid.forEach(function(f) {
|
|
it('throws on ' + f.description, function() {
|
|
assert.throws(function() {
|
|
base58.decode(f.string)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('encode', function() {
|
|
it('can encode Bitcoin core test data', function() {
|
|
fixtures.valid.forEach(function(f) {
|
|
var actual = base58.encode(h2b(f.hex))
|
|
var expected = f.string.trim()
|
|
|
|
assert.strictEqual(actual, expected)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|