bitcoinjs-lib/test/address.js

95 lines
2.8 KiB
JavaScript
Raw Normal View History

2014-03-07 00:21:42 +01:00
var assert = require('assert')
var networks = require('../src/networks')
var Address = require('../src/address')
var Script = require('../src/script')
2014-05-18 11:47:39 +02:00
var fixtures = require('./fixtures/address.json')
2014-03-07 00:21:42 +01:00
describe('Address', function() {
describe('Constructor', function() {
it('does not mutate the input', function() {
fixtures.valid.forEach(function(f) {
var hash = new Buffer(f.hex, 'hex')
var addr = new Address(hash, f.version)
2014-03-31 05:47:47 +02:00
assert.equal(addr.version, f.version)
assert.equal(addr.hash.toString('hex'), f.hex)
})
2014-03-31 05:47:47 +02:00
})
})
describe('fromBase58Check', function() {
fixtures.valid.forEach(function(f) {
it('imports ' + f.description + '(' + f.network + ') correctly', function() {
var addr = Address.fromBase58Check(f.base58check)
2014-03-31 05:47:47 +02:00
assert.equal(addr.version, f.version)
assert.equal(addr.hash.toString('hex'), f.hex)
})
2014-03-06 02:45:56 +01:00
})
fixtures.invalid.fromBase58Check.forEach(function(f) {
2014-06-04 07:30:53 +02:00
it('throws on ' + f.description, function() {
assert.throws(function() {
Address.fromBase58Check(f.base58check)
}, new RegExp(f.exception))
})
})
2014-03-31 05:47:47 +02:00
})
describe('fromOutputScript', function() {
fixtures.valid.forEach(function(f) {
it('imports ' + f.description + '(' + f.network + ') correctly', function() {
var script = Script.fromHex(f.script)
var addr = Address.fromOutputScript(script, networks[f.network])
assert.equal(addr.version, f.version)
assert.equal(addr.hash.toString('hex'), f.hex)
})
})
fixtures.invalid.fromOutputScript.forEach(function(f) {
it('throws when ' + f.description, function() {
var script = Script.fromHex(f.hex)
assert.throws(function() {
Address.fromOutputScript(script)
}, new RegExp(f.description))
})
})
})
describe('toBase58Check', function() {
fixtures.valid.forEach(function(f) {
it('exports ' + f.description + '(' + f.network + ') correctly', function() {
var addr = Address.fromBase58Check(f.base58check)
var result = addr.toBase58Check()
2014-03-06 02:45:56 +01:00
assert.equal(result, f.base58check)
})
})
2014-03-31 05:47:47 +02:00
})
describe('toOutputScript', function() {
fixtures.valid.forEach(function(f) {
it('imports ' + f.description + '(' + f.network + ') correctly', function() {
var addr = Address.fromBase58Check(f.base58check)
var script = addr.toOutputScript()
assert.equal(script.toHex(), f.script)
})
})
fixtures.invalid.toOutputScript.forEach(function(f) {
it('throws when ' + f.description, function() {
var addr = new Address(new Buffer(f.hex, 'hex'), f.version)
assert.throws(function() {
addr.toOutputScript()
}, new RegExp(f.description))
})
})
})
})