2017-01-12 15:47:46 +01:00
|
|
|
// Copyright (c) 2015-2017 The btcsuite developers
|
2015-12-01 19:44:58 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
package votingpool
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"reflect"
|
|
|
|
"sort"
|
|
|
|
"testing"
|
|
|
|
|
2017-06-06 02:54:35 +02:00
|
|
|
"github.com/roasbeef/btcd/chaincfg"
|
|
|
|
"github.com/roasbeef/btcd/txscript"
|
|
|
|
"github.com/roasbeef/btcd/wire"
|
|
|
|
"github.com/roasbeef/btcutil"
|
|
|
|
"github.com/roasbeef/btcutil/hdkeychain"
|
|
|
|
"github.com/roasbeef/btcwallet/waddrmgr"
|
|
|
|
"github.com/roasbeef/btcwallet/walletdb"
|
|
|
|
"github.com/roasbeef/btcwallet/wtxmgr"
|
2014-11-04 18:22:13 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestOutputSplittingNotEnoughInputs checks that an output will get split if we
|
|
|
|
// don't have enough inputs to fulfil it.
|
|
|
|
func TestOutputSplittingNotEnoughInputs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
|
|
|
output1Amount := btcutil.Amount(2)
|
|
|
|
output2Amount := btcutil.Amount(3)
|
|
|
|
requests := []OutputRequest{
|
|
|
|
// These output requests will have the same server ID, so we know
|
|
|
|
// they'll be fulfilled in the order they're defined here, which is
|
|
|
|
// important for this test.
|
|
|
|
TstNewOutputRequest(t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", output1Amount, net),
|
|
|
|
TstNewOutputRequest(t, 2, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", output2Amount, net),
|
|
|
|
}
|
2017-01-19 21:24:57 +01:00
|
|
|
seriesID, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{7})
|
2014-11-04 18:22:13 +01:00
|
|
|
w := newWithdrawal(0, requests, eligible, *TstNewChangeAddress(t, pool, seriesID, 0))
|
2015-04-03 14:14:52 +02:00
|
|
|
w.txOptions = func(tx *withdrawalTx) {
|
|
|
|
// Trigger an output split because of lack of inputs by forcing a high fee.
|
|
|
|
// If we just started with not enough inputs for the requested outputs,
|
|
|
|
// fulfillRequests() would drop outputs until we had enough.
|
|
|
|
tx.calculateFee = TstConstantFee(3)
|
|
|
|
}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.transactions) != 1 {
|
|
|
|
t.Fatalf("Wrong number of finalized transactions; got %d, want 1", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := w.transactions[0]
|
|
|
|
if len(tx.outputs) != 2 {
|
|
|
|
t.Fatalf("Wrong number of outputs; got %d, want 2", len(tx.outputs))
|
|
|
|
}
|
|
|
|
|
|
|
|
// The first output should've been left untouched.
|
|
|
|
if tx.outputs[0].amount != output1Amount {
|
|
|
|
t.Fatalf("Wrong amount for first tx output; got %v, want %v",
|
|
|
|
tx.outputs[0].amount, output1Amount)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The last output should have had its amount updated to whatever we had
|
|
|
|
// left after satisfying all previous outputs.
|
2015-04-03 14:14:52 +02:00
|
|
|
newAmount := tx.inputTotal() - output1Amount - tx.calculateFee()
|
2014-11-04 18:22:13 +01:00
|
|
|
checkLastOutputWasSplit(t, w, tx, output2Amount, newAmount)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOutputSplittingOversizeTx(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
requestAmount := btcutil.Amount(5)
|
|
|
|
bigInput := int64(3)
|
|
|
|
smallInput := int64(2)
|
|
|
|
request := TstNewOutputRequest(
|
|
|
|
t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", requestAmount, pool.Manager().ChainParams())
|
2017-01-19 21:24:57 +01:00
|
|
|
seriesID, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{smallInput, bigInput})
|
2014-11-04 18:22:13 +01:00
|
|
|
changeStart := TstNewChangeAddress(t, pool, seriesID, 0)
|
|
|
|
w := newWithdrawal(0, []OutputRequest{request}, eligible, *changeStart)
|
2015-04-03 14:14:52 +02:00
|
|
|
w.txOptions = func(tx *withdrawalTx) {
|
|
|
|
tx.calculateFee = TstConstantFee(0)
|
|
|
|
tx.calculateSize = func() int {
|
|
|
|
// Trigger an output split right after the second input is added.
|
|
|
|
if len(tx.inputs) == 2 {
|
|
|
|
return txMaxSize + 1
|
|
|
|
}
|
|
|
|
return txMaxSize - 1
|
2015-04-03 11:48:43 +02:00
|
|
|
}
|
2015-04-03 14:14:52 +02:00
|
|
|
}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.transactions) != 2 {
|
|
|
|
t.Fatalf("Wrong number of finalized transactions; got %d, want 2", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
tx1 := w.transactions[0]
|
|
|
|
if len(tx1.outputs) != 1 {
|
|
|
|
t.Fatalf("Wrong number of outputs on tx1; got %d, want 1", len(tx1.outputs))
|
|
|
|
}
|
|
|
|
if tx1.outputs[0].amount != btcutil.Amount(bigInput) {
|
|
|
|
t.Fatalf("Wrong amount for output in tx1; got %d, want %d", tx1.outputs[0].amount,
|
|
|
|
bigInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx2 := w.transactions[1]
|
|
|
|
if len(tx2.outputs) != 1 {
|
|
|
|
t.Fatalf("Wrong number of outputs on tx2; got %d, want 1", len(tx2.outputs))
|
|
|
|
}
|
|
|
|
if tx2.outputs[0].amount != btcutil.Amount(smallInput) {
|
|
|
|
t.Fatalf("Wrong amount for output in tx2; got %d, want %d", tx2.outputs[0].amount,
|
|
|
|
smallInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.status.outputs) != 1 {
|
|
|
|
t.Fatalf("Wrong number of output statuses; got %d, want 1", len(w.status.outputs))
|
|
|
|
}
|
|
|
|
status := w.status.outputs[request.outBailmentID()].status
|
|
|
|
if status != statusSplit {
|
|
|
|
t.Fatalf("Wrong output status; got '%s', want '%s'", status, statusSplit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSplitLastOutputNoOutputs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2015-04-07 17:40:13 +02:00
|
|
|
w := newWithdrawal(0, []OutputRequest{}, []credit{}, ChangeAddress{})
|
2017-01-19 21:24:57 +01:00
|
|
|
w.current = createWithdrawalTx(t, dbtx, pool, []int64{}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
err = w.splitLastOutput()
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrPreconditionNotMet)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that all outputs requested in a withdrawal match the outputs of the generated
|
|
|
|
// transaction(s).
|
|
|
|
func TestWithdrawalTxOutputs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
2017-01-19 21:24:57 +01:00
|
|
|
|
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
|
|
|
|
|
|
|
// Create eligible inputs and the list of outputs we need to fulfil.
|
2017-01-19 21:24:57 +01:00
|
|
|
seriesID, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{2e6, 4e6})
|
2014-11-04 18:22:13 +01:00
|
|
|
outputs := []OutputRequest{
|
|
|
|
TstNewOutputRequest(t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", 3e6, net),
|
|
|
|
TstNewOutputRequest(t, 2, "3PbExiaztsSYgh6zeMswC49hLUwhTQ86XG", 2e6, net),
|
|
|
|
}
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, seriesID, 0)
|
|
|
|
|
|
|
|
w := newWithdrawal(0, outputs, eligible, *changeStart)
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.transactions) != 1 {
|
|
|
|
t.Fatalf("Unexpected number of transactions; got %d, want 1", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := w.transactions[0]
|
|
|
|
// The created tx should include both eligible credits, so we expect it to have
|
|
|
|
// an input amount of 2e6+4e6 satoshis.
|
2015-04-07 17:40:13 +02:00
|
|
|
inputAmount := eligible[0].Amount + eligible[1].Amount
|
2015-04-03 14:14:52 +02:00
|
|
|
change := inputAmount - (outputs[0].Amount + outputs[1].Amount + tx.calculateFee())
|
2014-11-04 18:22:13 +01:00
|
|
|
expectedOutputs := append(
|
|
|
|
outputs, TstNewOutputRequest(t, 3, changeStart.addr.String(), change, net))
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
checkMsgTxOutputs(t, msgtx, expectedOutputs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that withdrawal.status correctly states that no outputs were fulfilled when we
|
|
|
|
// don't have enough eligible credits for any of them.
|
|
|
|
func TestFulfillRequestsNoSatisfiableOutputs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
seriesID, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{1e6})
|
2014-11-04 18:22:13 +01:00
|
|
|
request := TstNewOutputRequest(
|
|
|
|
t, 1, "3Qt1EaKRD9g9FeL2DGkLLswhK1AKmmXFSe", btcutil.Amount(3e6), pool.Manager().ChainParams())
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, seriesID, 0)
|
|
|
|
|
|
|
|
w := newWithdrawal(0, []OutputRequest{request}, eligible, *changeStart)
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.transactions) != 0 {
|
|
|
|
t.Fatalf("Unexpected number of transactions; got %d, want 0", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(w.status.outputs) != 1 {
|
|
|
|
t.Fatalf("Unexpected number of outputs in WithdrawalStatus; got %d, want 1",
|
|
|
|
len(w.status.outputs))
|
|
|
|
}
|
|
|
|
|
|
|
|
status := w.status.outputs[request.outBailmentID()].status
|
|
|
|
if status != statusPartial {
|
|
|
|
t.Fatalf("Unexpected status for requested outputs; got '%s', want '%s'",
|
|
|
|
status, statusPartial)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that some requested outputs are not fulfilled when we don't have credits for all
|
|
|
|
// of them.
|
|
|
|
func TestFulfillRequestsNotEnoughCreditsForAllRequests(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
2017-01-19 21:24:57 +01:00
|
|
|
|
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
|
|
|
|
|
|
|
// Create eligible inputs and the list of outputs we need to fulfil.
|
2017-01-19 21:24:57 +01:00
|
|
|
seriesID, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{2e6, 4e6})
|
2014-11-04 18:22:13 +01:00
|
|
|
out1 := TstNewOutputRequest(
|
|
|
|
t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", btcutil.Amount(3e6), net)
|
|
|
|
out2 := TstNewOutputRequest(
|
|
|
|
t, 2, "3PbExiaztsSYgh6zeMswC49hLUwhTQ86XG", btcutil.Amount(2e6), net)
|
|
|
|
out3 := TstNewOutputRequest(
|
|
|
|
t, 3, "3Qt1EaKRD9g9FeL2DGkLLswhK1AKmmXFSe", btcutil.Amount(5e6), net)
|
|
|
|
outputs := []OutputRequest{out1, out2, out3}
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, seriesID, 0)
|
|
|
|
|
|
|
|
w := newWithdrawal(0, outputs, eligible, *changeStart)
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tx := w.transactions[0]
|
|
|
|
// The created tx should spend both eligible credits, so we expect it to have
|
|
|
|
// an input amount of 2e6+4e6 satoshis.
|
2015-04-07 17:40:13 +02:00
|
|
|
inputAmount := eligible[0].Amount + eligible[1].Amount
|
2014-11-04 18:22:13 +01:00
|
|
|
// We expect it to include outputs for requests 1 and 2, plus a change output, but
|
|
|
|
// output request #3 should not be there because we don't have enough credits.
|
2015-04-03 14:14:52 +02:00
|
|
|
change := inputAmount - (out1.Amount + out2.Amount + tx.calculateFee())
|
2014-11-04 18:22:13 +01:00
|
|
|
expectedOutputs := []OutputRequest{out1, out2}
|
|
|
|
sort.Sort(byOutBailmentID(expectedOutputs))
|
|
|
|
expectedOutputs = append(
|
|
|
|
expectedOutputs, TstNewOutputRequest(t, 4, changeStart.addr.String(), change, net))
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
checkMsgTxOutputs(t, msgtx, expectedOutputs)
|
|
|
|
|
|
|
|
// withdrawal.status should state that outputs 1 and 2 were successfully fulfilled,
|
|
|
|
// and that output 3 was not.
|
|
|
|
expectedStatuses := map[OutBailmentID]outputStatus{
|
|
|
|
out1.outBailmentID(): statusSuccess,
|
|
|
|
out2.outBailmentID(): statusSuccess,
|
|
|
|
out3.outBailmentID(): statusPartial}
|
|
|
|
for _, wOutput := range w.status.outputs {
|
|
|
|
if wOutput.status != expectedStatuses[wOutput.request.outBailmentID()] {
|
|
|
|
t.Fatalf("Unexpected status for %v; got '%s', want '%s'", wOutput.request,
|
|
|
|
wOutput.status, expectedStatuses[wOutput.request.outBailmentID()])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestRollbackLastOutput tests the case where we rollback one output
|
|
|
|
// and one input, such that sum(in) >= sum(out) + fee.
|
|
|
|
func TestRollbackLastOutput(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{3, 3, 2, 1, 3}, []int64{3, 3, 2, 2})
|
2014-11-04 18:22:13 +01:00
|
|
|
initialInputs := tx.inputs
|
|
|
|
initialOutputs := tx.outputs
|
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(1)
|
2014-11-04 18:22:13 +01:00
|
|
|
removedInputs, removedOutput, err := tx.rollBackLastOutput()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The above rollBackLastOutput() call should have removed the last output
|
|
|
|
// and the last input.
|
|
|
|
lastOutput := initialOutputs[len(initialOutputs)-1]
|
|
|
|
if removedOutput != lastOutput {
|
|
|
|
t.Fatalf("Wrong rolled back output; got %s want %s", removedOutput, lastOutput)
|
|
|
|
}
|
|
|
|
if len(removedInputs) != 1 {
|
|
|
|
t.Fatalf("Unexpected number of inputs removed; got %d, want 1", len(removedInputs))
|
|
|
|
}
|
|
|
|
lastInput := initialInputs[len(initialInputs)-1]
|
2015-04-07 17:40:13 +02:00
|
|
|
if !reflect.DeepEqual(removedInputs[0], lastInput) {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Wrong rolled back input; got %s want %s", removedInputs[0], lastInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check that the inputs and outputs left in the tx match what we
|
|
|
|
// expect.
|
|
|
|
checkTxOutputs(t, tx, initialOutputs[:len(initialOutputs)-1])
|
|
|
|
checkTxInputs(t, tx, initialInputs[:len(initialInputs)-1])
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRollbackLastOutputMultipleInputsRolledBack(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
// This tx will need the 3 last inputs to fulfill the second output, so they
|
|
|
|
// should all be rolled back and returned in the reverse order they were added.
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{1, 2, 3, 4}, []int64{1, 8})
|
2014-11-04 18:22:13 +01:00
|
|
|
initialInputs := tx.inputs
|
|
|
|
initialOutputs := tx.outputs
|
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(0)
|
2014-11-04 18:22:13 +01:00
|
|
|
removedInputs, _, err := tx.rollBackLastOutput()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(removedInputs) != 3 {
|
|
|
|
t.Fatalf("Unexpected number of inputs removed; got %d, want 3", len(removedInputs))
|
|
|
|
}
|
|
|
|
for i, amount := range []btcutil.Amount{4, 3, 2} {
|
2015-04-07 17:40:13 +02:00
|
|
|
if removedInputs[i].Amount != amount {
|
|
|
|
t.Fatalf("Unexpected input amount; got %v, want %v", removedInputs[i].Amount, amount)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check that the inputs and outputs left in the tx match what we
|
|
|
|
// expect.
|
|
|
|
checkTxOutputs(t, tx, initialOutputs[:len(initialOutputs)-1])
|
|
|
|
checkTxInputs(t, tx, initialInputs[:len(initialInputs)-len(removedInputs)])
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestRollbackLastOutputNoInputsRolledBack tests the case where we roll back
|
|
|
|
// one output but don't need to roll back any inputs.
|
|
|
|
func TestRollbackLastOutputNoInputsRolledBack(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4}, []int64{2, 3})
|
2014-11-04 18:22:13 +01:00
|
|
|
initialInputs := tx.inputs
|
|
|
|
initialOutputs := tx.outputs
|
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(1)
|
2014-11-04 18:22:13 +01:00
|
|
|
removedInputs, removedOutput, err := tx.rollBackLastOutput()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The above rollBackLastOutput() call should have removed the
|
|
|
|
// last output but no inputs.
|
|
|
|
lastOutput := initialOutputs[len(initialOutputs)-1]
|
|
|
|
if removedOutput != lastOutput {
|
|
|
|
t.Fatalf("Wrong output; got %s want %s", removedOutput, lastOutput)
|
|
|
|
}
|
|
|
|
if len(removedInputs) != 0 {
|
|
|
|
t.Fatalf("Expected no removed inputs, but got %d inputs", len(removedInputs))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check that the inputs and outputs left in the tx match what we
|
|
|
|
// expect.
|
|
|
|
checkTxOutputs(t, tx, initialOutputs[:len(initialOutputs)-1])
|
|
|
|
checkTxInputs(t, tx, initialInputs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestRollBackLastOutputInsufficientOutputs checks that
|
|
|
|
// rollBackLastOutput returns an error if there are less than two
|
|
|
|
// outputs in the transaction.
|
|
|
|
func TestRollBackLastOutputInsufficientOutputs(t *testing.T) {
|
2015-04-03 14:14:52 +02:00
|
|
|
tx := newWithdrawalTx(defaultTxOptions)
|
2014-11-04 18:22:13 +01:00
|
|
|
_, _, err := tx.rollBackLastOutput()
|
|
|
|
TstCheckError(t, "", err, ErrPreconditionNotMet)
|
|
|
|
|
|
|
|
output := &WithdrawalOutput{request: TstNewOutputRequest(
|
|
|
|
t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", btcutil.Amount(3), &chaincfg.MainNetParams)}
|
|
|
|
tx.addOutput(output.request)
|
|
|
|
_, _, err = tx.rollBackLastOutput()
|
|
|
|
TstCheckError(t, "", err, ErrPreconditionNotMet)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestRollbackLastOutputWhenNewOutputAdded checks that we roll back the last
|
|
|
|
// output if a tx becomes too big right after we add a new output to it.
|
|
|
|
func TestRollbackLastOutputWhenNewOutputAdded(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
2017-01-19 21:24:57 +01:00
|
|
|
series, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{5, 5})
|
2014-11-04 18:22:13 +01:00
|
|
|
requests := []OutputRequest{
|
|
|
|
// This is ordered by bailment ID
|
|
|
|
TstNewOutputRequest(t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", 1, net),
|
|
|
|
TstNewOutputRequest(t, 2, "3PbExiaztsSYgh6zeMswC49hLUwhTQ86XG", 2, net),
|
|
|
|
}
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, series, 0)
|
|
|
|
|
|
|
|
w := newWithdrawal(0, requests, eligible, *changeStart)
|
2015-04-03 14:14:52 +02:00
|
|
|
w.txOptions = func(tx *withdrawalTx) {
|
|
|
|
tx.calculateFee = TstConstantFee(0)
|
|
|
|
tx.calculateSize = func() int {
|
|
|
|
// Trigger an output split right after the second output is added.
|
|
|
|
if len(tx.outputs) > 1 {
|
|
|
|
return txMaxSize + 1
|
|
|
|
}
|
|
|
|
return txMaxSize - 1
|
2015-04-03 11:48:43 +02:00
|
|
|
}
|
2015-04-03 14:14:52 +02:00
|
|
|
}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we should have two finalized transactions.
|
|
|
|
if len(w.transactions) != 2 {
|
|
|
|
t.Fatalf("Wrong number of finalized transactions; got %d, want 2", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
// First tx should have one output with 1 and one change output with 4
|
|
|
|
// satoshis.
|
|
|
|
firstTx := w.transactions[0]
|
|
|
|
req1 := requests[0]
|
|
|
|
checkTxOutputs(t, firstTx,
|
2017-01-12 15:47:46 +01:00
|
|
|
[]*withdrawalTxOut{{request: req1, amount: req1.Amount}})
|
2014-11-04 18:22:13 +01:00
|
|
|
checkTxChangeAmount(t, firstTx, btcutil.Amount(4))
|
|
|
|
|
|
|
|
// Second tx should have one output with 2 and one changeoutput with 3 satoshis.
|
|
|
|
secondTx := w.transactions[1]
|
|
|
|
req2 := requests[1]
|
|
|
|
checkTxOutputs(t, secondTx,
|
2017-01-12 15:47:46 +01:00
|
|
|
[]*withdrawalTxOut{{request: req2, amount: req2.Amount}})
|
2014-11-04 18:22:13 +01:00
|
|
|
checkTxChangeAmount(t, secondTx, btcutil.Amount(3))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestRollbackLastOutputWhenNewInputAdded checks that we roll back the last
|
|
|
|
// output if a tx becomes too big right after we add a new input to it.
|
|
|
|
func TestRollbackLastOutputWhenNewInputAdded(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
2017-01-19 21:24:57 +01:00
|
|
|
series, eligible := TstCreateCreditsOnNewSeries(t, dbtx, pool, []int64{6, 5, 4, 3, 2, 1})
|
2014-11-04 18:22:13 +01:00
|
|
|
requests := []OutputRequest{
|
|
|
|
// This is manually ordered by outBailmentIDHash, which is the order in
|
|
|
|
// which they're going to be fulfilled by w.fulfillRequests().
|
|
|
|
TstNewOutputRequest(t, 1, "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", 1, net),
|
|
|
|
TstNewOutputRequest(t, 3, "3Qt1EaKRD9g9FeL2DGkLLswhK1AKmmXFSe", 6, net),
|
|
|
|
TstNewOutputRequest(t, 2, "3PbExiaztsSYgh6zeMswC49hLUwhTQ86XG", 3, net),
|
|
|
|
}
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, series, 0)
|
|
|
|
|
|
|
|
w := newWithdrawal(0, requests, eligible, *changeStart)
|
2015-04-03 14:14:52 +02:00
|
|
|
w.txOptions = func(tx *withdrawalTx) {
|
|
|
|
tx.calculateFee = TstConstantFee(0)
|
|
|
|
tx.calculateSize = func() int {
|
|
|
|
// Make a transaction too big as soon as a fourth input is added to it.
|
|
|
|
if len(tx.inputs) > 3 {
|
|
|
|
return txMaxSize + 1
|
|
|
|
}
|
|
|
|
return txMaxSize - 1
|
2015-04-03 11:48:43 +02:00
|
|
|
}
|
2015-04-03 14:14:52 +02:00
|
|
|
}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// The rollback should be triggered right after the 4th input is added in
|
|
|
|
// order to fulfill the second request.
|
|
|
|
if err := w.fulfillRequests(); err != nil {
|
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we should have two finalized transactions.
|
|
|
|
if len(w.transactions) != 2 {
|
|
|
|
t.Fatalf("Wrong number of finalized transactions; got %d, want 2", len(w.transactions))
|
|
|
|
}
|
|
|
|
|
|
|
|
// First tx should have one output with amount of 1, the first input from
|
2015-04-02 16:17:11 +02:00
|
|
|
// the stack of eligible inputs (last slice item), and no change output.
|
2014-11-04 18:22:13 +01:00
|
|
|
firstTx := w.transactions[0]
|
|
|
|
req1 := requests[0]
|
|
|
|
checkTxOutputs(t, firstTx,
|
2017-01-12 15:47:46 +01:00
|
|
|
[]*withdrawalTxOut{{request: req1, amount: req1.Amount}})
|
2015-04-02 16:17:11 +02:00
|
|
|
checkTxInputs(t, firstTx, eligible[5:6])
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// Second tx should have outputs for the two last requests (in the same
|
|
|
|
// order they were passed to newWithdrawal), and the 3 inputs needed to
|
2015-04-02 16:17:11 +02:00
|
|
|
// fulfill that (in reverse order as they were passed to newWithdrawal, as
|
|
|
|
// that's how fulfillRequests() consumes them) and no change output.
|
2014-11-04 18:22:13 +01:00
|
|
|
secondTx := w.transactions[1]
|
|
|
|
wantOutputs := []*withdrawalTxOut{
|
2017-01-12 15:47:46 +01:00
|
|
|
{request: requests[1], amount: requests[1].Amount},
|
|
|
|
{request: requests[2], amount: requests[2].Amount}}
|
2014-11-04 18:22:13 +01:00
|
|
|
checkTxOutputs(t, secondTx, wantOutputs)
|
2015-04-02 16:17:11 +02:00
|
|
|
wantInputs := []credit{eligible[4], eligible[3], eligible[2]}
|
|
|
|
checkTxInputs(t, secondTx, wantInputs)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxRemoveOutput(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{}, []int64{1, 2})
|
2014-11-04 18:22:13 +01:00
|
|
|
outputs := tx.outputs
|
|
|
|
// Make sure we have created the transaction with the expected
|
|
|
|
// outputs.
|
|
|
|
checkTxOutputs(t, tx, outputs)
|
|
|
|
|
|
|
|
remainingOutput := tx.outputs[0]
|
|
|
|
wantRemovedOutput := tx.outputs[1]
|
|
|
|
|
|
|
|
gotRemovedOutput := tx.removeOutput()
|
|
|
|
|
|
|
|
// Check the popped output looks correct.
|
|
|
|
if gotRemovedOutput != wantRemovedOutput {
|
|
|
|
t.Fatalf("Removed output wrong; got %v, want %v", gotRemovedOutput, wantRemovedOutput)
|
|
|
|
}
|
|
|
|
// And that the remaining output is correct.
|
|
|
|
checkTxOutputs(t, tx, []*withdrawalTxOut{remainingOutput})
|
|
|
|
|
|
|
|
// Make sure that the remaining output is really the right one.
|
|
|
|
if tx.outputs[0] != remainingOutput {
|
|
|
|
t.Fatalf("Wrong output: got %v, want %v", tx.outputs[0], remainingOutput)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxRemoveInput(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{1, 2}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
inputs := tx.inputs
|
|
|
|
// Make sure we have created the transaction with the expected inputs
|
|
|
|
checkTxInputs(t, tx, inputs)
|
|
|
|
|
|
|
|
remainingInput := tx.inputs[0]
|
|
|
|
wantRemovedInput := tx.inputs[1]
|
|
|
|
|
|
|
|
gotRemovedInput := tx.removeInput()
|
|
|
|
|
|
|
|
// Check the popped input looks correct.
|
2015-04-07 17:40:13 +02:00
|
|
|
if !reflect.DeepEqual(gotRemovedInput, wantRemovedInput) {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Popped input wrong; got %v, want %v", gotRemovedInput, wantRemovedInput)
|
|
|
|
}
|
|
|
|
checkTxInputs(t, tx, inputs[0:1])
|
|
|
|
|
|
|
|
// Make sure that the remaining input is really the right one.
|
2015-04-07 17:40:13 +02:00
|
|
|
if !reflect.DeepEqual(tx.inputs[0], remainingInput) {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Wrong input: got %v, want %v", tx.inputs[0], remainingInput)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxAddChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
input, output, fee := int64(4e6), int64(3e6), int64(10)
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{input}, []int64{output})
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(btcutil.Amount(fee))
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if !tx.addChange([]byte{}) {
|
|
|
|
t.Fatal("tx.addChange() returned false, meaning it did not add a change output")
|
|
|
|
}
|
|
|
|
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
if len(msgtx.TxOut) != 2 {
|
|
|
|
t.Fatalf("Unexpected number of txouts; got %d, want 2", len(msgtx.TxOut))
|
|
|
|
}
|
|
|
|
gotChange := msgtx.TxOut[1].Value
|
|
|
|
wantChange := input - output - fee
|
|
|
|
if gotChange != wantChange {
|
|
|
|
t.Fatalf("Unexpected change amount; got %v, want %v", gotChange, wantChange)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestWithdrawalTxAddChangeNoChange checks that withdrawalTx.addChange() does not
|
|
|
|
// add a change output when there's no satoshis left after paying all
|
|
|
|
// outputs+fees.
|
|
|
|
func TestWithdrawalTxAddChangeNoChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
input, output, fee := int64(4e6), int64(4e6), int64(0)
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{input}, []int64{output})
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(btcutil.Amount(fee))
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if tx.addChange([]byte{}) {
|
|
|
|
t.Fatal("tx.addChange() returned true, meaning it added a change output")
|
|
|
|
}
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
if len(msgtx.TxOut) != 1 {
|
|
|
|
t.Fatalf("Unexpected number of txouts; got %d, want 1", len(msgtx.TxOut))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxToMsgTxNoInputsOrOutputsOrChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
compareMsgTxAndWithdrawalTxOutputs(t, msgtx, tx)
|
|
|
|
compareMsgTxAndWithdrawalTxInputs(t, msgtx, tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxToMsgTxNoInputsOrOutputsWithChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
tx.changeOutput = wire.NewTxOut(int64(1), []byte{})
|
|
|
|
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
|
|
|
compareMsgTxAndWithdrawalTxOutputs(t, msgtx, tx)
|
|
|
|
compareMsgTxAndWithdrawalTxInputs(t, msgtx, tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxToMsgTxWithInputButNoOutputsWithChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{1}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
tx.changeOutput = wire.NewTxOut(int64(1), []byte{})
|
|
|
|
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
|
|
|
compareMsgTxAndWithdrawalTxOutputs(t, msgtx, tx)
|
|
|
|
compareMsgTxAndWithdrawalTxInputs(t, msgtx, tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxToMsgTxWithInputOutputsAndChange(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{1, 2, 3}, []int64{4, 5, 6})
|
2014-11-04 18:22:13 +01:00
|
|
|
tx.changeOutput = wire.NewTxOut(int64(7), []byte{})
|
|
|
|
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
|
|
|
compareMsgTxAndWithdrawalTxOutputs(t, msgtx, tx)
|
|
|
|
compareMsgTxAndWithdrawalTxInputs(t, msgtx, tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxInputTotal(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
if tx.inputTotal() != btcutil.Amount(5) {
|
|
|
|
t.Fatalf("Wrong total output; got %v, want %v", tx.outputTotal(), btcutil.Amount(5))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWithdrawalTxOutputTotal(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{}, []int64{4})
|
2014-11-04 18:22:13 +01:00
|
|
|
tx.changeOutput = wire.NewTxOut(int64(1), []byte{})
|
|
|
|
|
|
|
|
if tx.outputTotal() != btcutil.Amount(4) {
|
|
|
|
t.Fatalf("Wrong total output; got %v, want %v", tx.outputTotal(), btcutil.Amount(4))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 17:07:12 +01:00
|
|
|
func TestWithdrawalInfoMatch(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2015-02-23 17:07:12 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
2015-02-23 17:07:12 +01:00
|
|
|
roundID := uint32(0)
|
2017-01-19 21:24:57 +01:00
|
|
|
wi := createAndFulfillWithdrawalRequests(t, dbtx, pool, roundID)
|
2015-02-23 17:07:12 +01:00
|
|
|
|
|
|
|
// Use freshly created values for requests, startAddress and changeStart
|
|
|
|
// to simulate what would happen if we had recreated them from the
|
|
|
|
// serialized data in the DB.
|
|
|
|
requestsCopy := make([]OutputRequest, len(wi.requests))
|
|
|
|
copy(requestsCopy, wi.requests)
|
2017-01-19 21:24:57 +01:00
|
|
|
startAddr := TstNewWithdrawalAddress(t, dbtx, pool, wi.startAddress.seriesID, wi.startAddress.branch,
|
2015-02-23 17:07:12 +01:00
|
|
|
wi.startAddress.index)
|
|
|
|
changeStart := TstNewChangeAddress(t, pool, wi.changeStart.seriesID, wi.changeStart.index)
|
|
|
|
|
|
|
|
// First check that it matches when all fields are identical.
|
|
|
|
matches := wi.match(requestsCopy, *startAddr, wi.lastSeriesID, *changeStart, wi.dustThreshold)
|
|
|
|
if !matches {
|
|
|
|
t.Fatal("Should match when everything is identical.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It also matches if the OutputRequests are not in the same order.
|
|
|
|
diffOrderRequests := make([]OutputRequest, len(requestsCopy))
|
|
|
|
copy(diffOrderRequests, requestsCopy)
|
|
|
|
diffOrderRequests[0], diffOrderRequests[1] = requestsCopy[1], requestsCopy[0]
|
|
|
|
matches = wi.match(diffOrderRequests, *startAddr, wi.lastSeriesID, *changeStart,
|
|
|
|
wi.dustThreshold)
|
|
|
|
if !matches {
|
|
|
|
t.Fatal("Should match when requests are in different order.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It should not match when the OutputRequests are not the same.
|
|
|
|
diffRequests := diffOrderRequests
|
|
|
|
diffRequests[0] = OutputRequest{}
|
|
|
|
matches = wi.match(diffRequests, *startAddr, wi.lastSeriesID, *changeStart, wi.dustThreshold)
|
|
|
|
if matches {
|
|
|
|
t.Fatal("Should not match as requests is not equal.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It should not match when lastSeriesID is not equal.
|
|
|
|
matches = wi.match(requestsCopy, *startAddr, wi.lastSeriesID+1, *changeStart, wi.dustThreshold)
|
|
|
|
if matches {
|
|
|
|
t.Fatal("Should not match as lastSeriesID is not equal.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It should not match when dustThreshold is not equal.
|
|
|
|
matches = wi.match(requestsCopy, *startAddr, wi.lastSeriesID, *changeStart, wi.dustThreshold+1)
|
|
|
|
if matches {
|
|
|
|
t.Fatal("Should not match as dustThreshold is not equal.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It should not match when startAddress is not equal.
|
2017-01-19 21:24:57 +01:00
|
|
|
diffStartAddr := TstNewWithdrawalAddress(t, dbtx, pool, startAddr.seriesID, startAddr.branch+1,
|
2015-02-23 17:07:12 +01:00
|
|
|
startAddr.index)
|
|
|
|
matches = wi.match(requestsCopy, *diffStartAddr, wi.lastSeriesID, *changeStart,
|
|
|
|
wi.dustThreshold)
|
|
|
|
if matches {
|
|
|
|
t.Fatal("Should not match as startAddress is not equal.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// It should not match when changeStart is not equal.
|
|
|
|
diffChangeStart := TstNewChangeAddress(t, pool, changeStart.seriesID, changeStart.index+1)
|
|
|
|
matches = wi.match(requestsCopy, *startAddr, wi.lastSeriesID, *diffChangeStart,
|
|
|
|
wi.dustThreshold)
|
|
|
|
if matches {
|
|
|
|
t.Fatal("Should not match as changeStart is not equal.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWithdrawalStatus(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2015-02-23 17:07:12 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
ns, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2015-02-23 17:07:12 +01:00
|
|
|
roundID := uint32(0)
|
2017-01-19 21:24:57 +01:00
|
|
|
wi := createAndFulfillWithdrawalRequests(t, dbtx, pool, roundID)
|
2015-02-23 17:07:12 +01:00
|
|
|
|
|
|
|
serialized, err := serializeWithdrawal(wi.requests, wi.startAddress, wi.lastSeriesID,
|
|
|
|
wi.changeStart, wi.dustThreshold, wi.status)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-01-19 21:24:57 +01:00
|
|
|
err = putWithdrawal(ns, pool.ID, roundID, serialized)
|
2015-02-23 17:07:12 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Here we should get a WithdrawalStatus that matches wi.status.
|
|
|
|
var status *WithdrawalStatus
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, pool.Manager(), addrmgrNs, func() {
|
|
|
|
status, err = getWithdrawalStatus(pool, ns, addrmgrNs, roundID, wi.requests, wi.startAddress,
|
2015-02-23 17:07:12 +01:00
|
|
|
wi.lastSeriesID, wi.changeStart, wi.dustThreshold)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
TstCheckWithdrawalStatusMatches(t, wi.status, *status)
|
|
|
|
|
|
|
|
// Here we should get a nil WithdrawalStatus because the parameters are not
|
|
|
|
// identical to those of the stored WithdrawalStatus with this roundID.
|
|
|
|
dustThreshold := wi.dustThreshold + 1
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, pool.Manager(), addrmgrNs, func() {
|
|
|
|
status, err = getWithdrawalStatus(pool, ns, addrmgrNs, roundID, wi.requests, wi.startAddress,
|
2015-02-23 17:07:12 +01:00
|
|
|
wi.lastSeriesID, wi.changeStart, dustThreshold)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if status != nil {
|
|
|
|
t.Fatalf("Expected a nil status, got %v", status)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
func TestSignMultiSigUTXO(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
// Create a new tx with a single input that we're going to sign.
|
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{4e6})
|
2014-11-04 18:22:13 +01:00
|
|
|
sigs, err := getRawSigs([]*withdrawalTx{tx})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
txSigs := sigs[tx.ntxid()]
|
|
|
|
|
|
|
|
idx := 0 // The index of the tx input we're going to sign.
|
2015-04-07 17:40:13 +02:00
|
|
|
pkScript := tx.inputs[idx].PkScript
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, mgr, addrmgrNs, func() {
|
|
|
|
if err = signMultiSigUTXO(mgr, addrmgrNs, msgtx, idx, pkScript, txSigs[idx]); err != nil {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSignMultiSigUTXOUnparseablePkScript(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
|
|
|
unparseablePkScript := []byte{0x01}
|
2017-01-19 21:24:57 +01:00
|
|
|
err = signMultiSigUTXO(mgr, addrmgrNs, msgtx, 0, unparseablePkScript, []RawSig{{}})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrTxSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSignMultiSigUTXOPkScriptNotP2SH(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
addr, _ := btcutil.DecodeAddress("1MirQ9bwyQcGVJPwKUgapu5ouK2E2Ey4gX", mgr.ChainParams())
|
|
|
|
pubKeyHashPkScript, _ := txscript.PayToAddrScript(addr.(*btcutil.AddressPubKeyHash))
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
err = signMultiSigUTXO(mgr, addrmgrNs, msgtx, 0, pubKeyHashPkScript, []RawSig{{}})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrTxSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSignMultiSigUTXORedeemScriptNotFound(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
// This is a P2SH address for which the addr manager doesn't have the redeem
|
|
|
|
// script.
|
|
|
|
addr, _ := btcutil.DecodeAddress("3Hb4xcebcKg4DiETJfwjh8sF4uDw9rqtVC", mgr.ChainParams())
|
2017-01-19 21:24:57 +01:00
|
|
|
if _, err := mgr.Address(addrmgrNs, addr); err == nil {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Address %s found in manager when it shouldn't", addr)
|
|
|
|
}
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
|
|
|
|
pkScript, _ := txscript.PayToAddrScript(addr.(*btcutil.AddressScriptHash))
|
2017-01-19 21:24:57 +01:00
|
|
|
err = signMultiSigUTXO(mgr, addrmgrNs, msgtx, 0, pkScript, []RawSig{{}})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrTxSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSignMultiSigUTXONotEnoughSigs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
sigs, err := getRawSigs([]*withdrawalTx{tx})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
txSigs := sigs[tx.ntxid()]
|
|
|
|
|
|
|
|
idx := 0 // The index of the tx input we're going to sign.
|
|
|
|
// Here we provide reqSigs-1 signatures to SignMultiSigUTXO()
|
2015-04-07 17:40:13 +02:00
|
|
|
reqSigs := tx.inputs[idx].addr.series().TstGetReqSigs()
|
2014-11-04 18:22:13 +01:00
|
|
|
txInSigs := txSigs[idx][:reqSigs-1]
|
2015-04-07 17:40:13 +02:00
|
|
|
pkScript := tx.inputs[idx].PkScript
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, mgr, addrmgrNs, func() {
|
|
|
|
err = signMultiSigUTXO(mgr, addrmgrNs, msgtx, idx, pkScript, txInSigs)
|
2014-11-04 18:22:13 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrTxSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSignMultiSigUTXOWrongRawSigs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
mgr := pool.Manager()
|
2017-01-19 21:24:57 +01:00
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{4e6}, []int64{})
|
2017-01-12 15:47:46 +01:00
|
|
|
sigs := []RawSig{{0x00}, {0x01}}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
idx := 0 // The index of the tx input we're going to sign.
|
2015-04-07 17:40:13 +02:00
|
|
|
pkScript := tx.inputs[idx].PkScript
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, mgr, addrmgrNs, func() {
|
|
|
|
err = signMultiSigUTXO(mgr, addrmgrNs, tx.toMsgTx(), idx, pkScript, sigs)
|
2014-11-04 18:22:13 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrTxSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetRawSigs(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5e6, 4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
sigs, err := getRawSigs([]*withdrawalTx{tx})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
txSigs := sigs[tx.ntxid()]
|
|
|
|
if len(txSigs) != len(tx.inputs) {
|
|
|
|
t.Fatalf("Unexpected number of sig lists; got %d, want %d", len(txSigs), len(tx.inputs))
|
|
|
|
}
|
|
|
|
|
2015-04-07 17:40:13 +02:00
|
|
|
checkNonEmptySigsForPrivKeys(t, txSigs, tx.inputs[0].addr.series().privateKeys)
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// Since we have all the necessary signatures (m-of-n), we construct the
|
|
|
|
// sigsnature scripts and execute them to make sure the raw signatures are
|
|
|
|
// valid.
|
2017-01-19 21:24:57 +01:00
|
|
|
signTxAndValidate(t, pool.Manager(), addrmgrNs, msgtx, txSigs, tx.inputs)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetRawSigsOnlyOnePrivKeyAvailable(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5e6, 4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
// Remove all private keys but the first one from the credit's series.
|
2015-04-07 17:40:13 +02:00
|
|
|
series := tx.inputs[0].addr.series()
|
2014-11-04 18:22:13 +01:00
|
|
|
for i := range series.privateKeys[1:] {
|
|
|
|
series.privateKeys[i] = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
sigs, err := getRawSigs([]*withdrawalTx{tx})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
txSigs := sigs[tx.ntxid()]
|
|
|
|
if len(txSigs) != len(tx.inputs) {
|
|
|
|
t.Fatalf("Unexpected number of sig lists; got %d, want %d", len(txSigs), len(tx.inputs))
|
|
|
|
}
|
|
|
|
|
|
|
|
checkNonEmptySigsForPrivKeys(t, txSigs, series.privateKeys)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetRawSigsUnparseableRedeemScript(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5e6, 4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
// Change the redeem script for one of our tx inputs, to force an error in
|
|
|
|
// getRawSigs().
|
2015-04-07 17:40:13 +02:00
|
|
|
tx.inputs[0].addr.script = []byte{0x01}
|
2014-11-04 18:22:13 +01:00
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
_, err = getRawSigs([]*withdrawalTx{tx})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrRawSigning)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetRawSigsInvalidAddrBranch(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5e6, 4e6}, []int64{})
|
2014-11-04 18:22:13 +01:00
|
|
|
// Change the branch of our input's address to an invalid value, to force
|
|
|
|
// an error in getRawSigs().
|
2015-04-07 17:40:13 +02:00
|
|
|
tx.inputs[0].addr.branch = Branch(999)
|
2014-11-04 18:22:13 +01:00
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
_, err = getRawSigs([]*withdrawalTx{tx})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
TstCheckError(t, "", err, ErrInvalidBranch)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestOutBailmentIDSort tests that we can correctly sort a slice
|
|
|
|
// of output requests by the hash of the outbailmentID.
|
|
|
|
func TestOutBailmentIDSort(t *testing.T) {
|
|
|
|
or00 := OutputRequest{cachedHash: []byte{0, 0}}
|
|
|
|
or01 := OutputRequest{cachedHash: []byte{0, 1}}
|
|
|
|
or10 := OutputRequest{cachedHash: []byte{1, 0}}
|
|
|
|
or11 := OutputRequest{cachedHash: []byte{1, 1}}
|
|
|
|
|
|
|
|
want := []OutputRequest{or00, or01, or10, or11}
|
|
|
|
random := []OutputRequest{or11, or00, or10, or01}
|
|
|
|
|
|
|
|
sort.Sort(byOutBailmentID(random))
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(random, want) {
|
|
|
|
t.Fatalf("Sort failed; got %v, want %v", random, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTxTooBig(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{5}, []int64{1})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize = func() int { return txMaxSize - 1 }
|
2015-04-03 11:48:43 +02:00
|
|
|
if tx.isTooBig() {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Tx is smaller than max size (%d < %d) but was considered too big",
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize(), txMaxSize)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// A tx whose size is equal to txMaxSize should be considered too big.
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize = func() int { return txMaxSize }
|
2015-04-03 11:48:43 +02:00
|
|
|
if !tx.isTooBig() {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Tx size is equal to the max size (%d == %d) but was not considered too big",
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize(), txMaxSize)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize = func() int { return txMaxSize + 1 }
|
2015-04-03 11:48:43 +02:00
|
|
|
if !tx.isTooBig() {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Tx size is bigger than max size (%d > %d) but was not considered too big",
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize(), txMaxSize)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTxSizeCalculation(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool := TstCreatePool(t)
|
2014-11-04 18:22:13 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
_, addrmgrNs := TstRWNamespaces(dbtx)
|
|
|
|
|
|
|
|
tx := createWithdrawalTx(t, dbtx, pool, []int64{1, 5}, []int64{2})
|
2014-11-04 18:22:13 +01:00
|
|
|
|
2015-04-03 14:14:52 +02:00
|
|
|
size := tx.calculateSize()
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// Now add a change output, get a msgtx, sign it and get its SerializedSize
|
2015-04-03 14:14:52 +02:00
|
|
|
// to compare with the value above. We need to replace the calculateFee
|
|
|
|
// method so that the tx.addChange() call below always adds a change
|
2014-11-04 18:22:13 +01:00
|
|
|
// output.
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateFee = TstConstantFee(1)
|
2015-04-07 17:40:13 +02:00
|
|
|
seriesID := tx.inputs[0].addr.SeriesID()
|
2014-11-04 18:22:13 +01:00
|
|
|
tx.addChange(TstNewChangeAddress(t, pool, seriesID, 0).addr.ScriptAddress())
|
|
|
|
msgtx := tx.toMsgTx()
|
|
|
|
sigs, err := getRawSigs([]*withdrawalTx{tx})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-01-19 21:24:57 +01:00
|
|
|
signTxAndValidate(t, pool.Manager(), addrmgrNs, msgtx, sigs[tx.ntxid()], tx.inputs)
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// ECDSA signatures have variable length (71-73 bytes) but in
|
2015-04-03 14:14:52 +02:00
|
|
|
// calculateSize() we use a dummy signature for the worst-case scenario (73
|
2014-11-04 18:22:13 +01:00
|
|
|
// bytes) so the estimate here can be up to 2 bytes bigger for every
|
|
|
|
// signature in every input's SigScript.
|
2015-04-07 17:40:13 +02:00
|
|
|
maxDiff := 2 * len(msgtx.TxIn) * int(tx.inputs[0].addr.series().reqSigs)
|
2014-11-04 18:22:13 +01:00
|
|
|
// To make things worse, there's a possibility that the length of the
|
|
|
|
// actual SignatureScript is at the upper boundary of one of the uint*
|
|
|
|
// types, and when that happens our dummy SignatureScript is likely to have
|
|
|
|
// a length that cannot be represented in the same uint* type as that of the
|
|
|
|
// actual one, so we need to account for that here too. As per
|
|
|
|
// wire.VarIntSerializeSize(), the biggest difference would be of 4
|
|
|
|
// bytes, when the actual SigScript size fits in a uint32 but the dummy one
|
|
|
|
// needs a uint64.
|
|
|
|
maxDiff += 4 * len(msgtx.TxIn)
|
|
|
|
if size-msgtx.SerializeSize() > maxDiff {
|
|
|
|
t.Fatalf("Size difference bigger than maximum expected: %d - %d > %d",
|
|
|
|
size, msgtx.SerializeSize(), maxDiff)
|
|
|
|
} else if size-msgtx.SerializeSize() < 0 {
|
|
|
|
t.Fatalf("Tx size (%d) bigger than estimated size (%d)", msgtx.SerializeSize(), size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTxFeeEstimationForSmallTx(t *testing.T) {
|
2015-04-03 14:14:52 +02:00
|
|
|
tx := newWithdrawalTx(defaultTxOptions)
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// A tx that is smaller than 1000 bytes in size should have a fee of 10000
|
|
|
|
// satoshis.
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize = func() int { return 999 }
|
|
|
|
fee := tx.calculateFee()
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
wantFee := btcutil.Amount(1e3)
|
|
|
|
if fee != wantFee {
|
|
|
|
t.Fatalf("Unexpected tx fee; got %v, want %v", fee, wantFee)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTxFeeEstimationForLargeTx(t *testing.T) {
|
2015-04-03 14:14:52 +02:00
|
|
|
tx := newWithdrawalTx(defaultTxOptions)
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
// A tx that is larger than 1000 bytes in size should have a fee of 1e3
|
|
|
|
// satoshis plus 1e3 for every 1000 bytes.
|
2015-04-03 14:14:52 +02:00
|
|
|
tx.calculateSize = func() int { return 3000 }
|
|
|
|
fee := tx.calculateFee()
|
2014-11-04 18:22:13 +01:00
|
|
|
|
|
|
|
wantFee := btcutil.Amount(4e3)
|
|
|
|
if fee != wantFee {
|
|
|
|
t.Fatalf("Unexpected tx fee; got %v, want %v", fee, wantFee)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-18 13:22:03 +01:00
|
|
|
func TestStoreTransactionsWithoutChangeOutput(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool, store := TstCreatePoolAndTxStore(t)
|
2015-02-18 13:22:03 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
txmgrNs := dbtx.ReadWriteBucket(txmgrNamespaceKey)
|
|
|
|
|
|
|
|
wtx := createWithdrawalTxWithStoreCredits(t, dbtx, store, pool, []int64{4e6}, []int64{3e6})
|
2015-02-18 13:22:03 +01:00
|
|
|
tx := &changeAwareTx{MsgTx: wtx.toMsgTx(), changeIdx: int32(-1)}
|
2017-01-19 21:24:57 +01:00
|
|
|
if err := storeTransactions(store, txmgrNs, []*changeAwareTx{tx}); err != nil {
|
2015-02-18 13:22:03 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
credits, err := store.UnspentOutputs(txmgrNs)
|
2015-02-18 13:22:03 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(credits) != 0 {
|
|
|
|
t.Fatalf("Unexpected number of credits in txstore; got %d, want 0", len(credits))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStoreTransactionsWithChangeOutput(t *testing.T) {
|
2017-01-19 21:24:57 +01:00
|
|
|
tearDown, db, pool, store := TstCreatePoolAndTxStore(t)
|
2015-02-18 13:22:03 +01:00
|
|
|
defer tearDown()
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
dbtx, err := db.BeginReadWriteTx()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbtx.Commit()
|
|
|
|
txmgrNs := dbtx.ReadWriteBucket(txmgrNamespaceKey)
|
|
|
|
|
|
|
|
wtx := createWithdrawalTxWithStoreCredits(t, dbtx, store, pool, []int64{5e6}, []int64{1e6, 1e6})
|
2015-02-18 13:22:03 +01:00
|
|
|
wtx.changeOutput = wire.NewTxOut(int64(3e6), []byte{})
|
|
|
|
msgtx := wtx.toMsgTx()
|
|
|
|
tx := &changeAwareTx{MsgTx: msgtx, changeIdx: int32(len(msgtx.TxOut) - 1)}
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
if err := storeTransactions(store, txmgrNs, []*changeAwareTx{tx}); err != nil {
|
2015-02-18 13:22:03 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2016-08-08 21:49:09 +02:00
|
|
|
hash := msgtx.TxHash()
|
2017-01-19 21:24:57 +01:00
|
|
|
txDetails, err := store.TxDetails(txmgrNs, &hash)
|
2015-02-18 13:22:03 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if txDetails == nil {
|
|
|
|
t.Fatal("The new tx doesn't seem to have been stored")
|
|
|
|
}
|
|
|
|
|
|
|
|
storedTx := txDetails.TxRecord.MsgTx
|
|
|
|
outputTotal := int64(0)
|
|
|
|
for i, txOut := range storedTx.TxOut {
|
|
|
|
if int32(i) != tx.changeIdx {
|
|
|
|
outputTotal += txOut.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if outputTotal != int64(2e6) {
|
|
|
|
t.Fatalf("Unexpected output amount; got %v, want %v", outputTotal, int64(2e6))
|
|
|
|
}
|
|
|
|
|
|
|
|
inputTotal := btcutil.Amount(0)
|
|
|
|
for _, debit := range txDetails.Debits {
|
|
|
|
inputTotal += debit.Amount
|
|
|
|
}
|
|
|
|
if inputTotal != btcutil.Amount(5e6) {
|
|
|
|
t.Fatalf("Unexpected input amount; got %v, want %v", inputTotal, btcutil.Amount(5e6))
|
|
|
|
}
|
|
|
|
|
2017-01-19 21:24:57 +01:00
|
|
|
credits, err := store.UnspentOutputs(txmgrNs)
|
2015-02-18 13:22:03 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(credits) != 1 {
|
|
|
|
t.Fatalf("Unexpected number of credits in txstore; got %d, want 1", len(credits))
|
|
|
|
}
|
2016-08-08 21:49:09 +02:00
|
|
|
changeOutpoint := wire.OutPoint{Hash: hash, Index: uint32(tx.changeIdx)}
|
2015-02-18 13:22:03 +01:00
|
|
|
if credits[0].OutPoint != changeOutpoint {
|
|
|
|
t.Fatalf("Credit's outpoint (%v) doesn't match the one from change output (%v)",
|
|
|
|
credits[0].OutPoint, changeOutpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// createWithdrawalTxWithStoreCredits creates a new Credit in the given store
|
|
|
|
// for each entry in inputAmounts, and uses them to construct a withdrawalTx
|
|
|
|
// with one output for every entry in outputAmounts.
|
2017-01-19 21:24:57 +01:00
|
|
|
func createWithdrawalTxWithStoreCredits(t *testing.T, dbtx walletdb.ReadWriteTx, store *wtxmgr.Store, pool *Pool,
|
2015-02-18 13:22:03 +01:00
|
|
|
inputAmounts []int64, outputAmounts []int64) *withdrawalTx {
|
|
|
|
masters := []*hdkeychain.ExtendedKey{
|
|
|
|
TstCreateMasterKey(t, bytes.Repeat(uint32ToBytes(getUniqueID()), 4)),
|
|
|
|
TstCreateMasterKey(t, bytes.Repeat(uint32ToBytes(getUniqueID()), 4)),
|
|
|
|
TstCreateMasterKey(t, bytes.Repeat(uint32ToBytes(getUniqueID()), 4)),
|
|
|
|
}
|
|
|
|
def := TstCreateSeriesDef(t, pool, 2, masters)
|
2017-01-19 21:24:57 +01:00
|
|
|
TstCreateSeries(t, dbtx, pool, []TstSeriesDef{def})
|
2015-02-18 13:22:03 +01:00
|
|
|
net := pool.Manager().ChainParams()
|
2015-04-03 14:14:52 +02:00
|
|
|
tx := newWithdrawalTx(defaultTxOptions)
|
2017-01-19 21:24:57 +01:00
|
|
|
for _, c := range TstCreateSeriesCreditsOnStore(t, dbtx, pool, def.SeriesID, inputAmounts, store) {
|
2015-02-18 13:22:03 +01:00
|
|
|
tx.addInput(c)
|
|
|
|
}
|
|
|
|
for i, amount := range outputAmounts {
|
|
|
|
request := TstNewOutputRequest(
|
|
|
|
t, uint32(i), "34eVkREKgvvGASZW7hkgE2uNc1yycntMK6", btcutil.Amount(amount), net)
|
|
|
|
tx.addOutput(request)
|
|
|
|
}
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
|
2014-11-04 18:22:13 +01:00
|
|
|
// checkNonEmptySigsForPrivKeys checks that every signature list in txSigs has
|
|
|
|
// one non-empty signature for every non-nil private key in the given list. This
|
|
|
|
// is to make sure every signature list matches the specification at
|
|
|
|
// http://opentransactions.org/wiki/index.php/Siglist.
|
|
|
|
func checkNonEmptySigsForPrivKeys(t *testing.T, txSigs TxSigs, privKeys []*hdkeychain.ExtendedKey) {
|
|
|
|
for _, txInSigs := range txSigs {
|
|
|
|
if len(txInSigs) != len(privKeys) {
|
|
|
|
t.Fatalf("Number of items in sig list (%d) does not match number of privkeys (%d)",
|
|
|
|
len(txInSigs), len(privKeys))
|
|
|
|
}
|
|
|
|
for sigIdx, sig := range txInSigs {
|
|
|
|
key := privKeys[sigIdx]
|
|
|
|
if bytes.Equal(sig, []byte{}) && key != nil {
|
|
|
|
t.Fatalf("Empty signature (idx=%d) but key (%s) is available",
|
|
|
|
sigIdx, key.String())
|
|
|
|
} else if !bytes.Equal(sig, []byte{}) && key == nil {
|
|
|
|
t.Fatalf("Signature not empty (idx=%d) but key is not available", sigIdx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkTxOutputs uses reflect.DeepEqual() to ensure that the tx outputs match
|
|
|
|
// the given slice of withdrawalTxOuts.
|
|
|
|
func checkTxOutputs(t *testing.T, tx *withdrawalTx, outputs []*withdrawalTxOut) {
|
|
|
|
nOutputs := len(outputs)
|
|
|
|
if len(tx.outputs) != nOutputs {
|
|
|
|
t.Fatalf("Wrong number of outputs in tx; got %d, want %d", len(tx.outputs), nOutputs)
|
|
|
|
}
|
|
|
|
for i, output := range tx.outputs {
|
|
|
|
if !reflect.DeepEqual(output, outputs[i]) {
|
|
|
|
t.Fatalf("Unexpected output; got %s, want %s", output, outputs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkMsgTxOutputs checks that the pkScript and amount of every output in the
|
|
|
|
// given msgtx match the pkScript and amount of every item in the slice of
|
|
|
|
// OutputRequests.
|
|
|
|
func checkMsgTxOutputs(t *testing.T, msgtx *wire.MsgTx, requests []OutputRequest) {
|
|
|
|
nRequests := len(requests)
|
|
|
|
if len(msgtx.TxOut) != nRequests {
|
|
|
|
t.Fatalf("Unexpected number of TxOuts; got %d, want %d", len(msgtx.TxOut), nRequests)
|
|
|
|
}
|
|
|
|
for i, request := range requests {
|
|
|
|
txOut := msgtx.TxOut[i]
|
|
|
|
if !bytes.Equal(txOut.PkScript, request.PkScript) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Unexpected pkScript for request %d; got %v, want %v", i, txOut.PkScript,
|
|
|
|
request.PkScript)
|
|
|
|
}
|
|
|
|
gotAmount := btcutil.Amount(txOut.Value)
|
|
|
|
if gotAmount != request.Amount {
|
|
|
|
t.Fatalf(
|
|
|
|
"Unexpected amount for request %d; got %v, want %v", i, gotAmount, request.Amount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkTxInputs ensures that the tx.inputs match the given inputs.
|
2015-04-07 17:40:13 +02:00
|
|
|
func checkTxInputs(t *testing.T, tx *withdrawalTx, inputs []credit) {
|
2014-11-04 18:22:13 +01:00
|
|
|
if len(tx.inputs) != len(inputs) {
|
|
|
|
t.Fatalf("Wrong number of inputs in tx; got %d, want %d", len(tx.inputs), len(inputs))
|
|
|
|
}
|
|
|
|
for i, input := range tx.inputs {
|
2015-04-07 17:40:13 +02:00
|
|
|
if !reflect.DeepEqual(input, inputs[i]) {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatalf("Unexpected input; got %s, want %s", input, inputs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// signTxAndValidate will construct the signature script for each input of the given
|
|
|
|
// transaction (using the given raw signatures and the pkScripts from credits) and execute
|
|
|
|
// those scripts to validate them.
|
2017-01-19 21:24:57 +01:00
|
|
|
func signTxAndValidate(t *testing.T, mgr *waddrmgr.Manager, addrmgrNs walletdb.ReadBucket, tx *wire.MsgTx, txSigs TxSigs,
|
2015-04-07 17:40:13 +02:00
|
|
|
credits []credit) {
|
2014-11-04 18:22:13 +01:00
|
|
|
for i := range tx.TxIn {
|
2015-04-07 17:40:13 +02:00
|
|
|
pkScript := credits[i].PkScript
|
2017-01-19 21:24:57 +01:00
|
|
|
TstRunWithManagerUnlocked(t, mgr, addrmgrNs, func() {
|
|
|
|
if err := signMultiSigUTXO(mgr, addrmgrNs, tx, i, pkScript, txSigs[i]); err != nil {
|
2014-11-04 18:22:13 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func compareMsgTxAndWithdrawalTxInputs(t *testing.T, msgtx *wire.MsgTx, tx *withdrawalTx) {
|
|
|
|
if len(msgtx.TxIn) != len(tx.inputs) {
|
|
|
|
t.Fatalf("Wrong number of inputs; got %d, want %d", len(msgtx.TxIn), len(tx.inputs))
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, txin := range msgtx.TxIn {
|
2015-04-07 17:40:13 +02:00
|
|
|
outpoint := tx.inputs[i].OutPoint
|
|
|
|
if txin.PreviousOutPoint != outpoint {
|
|
|
|
t.Fatalf("Wrong outpoint; got %v expected %v", txin.PreviousOutPoint, outpoint)
|
2014-11-04 18:22:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func compareMsgTxAndWithdrawalTxOutputs(t *testing.T, msgtx *wire.MsgTx, tx *withdrawalTx) {
|
|
|
|
nOutputs := len(tx.outputs)
|
|
|
|
|
|
|
|
if tx.changeOutput != nil {
|
|
|
|
nOutputs++
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(msgtx.TxOut) != nOutputs {
|
|
|
|
t.Fatalf("Unexpected number of TxOuts; got %d, want %d", len(msgtx.TxOut), nOutputs)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, output := range tx.outputs {
|
|
|
|
outputRequest := output.request
|
|
|
|
txOut := msgtx.TxOut[i]
|
|
|
|
if !bytes.Equal(txOut.PkScript, outputRequest.PkScript) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Unexpected pkScript for outputRequest %d; got %x, want %x",
|
|
|
|
i, txOut.PkScript, outputRequest.PkScript)
|
|
|
|
}
|
|
|
|
gotAmount := btcutil.Amount(txOut.Value)
|
|
|
|
if gotAmount != outputRequest.Amount {
|
|
|
|
t.Fatalf(
|
|
|
|
"Unexpected amount for outputRequest %d; got %v, want %v",
|
|
|
|
i, gotAmount, outputRequest.Amount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally check the change output if it exists
|
|
|
|
if tx.changeOutput != nil {
|
|
|
|
msgTxChange := msgtx.TxOut[len(msgtx.TxOut)-1]
|
|
|
|
if msgTxChange != tx.changeOutput {
|
|
|
|
t.Fatalf("wrong TxOut in msgtx; got %v, want %v", msgTxChange, tx.changeOutput)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkTxChangeAmount(t *testing.T, tx *withdrawalTx, amount btcutil.Amount) {
|
|
|
|
if !tx.hasChange() {
|
|
|
|
t.Fatalf("Transaction has no change.")
|
|
|
|
}
|
|
|
|
if tx.changeOutput.Value != int64(amount) {
|
|
|
|
t.Fatalf("Wrong change output amount; got %d, want %d",
|
|
|
|
tx.changeOutput.Value, int64(amount))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkLastOutputWasSplit ensures that the amount of the last output in the
|
|
|
|
// given tx matches newAmount and that the splitRequest amount is equal to
|
|
|
|
// origAmount - newAmount. It also checks that splitRequest is identical (except
|
|
|
|
// for its amount) to the request of the last output in the tx.
|
|
|
|
func checkLastOutputWasSplit(t *testing.T, w *withdrawal, tx *withdrawalTx,
|
|
|
|
origAmount, newAmount btcutil.Amount) {
|
|
|
|
splitRequest := w.pendingRequests[0]
|
|
|
|
lastOutput := tx.outputs[len(tx.outputs)-1]
|
|
|
|
if lastOutput.amount != newAmount {
|
|
|
|
t.Fatalf("Wrong amount in last output; got %s, want %s", lastOutput.amount, newAmount)
|
|
|
|
}
|
|
|
|
|
|
|
|
wantSplitAmount := origAmount - newAmount
|
|
|
|
if splitRequest.Amount != wantSplitAmount {
|
|
|
|
t.Fatalf("Wrong amount in split output; got %v, want %v", splitRequest.Amount,
|
|
|
|
wantSplitAmount)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the split request is identical (except for its amount) to the
|
|
|
|
// original one.
|
|
|
|
origRequest := lastOutput.request
|
|
|
|
if !bytes.Equal(origRequest.PkScript, splitRequest.PkScript) {
|
|
|
|
t.Fatalf("Wrong pkScript in split request; got %x, want %x", splitRequest.PkScript,
|
|
|
|
origRequest.PkScript)
|
|
|
|
}
|
|
|
|
if origRequest.Server != splitRequest.Server {
|
|
|
|
t.Fatalf("Wrong server in split request; got %s, want %s", splitRequest.Server,
|
|
|
|
origRequest.Server)
|
|
|
|
}
|
|
|
|
if origRequest.Transaction != splitRequest.Transaction {
|
|
|
|
t.Fatalf("Wrong transaction # in split request; got %d, want %d", splitRequest.Transaction,
|
|
|
|
origRequest.Transaction)
|
|
|
|
}
|
|
|
|
|
|
|
|
status := w.status.outputs[origRequest.outBailmentID()].status
|
|
|
|
if status != statusPartial {
|
|
|
|
t.Fatalf("Wrong output status; got '%s', want '%s'", status, statusPartial)
|
|
|
|
}
|
|
|
|
}
|