tests: refactor multisig test construction
This commit is contained in:
parent
7cd60aaba3
commit
e80f4803d9
2 changed files with 33 additions and 38 deletions
4
test/fixtures/transaction_builder.json
vendored
4
test/fixtures/transaction_builder.json
vendored
|
@ -442,10 +442,10 @@
|
||||||
"signs": [
|
"signs": [
|
||||||
{
|
{
|
||||||
"pubKeyIndex": 2,
|
"pubKeyIndex": 2,
|
||||||
"privKey": "91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgx3cTMqe",
|
"privKey": "91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgx3cTMqe"
|
||||||
"removeOp0s": true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"filterOP_0": true,
|
||||||
"pubKeyIndex": 0,
|
"pubKeyIndex": 0,
|
||||||
"privKey": "91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgwmaKkrx"
|
"privKey": "91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgwmaKkrx"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
/* global describe, it, beforeEach */
|
/* global describe, it, beforeEach */
|
||||||
|
|
||||||
var assert = require('assert')
|
var assert = require('assert')
|
||||||
|
var ops = require('../src/opcodes')
|
||||||
|
var scripts = require('../src/scripts')
|
||||||
|
|
||||||
var Address = require('../src/address')
|
var Address = require('../src/address')
|
||||||
var BigInteger = require('bigi')
|
var BigInteger = require('bigi')
|
||||||
var bitcoin = require('../src')
|
|
||||||
var ECKey = require('../src/eckey')
|
var ECKey = require('../src/eckey')
|
||||||
var Script = require('../src/script')
|
var Script = require('../src/script')
|
||||||
var Transaction = require('../src/transaction')
|
var Transaction = require('../src/transaction')
|
||||||
|
@ -225,51 +227,44 @@ describe('TransactionBuilder', function () {
|
||||||
describe('multisig', function () {
|
describe('multisig', function () {
|
||||||
fixtures.valid.multisig.forEach(function (f) {
|
fixtures.valid.multisig.forEach(function (f) {
|
||||||
it(f.description, function () {
|
it(f.description, function () {
|
||||||
var signs = 0
|
construct(txb, f, false)
|
||||||
f.inputs.forEach(function (input) {
|
|
||||||
txb.addInput(input.txId, input.vout)
|
|
||||||
signs = Math.max(signs, input.signs.length)
|
|
||||||
})
|
|
||||||
|
|
||||||
f.outputs.forEach(function (output) {
|
|
||||||
txb.addOutput(Script.fromASM(output.script), output.value)
|
|
||||||
})
|
|
||||||
|
|
||||||
var tx
|
var tx
|
||||||
|
|
||||||
for (var i = 0; i < signs; i++) {
|
f.inputs.forEach(function (input, i) {
|
||||||
if (tx) {
|
var redeemScript = Script.fromASM(input.redeemScript)
|
||||||
txb = TransactionBuilder.fromTransaction(tx)
|
|
||||||
}
|
|
||||||
|
|
||||||
f.inputs.forEach(function (input, index) {
|
input.signs.forEach(function (sign) {
|
||||||
var privKey = bitcoin.ECKey.fromWIF(input.signs[i].privKey)
|
// rebuild the transaction each-time after the first
|
||||||
var redeemScript = bitcoin.Script.fromASM(input.redeemScript)
|
if (tx) {
|
||||||
txb.sign(index, privKey, redeemScript)
|
// do we filter OP_0's beforehand?
|
||||||
})
|
if (sign.filterOP_0) {
|
||||||
|
var scriptSig = tx.ins[i].script
|
||||||
|
|
||||||
tx = txb.buildIncomplete()
|
// ignore OP_0 on the front, ignore redeemScript
|
||||||
|
var signatures = scriptSig.chunks.slice(1, -1).filter(function(x) { return x !== ops.OP_0 })
|
||||||
|
|
||||||
f.inputs.forEach(function (input, index) {
|
// rebuild/replace the scriptSig without them
|
||||||
assert(bitcoin.scripts.isCanonicalSignature(tx.ins[index].script.chunks[input.signs[i].pubKeyIndex + 1]))
|
var replacement = scripts.scriptHashInput(scripts.multisigInput(signatures), redeemScript)
|
||||||
assert(tx.ins[index].script.chunks.slice(1, -1).every(function (chunk) {
|
tx.ins[i].script = replacement
|
||||||
return chunk === bitcoin.opcodes.OP_0 || bitcoin.scripts.isCanonicalSignature(chunk)
|
}
|
||||||
}))
|
|
||||||
})
|
|
||||||
|
|
||||||
// manually mess up the signatures
|
// now import it
|
||||||
f.inputs.forEach(function (input, index) {
|
txb = TransactionBuilder.fromTransaction(tx)
|
||||||
// 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
|
var privKey = ECKey.fromWIF(sign.privKey)
|
||||||
tx.ins[index].script.chunks.unshift(bitcoin.opcodes.OP_0)
|
txb.sign(i, privKey, redeemScript, sign.hashType)
|
||||||
|
|
||||||
|
// update the tx
|
||||||
|
tx = txb.buildIncomplete()
|
||||||
|
|
||||||
|
// now verify the serialized transaction is as expected
|
||||||
|
if (sign.txHexIncomplete) {
|
||||||
|
assert.equal(txb.buildIncomplete(), sign.txHexIncomplete)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
})
|
||||||
|
|
||||||
assert.equal(tx.toHex(), f.txHexIncomplete, 'txHexIncomplete')
|
assert.equal(tx.toHex(), f.txHexIncomplete, 'txHexIncomplete')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue