bitcoinjs-lib/test/transaction_builder.js

303 lines
9 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it, beforeEach */
2014-06-16 08:05:31 +02:00
var assert = require('assert')
var Address = require('../src/address')
2014-06-16 08:05:31 +02:00
var BigInteger = require('bigi')
var bitcoin = require('../src')
2014-06-16 08:05:31 +02:00
var ECKey = require('../src/eckey')
var Script = require('../src/script')
var Transaction = require('../src/transaction')
var TransactionBuilder = require('../src/transaction_builder')
var fixtures = require('./fixtures/transaction_builder')
2015-02-23 00:36:57 +01:00
function construct (txb, f, sign) {
f.inputs.forEach(function (input) {
2015-01-28 07:31:06 +01:00
var prevTxScript
if (input.prevTxScript) {
prevTxScript = Script.fromASM(input.prevTxScript)
}
txb.addInput(input.txId, input.vout, input.sequence, prevTxScript)
})
2015-02-23 00:36:57 +01:00
f.outputs.forEach(function (output) {
2015-01-28 07:31:06 +01:00
var script = Script.fromASM(output.script)
txb.addOutput(script, output.value)
})
if (sign === undefined || sign) {
2015-02-23 00:36:57 +01:00
f.inputs.forEach(function (input, index) {
input.signs.forEach(function (sign) {
var privKey = ECKey.fromWIF(sign.privKey)
var redeemScript
2015-01-28 07:31:06 +01:00
if (sign.redeemScript) {
redeemScript = Script.fromASM(sign.redeemScript)
}
2015-01-28 07:31:06 +01:00
txb.sign(index, privKey, redeemScript, sign.hashType)
2015-01-28 07:31:06 +01:00
})
})
}
// FIXME: add support for locktime/version in TransactionBuilder API
if (f.version !== undefined) {
2015-02-23 00:36:57 +01:00
txb.tx.version = f.version
}
if (f.locktime !== undefined) {
2015-02-23 00:36:57 +01:00
txb.tx.locktime = f.locktime
}
2015-01-28 07:31:06 +01:00
}
2015-02-23 00:36:57 +01:00
describe('TransactionBuilder', function () {
2014-06-16 08:05:31 +02:00
var privAddress, privScript
var prevTx, prevTxHash
var privKey
var txb
2015-02-23 00:36:57 +01:00
beforeEach(function () {
2014-06-16 08:05:31 +02:00
txb = new TransactionBuilder()
prevTx = new Transaction()
prevTx.addOutput(Address.fromBase58Check('1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH').toOutputScript(), 0)
prevTx.addOutput(Address.fromBase58Check('1cMh228HTCiwS8ZsaakH8A8wze1JR5ZsP').toOutputScript(), 1)
2014-06-16 08:05:31 +02:00
prevTxHash = prevTx.getHash()
privKey = new ECKey(BigInteger.ONE, false)
privAddress = privKey.pub.getAddress()
privScript = privAddress.toOutputScript()
})
2015-02-23 00:36:57 +01:00
describe('addInput', function () {
it('accepts a txHash, index [and sequence number]', function () {
var vin = txb.addInput(prevTxHash, 1, 54)
2014-06-16 08:05:31 +02:00
assert.equal(vin, 0)
2015-01-06 06:13:15 +01:00
var txIn = txb.tx.ins[0]
assert.equal(txIn.hash, prevTxHash)
assert.equal(txIn.index, 1)
assert.equal(txIn.sequence, 54)
assert.equal(txb.inputs[0].prevOutScript, undefined)
2014-06-16 08:05:31 +02:00
})
2015-02-23 00:36:57 +01:00
it('accepts a txHash, index [, sequence number and scriptPubKey]', function () {
var vin = txb.addInput(prevTxHash, 1, 54, prevTx.outs[1].script)
2014-06-16 08:05:31 +02:00
assert.equal(vin, 0)
2015-01-06 06:13:15 +01:00
var txIn = txb.tx.ins[0]
assert.equal(txIn.hash, prevTxHash)
assert.equal(txIn.index, 1)
assert.equal(txIn.sequence, 54)
assert.equal(txb.inputs[0].prevOutScript, prevTx.outs[1].script)
2014-06-16 08:05:31 +02:00
})
2015-02-23 00:36:57 +01:00
it('accepts a prevTx, index [and sequence number]', function () {
var vin = txb.addInput(prevTx, 1, 54)
2014-06-16 08:05:31 +02:00
assert.equal(vin, 0)
2015-01-06 06:13:15 +01:00
var txIn = txb.tx.ins[0]
assert.deepEqual(txIn.hash, prevTxHash)
assert.equal(txIn.index, 1)
assert.equal(txIn.sequence, 54)
assert.equal(txb.inputs[0].prevOutScript, prevTx.outs[1].script)
2014-06-16 08:05:31 +02:00
})
2015-02-23 00:36:57 +01:00
it('returns the input index', function () {
2014-06-16 08:05:31 +02:00
assert.equal(txb.addInput(prevTxHash, 0), 0)
assert.equal(txb.addInput(prevTxHash, 1), 1)
})
2015-02-23 00:36:57 +01:00
it('throws if SIGHASH_ALL has been used to sign any existing scriptSigs', function () {
2014-06-16 08:05:31 +02:00
txb.addInput(prevTxHash, 0)
txb.sign(0, privKey)
2015-02-23 00:36:57 +01:00
assert.throws(function () {
2014-06-16 08:05:31 +02:00
txb.addInput(prevTxHash, 0)
}, /No, this would invalidate signatures/)
})
})
2015-02-23 00:36:57 +01:00
describe('addOutput', function () {
it('accepts an address string and value', function () {
var vout = txb.addOutput(privAddress.toBase58Check(), 1000)
assert.equal(vout, 0)
var txout = txb.tx.outs[0]
assert.deepEqual(txout.script, privScript)
assert.equal(txout.value, 1000)
})
it('accepts an Address object and value', function () {
var vout = txb.addOutput(privAddress, 1000)
assert.equal(vout, 0)
var txout = txb.tx.outs[0]
assert.deepEqual(txout.script, privScript)
assert.equal(txout.value, 1000)
})
it('accepts a ScriptPubKey and value', function () {
var vout = txb.addOutput(privScript, 1000)
assert.equal(vout, 0)
var txout = txb.tx.outs[0]
assert.deepEqual(txout.script, privScript)
assert.equal(txout.value, 1000)
})
2015-02-23 00:36:57 +01:00
it('throws if SIGHASH_ALL has been used to sign any existing scriptSigs', function () {
2014-06-16 08:05:31 +02:00
txb.addInput(prevTxHash, 0)
2014-12-12 06:31:47 +01:00
txb.addOutput(privScript, 2000)
2014-06-16 08:05:31 +02:00
txb.sign(0, privKey)
2015-02-23 00:36:57 +01:00
assert.throws(function () {
2014-06-16 08:05:31 +02:00
txb.addOutput(privScript, 9000)
}, /No, this would invalidate signatures/)
})
})
2015-02-23 00:36:57 +01:00
describe('sign', function () {
fixtures.invalid.sign.forEach(function (f) {
it('throws on ' + f.exception + ' (' + f.description + ')', function () {
2015-01-28 07:31:06 +01:00
construct(txb, f, false)
2015-02-23 00:36:57 +01:00
f.inputs.forEach(function (input, index) {
input.signs.forEach(function (sign) {
var privKey = ECKey.fromWIF(sign.privKey)
var redeemScript
if (sign.redeemScript) {
redeemScript = Script.fromASM(sign.redeemScript)
}
if (!sign.throws) {
txb.sign(index, privKey, redeemScript, sign.hashType)
} else {
2015-02-23 00:36:57 +01:00
assert.throws(function () {
txb.sign(index, privKey, redeemScript, sign.hashType)
}, new RegExp(f.exception))
}
})
})
})
})
2014-06-16 08:05:31 +02:00
})
2015-02-23 00:36:57 +01:00
describe('build', function () {
fixtures.valid.build.forEach(function (f) {
it('builds "' + f.description + '"', function () {
2015-01-28 07:31:06 +01:00
construct(txb, f)
2014-06-16 08:05:31 +02:00
var tx = txb.build()
2015-01-06 06:13:15 +01:00
assert.equal(tx.toHex(), f.txHex)
2014-06-16 08:05:31 +02:00
})
})
2015-02-23 00:36:57 +01:00
fixtures.invalid.build.forEach(function (f) {
describe('for ' + (f.description || f.exception), function () {
beforeEach(function () {
2015-01-28 07:31:06 +01:00
if (f.txHex) {
var tx = Transaction.fromHex(f.txHex)
txb = TransactionBuilder.fromTransaction(tx)
} else {
construct(txb, f)
}
})
2014-06-16 08:05:31 +02:00
2015-02-23 00:36:57 +01:00
it('throws', function () {
assert.throws(function () {
2015-01-28 07:31:06 +01:00
txb.build()
}, new RegExp(f.exception))
})
2014-06-16 08:05:31 +02:00
2015-01-28 07:31:06 +01:00
if (f.alwaysThrows) return
2015-02-23 00:36:57 +01:00
it("doesn't throw if building incomplete", function () {
2015-01-28 07:31:06 +01:00
txb.buildIncomplete()
})
})
2014-06-16 08:05:31 +02:00
})
})
describe('multisig', function () {
fixtures.valid.multisig.forEach(function (f) {
it(f.description, function () {
var signs = 0
f.inputs.forEach(function (input) {
txb.addInput(input.txId, input.vout)
signs = Math.max(signs, input.signs.length)
})
2015-03-10 10:17:11 +01:00
f.outputs.forEach(function (output) {
txb.addOutput(Script.fromASM(output.script), output.value)
})
var tx
for (var i = 0; i < signs; i++) {
if (tx) {
txb = TransactionBuilder.fromTransaction(tx)
}
f.inputs.forEach(function (input, index) {
var privKey = bitcoin.ECKey.fromWIF(input.signs[i].privKey)
var redeemScript = bitcoin.Script.fromASM(input.redeemScript)
2015-03-10 10:17:11 +01:00
txb.sign(index, privKey, redeemScript)
})
tx = txb.buildIncomplete()
f.inputs.forEach(function (input, index) {
assert(bitcoin.scripts.isCanonicalSignature(tx.ins[index].script.chunks[input.signs[i].pubKeyIndex + 1]))
assert(tx.ins[index].script.chunks.slice(1, -1).every(function (chunk) {
return chunk === bitcoin.opcodes.OP_0 || bitcoin.scripts.isCanonicalSignature(chunk)
}))
})
// manually mess up the signatures
f.inputs.forEach(function (input, index) {
// remove all OP_0s
if (input.signs[i].removeOp0s) {
tx.ins[index].script.chunks = tx.ins[index].script.chunks.filter(function (chunk) {
return chunk !== bitcoin.opcodes.OP_0
})
// we removed one OP_0 too many, gotta add it back
tx.ins[index].script.chunks.unshift(bitcoin.opcodes.OP_0)
}
})
}
assert.equal(tx.toHex(), f.txHexIncomplete, 'txHexIncomplete')
tx = txb.build()
assert.equal(tx.toHex(), f.txHexComplete, 'txHexComplete')
})
})
})
2015-02-23 00:36:57 +01:00
describe('fromTransaction', function () {
fixtures.valid.build.forEach(function (f) {
it('builds the correct TransactionBuilder for ' + f.description, function () {
2015-01-06 06:13:15 +01:00
var tx = Transaction.fromHex(f.txHex)
var txb = TransactionBuilder.fromTransaction(tx)
2015-01-06 06:13:15 +01:00
assert.equal(txb.build().toHex(), f.txHex)
})
})
2014-07-28 07:40:07 +02:00
2015-02-23 00:36:57 +01:00
fixtures.invalid.fromTransaction.forEach(function (f) {
it('throws on ' + f.exception, function () {
var tx = Transaction.fromHex(f.txHex)
2015-02-23 00:36:57 +01:00
assert.throws(function () {
TransactionBuilder.fromTransaction(tx)
}, new RegExp(f.exception))
})
})
})
2014-06-16 08:05:31 +02:00
})