bitcoinjs-lib/test/bitcoin.core.js

242 lines
7 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it */
2015-02-23 00:36:57 +01:00
var assert = require('assert')
2014-10-15 13:36:10 +02:00
var base58 = require('bs58')
var Bitcoin = require('../')
var Address = Bitcoin.Address
var Block = Bitcoin.Block
2015-03-02 06:48:36 +01:00
var ECPair = Bitcoin.ECPair
2014-10-15 13:36:10 +02:00
var ECSignature = Bitcoin.ECSignature
var Transaction = Bitcoin.Transaction
var Script = Bitcoin.Script
var bufferutils = Bitcoin.bufferutils
var networks = Bitcoin.networks
2015-02-23 00:36:57 +01:00
var base58_encode_decode = require('./fixtures/core/base58_encode_decode.json')
var base58_keys_invalid = require('./fixtures/core/base58_keys_invalid.json')
var base58_keys_valid = require('./fixtures/core/base58_keys_valid.json')
var blocks_valid = require('./fixtures/core/blocks.json')
2015-02-23 00:36:57 +01:00
var sig_canonical = require('./fixtures/core/sig_canonical.json')
var sig_noncanonical = require('./fixtures/core/sig_noncanonical.json')
var sighash = require('./fixtures/core/sighash.json')
var tx_valid = require('./fixtures/core/tx_valid.json')
2015-02-23 00:36:57 +01:00
describe('Bitcoin-core', function () {
// base58_encode_decode
2015-02-23 00:36:57 +01:00
describe('base58', function () {
base58_encode_decode.forEach(function (f) {
var fhex = f[0]
var fb58 = f[1]
2015-02-23 00:36:57 +01:00
it('can decode ' + fb58, function () {
var buffer = base58.decode(fb58)
2014-10-03 11:11:38 +02:00
var actual = new Buffer(buffer).toString('hex')
assert.equal(actual, fhex)
})
2015-02-23 00:36:57 +01:00
it('can encode ' + fhex, function () {
var buffer = new Buffer(fhex, 'hex')
var actual = base58.encode(buffer)
assert.equal(actual, fb58)
})
})
})
// base58_keys_valid
2015-02-23 00:36:57 +01:00
describe('Address', function () {
var typeMap = {
'pubkey': 'pubKeyHash',
'script': 'scriptHash'
}
base58_keys_valid.forEach(function (f) {
var string = f[0]
var hex = f[1]
var params = f[2]
var network = networks.bitcoin
if (params.isPrivkey) return
2015-02-23 00:36:57 +01:00
if (params.isTestnet)
network = networks.testnet
2015-02-23 00:36:57 +01:00
it('can import ' + string, function () {
var address = Address.fromBase58Check(string)
assert.equal(address.hash.toString('hex'), hex)
2015-02-23 00:36:57 +01:00
assert.equal(address.version, network[typeMap[params.addrType]])
})
})
})
// base58_keys_invalid
2015-02-23 00:36:57 +01:00
describe('Address', function () {
var allowedNetworks = [
2014-06-13 16:30:13 +02:00
networks.bitcoin.pubkeyhash,
networks.bitcoin.scripthash,
networks.testnet.pubkeyhash,
networks.testnet.scripthash
]
2015-02-23 00:36:57 +01:00
base58_keys_invalid.forEach(function (f) {
var string = f[0]
2015-02-23 00:36:57 +01:00
it('throws on ' + string, function () {
assert.throws(function () {
var address = Address.fromBase58Check(string)
assert.notEqual(allowedNetworks.indexOf(address.version), -1, 'Invalid network')
}, /Invalid (checksum|hash length|network)/)
})
})
})
// base58_keys_valid
2015-03-02 06:48:36 +01:00
describe('ECPair', function () {
2015-02-23 00:36:57 +01:00
base58_keys_valid.forEach(function (f) {
var string = f[0]
var hex = f[1]
var params = f[2]
if (!params.isPrivkey) return
2015-03-02 06:48:36 +01:00
var keyPair = ECPair.fromWIF(string)
2015-04-28 02:47:29 +02:00
it('imports ' + string, function () {
2015-03-02 06:48:36 +01:00
assert.equal(keyPair.d.toHex(), hex)
assert.equal(keyPair.compressed, params.isCompressed)
})
2015-02-23 00:36:57 +01:00
it('exports ' + hex + ' to ' + string, function () {
2015-03-02 06:48:36 +01:00
assert.equal(keyPair.toWIF(), string)
})
})
})
// base58_keys_invalid
2015-03-02 06:48:36 +01:00
describe('ECPair', function () {
var allowedNetworks = [
2015-03-02 06:48:36 +01:00
networks.bitcoin,
networks.testnet
]
2015-02-23 00:36:57 +01:00
base58_keys_invalid.forEach(function (f) {
var string = f[0]
2015-02-23 00:36:57 +01:00
it('throws on ' + string, function () {
assert.throws(function () {
2015-03-02 06:48:36 +01:00
var keyPair = ECPair.fromWIF(string)
2015-03-02 06:48:36 +01:00
assert(allowedNetworks.indexOf(keyPair.network) > -1, 'Invalid network')
}, /(Invalid|Unknown) (checksum|compression flag|network|WIF payload)/)
})
})
})
describe('Block', function () {
blocks_valid.forEach(function (f) {
it('fromHex can parse ' + f.id, function () {
var block = Block.fromHex(f.hex)
assert.equal(block.getId(), f.id)
assert.equal(block.transactions.length, f.transactions)
})
})
})
// tx_valid
2015-02-23 00:36:57 +01:00
describe('Transaction', function () {
tx_valid.forEach(function (f) {
// Objects that are only a single string are ignored
if (f.length === 1) return
var inputs = f[0]
var fhex = f[1]
2015-02-23 00:36:57 +01:00
// var verifyFlags = f[2] // TODO: do we need to test this?
2015-02-23 00:36:57 +01:00
it('can decode ' + fhex, function () {
var transaction = Transaction.fromHex(fhex)
transaction.ins.forEach(function (txIn, i) {
var input = inputs[i]
// reverse because test data is big-endian
var prevOutHash = bufferutils.reverse(new Buffer(input[0], 'hex'))
var prevOutIndex = input[1]
2015-02-23 00:36:57 +01:00
// var prevOutScriptPubKey = input[2] // TODO: we don't have a ASM parser
assert.deepEqual(txIn.hash, prevOutHash)
// we read UInt32, not Int32
assert.equal(txIn.index & 0xffffffff, prevOutIndex)
})
})
})
})
// sighash
2015-02-23 00:36:57 +01:00
describe('Transaction', function () {
sighash.forEach(function (f) {
// Objects that are only a single string are ignored
if (f.length === 1) return
var txHex = f[0]
var scriptHex = f[1]
var inIndex = f[2]
var hashType = f[3]
// reverse because test data is big-endian
var expectedHash = bufferutils.reverse(new Buffer(f[4], 'hex'))
2015-04-28 02:38:10 +02:00
var hashTypes = []
if ((hashType & 0x1f) === Transaction.SIGHASH_NONE) hashTypes.push('SIGHASH_NONE')
else if ((hashType & 0x1f) === Transaction.SIGHASH_SINGLE) hashTypes.push('SIGHASH_SINGLE')
else hashTypes.push('SIGHASH_ALL')
if (hashType & Transaction.SIGHASH_ANYONECANPAY) hashTypes.push('SIGHASH_ANYONECANPAY')
var hashTypeName = hashTypes.join(' | ')
it('should hash ' + txHex.slice(0, 40) + '... (' + hashTypeName + ')', function () {
var transaction = Transaction.fromHex(txHex)
assert.equal(transaction.toHex(), txHex)
var script = Script.fromHex(scriptHex)
assert.equal(script.toHex(), scriptHex)
2015-04-28 02:38:10 +02:00
var hash = transaction.hashForSignature(inIndex, script, hashType)
assert.deepEqual(hash, expectedHash)
})
})
})
2015-02-23 00:36:57 +01:00
describe('ECSignature', function () {
sig_canonical.forEach(function (hex) {
var buffer = new Buffer(hex, 'hex')
2015-02-23 00:36:57 +01:00
it('can parse ' + hex, function () {
var parsed = ECSignature.parseScriptSignature(buffer)
var actual = parsed.signature.toScriptSignature(parsed.hashType)
assert.equal(actual.toString('hex'), hex)
})
})
2015-02-23 00:36:57 +01:00
sig_noncanonical.forEach(function (hex, i) {
if (i === 0) return
if (i % 2 !== 0) return
var description = sig_noncanonical[i - 1].slice(0, -1)
if (description === 'too long') return // we support non secp256k1 signatures
var buffer = new Buffer(hex, 'hex')
2015-02-23 00:36:57 +01:00
it('throws on ' + description, function () {
assert.throws(function () {
ECSignature.parseScriptSignature(buffer)
})
})
})
})
})