misc: refactor loop tests to use require where possible

pull/541/head
Andras Banki-Horvath 1 year ago
parent bdb4b773ed
commit 049b17ff96
No known key found for this signature in database
GPG Key ID: 80E5375C094198D8

@ -1,7 +1,6 @@
package loop package loop
import ( import (
"bytes"
"context" "context"
"crypto/sha256" "crypto/sha256"
"errors" "errors"
@ -57,9 +56,7 @@ func TestLoopOutSuccess(t *testing.T) {
// Initiate loop out. // Initiate loop out.
info, err := ctx.swapClient.LoopOut(context.Background(), &req) info, err := ctx.swapClient.LoopOut(context.Background(), &req)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
ctx.assertStored() ctx.assertStored()
ctx.assertStatus(loopdb.StateInitiated) ctx.assertStatus(loopdb.StateInitiated)
@ -84,9 +81,7 @@ func TestLoopOutFailOffchain(t *testing.T) {
ctx := createClientTestContext(t, nil) ctx := createClientTestContext(t, nil)
_, err := ctx.swapClient.LoopOut(context.Background(), testRequest) _, err := ctx.swapClient.LoopOut(context.Background(), testRequest)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
ctx.assertStored() ctx.assertStored()
ctx.assertStatus(loopdb.StateInitiated) ctx.assertStatus(loopdb.StateInitiated)
@ -208,14 +203,10 @@ func testLoopOutResume(t *testing.T, confs uint32, expired, preimageRevealed,
amt := btcutil.Amount(50000) amt := btcutil.Amount(50000)
swapPayReq, err := getInvoice(hash, amt, swapInvoiceDesc) swapPayReq, err := getInvoice(hash, amt, swapInvoiceDesc)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
prePayReq, err := getInvoice(hash, 100, prepayInvoiceDesc) prePayReq, err := getInvoice(hash, 100, prepayInvoiceDesc)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
_, senderPubKey := test.CreateKey(1) _, senderPubKey := test.CreateKey(1)
var senderKey [33]byte var senderKey [33]byte
@ -373,10 +364,11 @@ func testLoopOutSuccess(ctx *testContext, amt btcutil.Amount, hash lntypes.Hash,
// Expect client on-chain sweep of HTLC. // Expect client on-chain sweep of HTLC.
sweepTx := ctx.ReceiveTx() sweepTx := ctx.ReceiveTx()
if !bytes.Equal(sweepTx.TxIn[0].PreviousOutPoint.Hash[:], require.Equal(
htlcOutpoint.Hash[:]) { ctx.T, htlcOutpoint.Hash[:],
ctx.T.Fatalf("client not sweeping from htlc tx") sweepTx.TxIn[0].PreviousOutPoint.Hash[:],
} "client not sweeping from htlc tx",
)
var preImageIndex int var preImageIndex int
switch scriptVersion { switch scriptVersion {
@ -390,9 +382,7 @@ func testLoopOutSuccess(ctx *testContext, amt btcutil.Amount, hash lntypes.Hash,
// Check preimage. // Check preimage.
clientPreImage := sweepTx.TxIn[0].Witness[preImageIndex] clientPreImage := sweepTx.TxIn[0].Witness[preImageIndex]
clientPreImageHash := sha256.Sum256(clientPreImage) clientPreImageHash := sha256.Sum256(clientPreImage)
if clientPreImageHash != hash { require.Equal(ctx.T, hash, lntypes.Hash(clientPreImageHash))
ctx.T.Fatalf("incorrect preimage")
}
// Since we successfully published our sweep, we expect the preimage to // Since we successfully published our sweep, we expect the preimage to
// have been pushed to our mock server. // have been pushed to our mock server.

@ -130,16 +130,13 @@ func TestValidateConfTarget(t *testing.T) {
test.confTarget, defaultConf, test.confTarget, defaultConf,
) )
haveErr := err != nil if test.expectErr {
if haveErr != test.expectErr { require.Error(t, err)
t.Fatalf("expected err: %v, got: %v", } else {
test.expectErr, err) require.NoError(t, err)
} }
if target != test.expectedTarget { require.Equal(t, test.expectedTarget, target)
t.Fatalf("expected: %v, got: %v",
test.expectedTarget, target)
}
}) })
} }
} }
@ -199,16 +196,13 @@ func TestValidateLoopInRequest(t *testing.T) {
test.confTarget, external, test.confTarget, external,
) )
haveErr := err != nil if test.expectErr {
if haveErr != test.expectErr { require.Error(t, err)
t.Fatalf("expected err: %v, got: %v", } else {
test.expectErr, err) require.NoError(t, err)
} }
if conf != test.expectedTarget { require.Equal(t, test.expectedTarget, conf)
t.Fatalf("expected: %v, got: %v",
test.expectedTarget, conf)
}
}) })
} }
} }

@ -58,9 +58,8 @@ func testLoopInSuccess(t *testing.T) {
context.Background(), cfg, context.Background(), cfg,
height, req, height, req,
) )
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
inSwap := initResult.swap inSwap := initResult.swap
ctx.store.assertLoopInStored() ctx.store.assertLoopInStored()
@ -142,10 +141,7 @@ func testLoopInSuccess(t *testing.T) {
ctx.assertState(loopdb.StateSuccess) ctx.assertState(loopdb.StateSuccess)
ctx.store.assertLoopInState(loopdb.StateSuccess) ctx.store.assertLoopInState(loopdb.StateSuccess)
err = <-errChan require.NoError(t, <-errChan)
if err != nil {
t.Fatal(err)
}
} }
// TestLoopInTimeout tests scenarios where the server doesn't sweep the htlc // TestLoopInTimeout tests scenarios where the server doesn't sweep the htlc
@ -215,9 +211,7 @@ func testLoopInTimeout(t *testing.T, externalValue int64) {
context.Background(), cfg, context.Background(), cfg,
height, &req, height, &req,
) )
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
inSwap := initResult.swap inSwap := initResult.swap
ctx.store.assertLoopInStored() ctx.store.assertLoopInStored()
@ -289,11 +283,7 @@ func testLoopInTimeout(t *testing.T, externalValue int64) {
ctx.assertState(loopdb.StateFailIncorrectHtlcAmt) ctx.assertState(loopdb.StateFailIncorrectHtlcAmt)
ctx.store.assertLoopInState(loopdb.StateFailIncorrectHtlcAmt) ctx.store.assertLoopInState(loopdb.StateFailIncorrectHtlcAmt)
err = <-errChan require.NoError(t, <-errChan)
if err != nil {
t.Fatal(err)
}
return return
} }
@ -308,9 +298,11 @@ func testLoopInTimeout(t *testing.T, externalValue int64) {
// Expect a signing request for the htlc tx output value. // Expect a signing request for the htlc tx output value.
signReq := <-ctx.lnd.SignOutputRawChannel signReq := <-ctx.lnd.SignOutputRawChannel
if signReq.SignDescriptors[0].Output.Value != htlcTx.TxOut[0].Value { require.Equal(
t.Fatal("invalid signing amount") t, htlcTx.TxOut[0].Value,
} signReq.SignDescriptors[0].Output.Value,
"invalid signing amount",
)
// Expect timeout tx to be published. // Expect timeout tx to be published.
timeoutTx := <-ctx.lnd.TxPublishChannel timeoutTx := <-ctx.lnd.TxPublishChannel
@ -341,10 +333,7 @@ func testLoopInTimeout(t *testing.T, externalValue int64) {
state := ctx.store.assertLoopInState(loopdb.StateFailTimeout) state := ctx.store.assertLoopInState(loopdb.StateFailTimeout)
require.Equal(t, cost, state.Cost) require.Equal(t, cost, state.Cost)
err = <-errChan require.NoError(t, <-errChan)
if err != nil {
t.Fatal(err)
}
} }
// TestLoopInResume tests resuming swaps in various states. // TestLoopInResume tests resuming swaps in various states.
@ -483,17 +472,10 @@ func testLoopInResume(t *testing.T, state loopdb.SwapState, expired bool,
require.NoError(t, err) require.NoError(t, err)
err = ctx.store.CreateLoopIn(testPreimage.Hash(), contract) err = ctx.store.CreateLoopIn(testPreimage.Hash(), contract)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
inSwap, err := resumeLoopInSwap( inSwap, err := resumeLoopInSwap(context.Background(), cfg, pendSwap)
context.Background(), cfg, require.NoError(t, err)
pendSwap,
)
if err != nil {
t.Fatal(err)
}
var height int32 var height int32
if expired { if expired {
@ -512,10 +494,7 @@ func testLoopInResume(t *testing.T, state loopdb.SwapState, expired bool,
}() }()
defer func() { defer func() {
err = <-errChan require.NoError(t, <-errChan)
if err != nil {
t.Fatal(err)
}
select { select {
case <-ctx.lnd.SendPaymentChannel: case <-ctx.lnd.SendPaymentChannel:

@ -63,10 +63,7 @@ func newLoopInTestContext(t *testing.T) *loopInTestContext {
func (c *loopInTestContext) assertState(expectedState loopdb.SwapState) { func (c *loopInTestContext) assertState(expectedState loopdb.SwapState) {
state := <-c.statusChan state := <-c.statusChan
if state.State != expectedState { require.Equal(c.t, expectedState, state.State)
c.t.Fatalf("expected state %v but got %v", expectedState,
state.State)
}
} }
// assertSubscribeInvoice asserts that the client subscribes to invoice updates // assertSubscribeInvoice asserts that the client subscribes to invoice updates

@ -4,7 +4,6 @@ import (
"context" "context"
"errors" "errors"
"math" "math"
"reflect"
"testing" "testing"
"time" "time"
@ -66,7 +65,7 @@ func testLoopOutPaymentParameters(t *testing.T) {
blockEpochChan := make(chan interface{}) blockEpochChan := make(chan interface{})
statusChan := make(chan SwapInfo) statusChan := make(chan SwapInfo)
const maxParts = 5 const maxParts = uint32(5)
chanSet := loopdb.ChannelSet{2, 3} chanSet := loopdb.ChannelSet{2, 3}
@ -77,9 +76,7 @@ func testLoopOutPaymentParameters(t *testing.T) {
initResult, err := newLoopOutSwap( initResult, err := newLoopOutSwap(
context.Background(), cfg, height, &req, context.Background(), cfg, height, &req,
) )
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
swap := initResult.swap swap := initResult.swap
// Execute the swap in its own goroutine. // Execute the swap in its own goroutine.
@ -105,9 +102,7 @@ func testLoopOutPaymentParameters(t *testing.T) {
store.assertLoopOutStored() store.assertLoopOutStored()
state := <-statusChan state := <-statusChan
if state.State != loopdb.StateInitiated { require.Equal(t, loopdb.StateInitiated, state.State)
t.Fatal("unexpected state")
}
// Check that the SwapInfo contains the outgoing chan set // Check that the SwapInfo contains the outgoing chan set
require.Equal(t, chanSet, state.OutgoingChanSet) require.Equal(t, chanSet, state.OutgoingChanSet)
@ -130,18 +125,12 @@ func testLoopOutPaymentParameters(t *testing.T) {
} }
// Assert that it is sent as a multi-part payment. // Assert that it is sent as a multi-part payment.
if swapPayment.MaxParts != maxParts { require.Equal(t, maxParts, swapPayment.MaxParts)
t.Fatalf("Expected %v parts, but got %v",
maxParts, swapPayment.MaxParts)
}
// Verify the outgoing channel set restriction. // Verify the outgoing channel set restriction.
if !reflect.DeepEqual( require.Equal(
[]uint64(req.OutgoingChanSet), swapPayment.OutgoingChanIds, t, []uint64(req.OutgoingChanSet), swapPayment.OutgoingChanIds,
) { )
t.Fatalf("Unexpected outgoing channel set")
}
// Swap is expected to register for confirmation of the htlc. Assert // Swap is expected to register for confirmation of the htlc. Assert
// this to prevent a blocked channel in the mock. // this to prevent a blocked channel in the mock.
@ -152,10 +141,7 @@ func testLoopOutPaymentParameters(t *testing.T) {
cancel() cancel()
// Expect the swap to signal that it was cancelled. // Expect the swap to signal that it was cancelled.
err = <-errChan require.Equal(t, context.Canceled, <-errChan)
if err != context.Canceled {
t.Fatal(err)
}
} }
// TestLateHtlcPublish tests that the client is not revealing the preimage if // TestLateHtlcPublish tests that the client is not revealing the preimage if
@ -198,9 +184,7 @@ func testLateHtlcPublish(t *testing.T) {
initResult, err := newLoopOutSwap( initResult, err := newLoopOutSwap(
context.Background(), cfg, height, testRequest, context.Background(), cfg, height, testRequest,
) )
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
swap := initResult.swap swap := initResult.swap
sweeper := &sweep.Sweeper{Lnd: &lnd.LndServices} sweeper := &sweep.Sweeper{Lnd: &lnd.LndServices}
@ -225,11 +209,8 @@ func testLateHtlcPublish(t *testing.T) {
}() }()
store.assertLoopOutStored() store.assertLoopOutStored()
status := <-statusChan
state := <-statusChan require.Equal(t, loopdb.StateInitiated, status.State)
if state.State != loopdb.StateInitiated {
t.Fatal("unexpected state")
}
signalSwapPaymentResult := ctx.AssertPaid(swapInvoiceDesc) signalSwapPaymentResult := ctx.AssertPaid(swapInvoiceDesc)
signalPrepaymentResult := ctx.AssertPaid(prepayInvoiceDesc) signalPrepaymentResult := ctx.AssertPaid(prepayInvoiceDesc)
@ -249,15 +230,9 @@ func testLateHtlcPublish(t *testing.T) {
store.assertStoreFinished(loopdb.StateFailTimeout) store.assertStoreFinished(loopdb.StateFailTimeout)
status := <-statusChan status = <-statusChan
if status.State != loopdb.StateFailTimeout { require.Equal(t, loopdb.StateFailTimeout, status.State)
t.Fatal("unexpected state") require.NoError(t, <-errChan)
}
err = <-errChan
if err != nil {
t.Fatal(err)
}
} }
// TestCustomSweepConfTarget ensures we are able to sweep a Loop Out HTLC with a // TestCustomSweepConfTarget ensures we are able to sweep a Loop Out HTLC with a
@ -304,9 +279,7 @@ func testCustomSweepConfTarget(t *testing.T) {
initResult, err := newLoopOutSwap( initResult, err := newLoopOutSwap(
context.Background(), cfg, ctx.Lnd.Height, &testReq, context.Background(), cfg, ctx.Lnd.Height, &testReq,
) )
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
swap := initResult.swap swap := initResult.swap
// Set up the required dependencies to execute the swap. // Set up the required dependencies to execute the swap.
@ -339,9 +312,7 @@ func testCustomSweepConfTarget(t *testing.T) {
// The swap should be found in its initial state. // The swap should be found in its initial state.
cfg.store.(*storeMock).assertLoopOutStored() cfg.store.(*storeMock).assertLoopOutStored()
state := <-statusChan state := <-statusChan
if state.State != loopdb.StateInitiated { require.Equal(t, loopdb.StateInitiated, state.State)
t.Fatal("unexpected state")
}
// We'll then pay both the swap and prepay invoice, which should trigger // We'll then pay both the swap and prepay invoice, which should trigger
// the server to publish the on-chain HTLC. // the server to publish the on-chain HTLC.
@ -381,10 +352,7 @@ func testCustomSweepConfTarget(t *testing.T) {
cfg.store.(*storeMock).assertLoopOutState(loopdb.StatePreimageRevealed) cfg.store.(*storeMock).assertLoopOutState(loopdb.StatePreimageRevealed)
status := <-statusChan status := <-statusChan
if status.State != loopdb.StatePreimageRevealed { require.Equal(t, loopdb.StatePreimageRevealed, status.State)
t.Fatalf("expected state %v, got %v",
loopdb.StatePreimageRevealed, status.State)
}
// When using taproot htlcs the flow is different as we do reveal the // When using taproot htlcs the flow is different as we do reveal the
// preimage before sweeping in order for the server to trust us with // preimage before sweeping in order for the server to trust us with
@ -410,10 +378,10 @@ func testCustomSweepConfTarget(t *testing.T) {
t.Helper() t.Helper()
sweepTx := ctx.ReceiveTx() sweepTx := ctx.ReceiveTx()
if sweepTx.TxIn[0].PreviousOutPoint.Hash != htlcTx.TxHash() { require.Equal(
t.Fatalf("expected sweep tx to spend %v, got %v", t, htlcTx.TxHash(),
htlcTx.TxHash(), sweepTx.TxIn[0].PreviousOutPoint) sweepTx.TxIn[0].PreviousOutPoint.Hash,
} )
// The fee used for the sweep transaction is an estimate based // The fee used for the sweep transaction is an estimate based
// on the maximum witness size, so we should expect to see a // on the maximum witness size, so we should expect to see a
@ -427,16 +395,14 @@ func testCustomSweepConfTarget(t *testing.T) {
feeRate, err := ctx.Lnd.WalletKit.EstimateFeeRate( feeRate, err := ctx.Lnd.WalletKit.EstimateFeeRate(
context.Background(), expConfTarget, context.Background(), expConfTarget,
) )
if err != nil { require.NoError(t, err, "unable to retrieve fee estimate")
t.Fatalf("unable to retrieve fee estimate: %v", err)
}
minFee := feeRate.FeeForWeight(weight) minFee := feeRate.FeeForWeight(weight)
maxFee := btcutil.Amount(float64(minFee) * 1.1) // Just an estimate that works to sanity check fee upper bound.
maxFee := btcutil.Amount(float64(minFee) * 1.5)
if fee < minFee && fee > maxFee { require.GreaterOrEqual(t, fee, minFee)
t.Fatalf("expected sweep tx to have fee between %v-%v, "+ require.LessOrEqual(t, fee, maxFee)
"got %v", minFee, maxFee, fee)
}
return sweepTx return sweepTx
} }
@ -479,14 +445,8 @@ func testCustomSweepConfTarget(t *testing.T) {
cfg.store.(*storeMock).assertLoopOutState(loopdb.StateSuccess) cfg.store.(*storeMock).assertLoopOutState(loopdb.StateSuccess)
status = <-statusChan status = <-statusChan
if status.State != loopdb.StateSuccess { require.Equal(t, loopdb.StateSuccess, status.State)
t.Fatalf("expected state %v, got %v", loopdb.StateSuccess, require.NoError(t, <-errChan)
status.State)
}
if err := <-errChan; err != nil {
t.Fatal(err)
}
} }
// TestPreimagePush tests or logic that decides whether to push our preimage to // TestPreimagePush tests or logic that decides whether to push our preimage to

@ -8,6 +8,7 @@ import (
"github.com/lightninglabs/loop/loopdb" "github.com/lightninglabs/loop/loopdb"
"github.com/lightninglabs/loop/test" "github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/lntypes" "github.com/lightningnetwork/lnd/lntypes"
"github.com/stretchr/testify/require"
) )
// storeMock implements a mock client swap store. // storeMock implements a mock client swap store.
@ -239,9 +240,7 @@ func (s *storeMock) assertLoopInState(
s.t.Helper() s.t.Helper()
state := <-s.loopInUpdateChan state := <-s.loopInUpdateChan
if state.State != expectedState { require.Equal(s.t, expectedState, state.State)
s.t.Fatalf("expected state %v, got %v", expectedState, state)
}
return state return state
} }
@ -252,9 +251,8 @@ func (s *storeMock) assertStorePreimageReveal() {
select { select {
case state := <-s.loopOutUpdateChan: case state := <-s.loopOutUpdateChan:
if state.State != loopdb.StatePreimageRevealed { require.Equal(s.t, loopdb.StatePreimageRevealed, state.State)
s.t.Fatalf("unexpected state")
}
case <-time.After(test.Timeout): case <-time.After(test.Timeout):
s.t.Fatalf("expected swap to be marked as preimage revealed") s.t.Fatalf("expected swap to be marked as preimage revealed")
} }
@ -265,10 +263,8 @@ func (s *storeMock) assertStoreFinished(expectedResult loopdb.SwapState) {
select { select {
case state := <-s.loopOutUpdateChan: case state := <-s.loopOutUpdateChan:
if state.State != expectedResult { require.Equal(s.t, expectedResult, state.State)
s.t.Fatalf("expected result %v, but got %v",
expectedResult, state)
}
case <-time.After(test.Timeout): case <-time.After(test.Timeout):
s.t.Fatalf("expected swap to be finished") s.t.Fatalf("expected swap to be finished")
} }

@ -54,9 +54,7 @@ func assertEngineExecution(t *testing.T, valid bool,
done := false done := false
for !done { for !done {
dis, err := vm.DisasmPC() dis, err := vm.DisasmPC()
if err != nil { require.NoError(t, err, "stepping")
t.Fatalf("stepping (%v)\n", err)
}
debugBuf.WriteString(fmt.Sprintf("stepping %v\n", dis)) debugBuf.WriteString(fmt.Sprintf("stepping %v\n", dis))
done, err = vm.Step() done, err = vm.Step()

@ -86,9 +86,11 @@ func (ctx *Context) AssertRegisterSpendNtfn(script []byte) {
select { select {
case spendIntent := <-ctx.Lnd.RegisterSpendChannel: case spendIntent := <-ctx.Lnd.RegisterSpendChannel:
if !bytes.Equal(spendIntent.PkScript, script) { require.Equal(
ctx.T.Fatalf("server not listening for published htlc script") ctx.T, script, spendIntent.PkScript,
} "server not listening for published htlc script",
)
case <-time.After(Timeout): case <-time.After(Timeout):
DumpGoroutines() DumpGoroutines()
ctx.T.Fatalf("spend not subscribed to") ctx.T.Fatalf("spend not subscribed to")
@ -163,10 +165,11 @@ func (ctx *Context) AssertPaid(
payReq := ctx.DecodeInvoice(swapPayment.Invoice) payReq := ctx.DecodeInvoice(swapPayment.Invoice)
if _, ok := ctx.PaidInvoices[*payReq.Description]; ok { _, ok := ctx.PaidInvoices[*payReq.Description]
ctx.T.Fatalf("duplicate invoice paid: %v", require.False(
*payReq.Description) ctx.T, ok,
} "duplicate invoice paid: %v", *payReq.Description,
)
done := func(result error) { done := func(result error) {
if result != nil { if result != nil {
@ -195,9 +198,10 @@ func (ctx *Context) AssertSettled(
select { select {
case preimage := <-ctx.Lnd.SettleInvoiceChannel: case preimage := <-ctx.Lnd.SettleInvoiceChannel:
hash := sha256.Sum256(preimage[:]) hash := sha256.Sum256(preimage[:])
if expectedHash != hash { require.Equal(
ctx.T.Fatalf("server claims with wrong preimage") ctx.T, expectedHash, lntypes.Hash(hash),
} "server claims with wrong preimage",
)
return preimage return preimage
case <-time.After(Timeout): case <-time.After(Timeout):
@ -232,9 +236,8 @@ func (ctx *Context) DecodeInvoice(request string) *zpay32.Invoice {
ctx.T.Helper() ctx.T.Helper()
payReq, err := ctx.Lnd.DecodeInvoice(request) payReq, err := ctx.Lnd.DecodeInvoice(request)
if err != nil { require.NoError(ctx.T, err)
ctx.T.Fatal(err)
}
return payReq return payReq
} }
@ -256,7 +259,5 @@ func (ctx *Context) GetOutputIndex(tx *wire.MsgTx,
// waits for the notification to be processed by selecting on a // waits for the notification to be processed by selecting on a
// dedicated test channel. // dedicated test channel.
func (ctx *Context) NotifyServerHeight(height int32) { func (ctx *Context) NotifyServerHeight(height int32) {
if err := ctx.Lnd.NotifyHeight(height); err != nil { require.NoError(ctx.T, ctx.Lnd.NotifyHeight(height))
ctx.T.Fatal(err)
}
} }

@ -14,6 +14,7 @@ import (
"github.com/lightningnetwork/lnd/lntypes" "github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwire" "github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/zpay32" "github.com/lightningnetwork/lnd/zpay32"
"github.com/stretchr/testify/require"
) )
var ( var (
@ -29,11 +30,10 @@ var (
// GetDestAddr deterministically generates a sweep address for testing. // GetDestAddr deterministically generates a sweep address for testing.
func GetDestAddr(t *testing.T, nr byte) btcutil.Address { func GetDestAddr(t *testing.T, nr byte) btcutil.Address {
destAddr, err := btcutil.NewAddressScriptHash([]byte{nr}, destAddr, err := btcutil.NewAddressScriptHash(
&chaincfg.MainNetParams) []byte{nr}, &chaincfg.MainNetParams,
if err != nil { )
t.Fatal(err) require.NoError(t, err)
}
return destAddr return destAddr
} }

@ -140,9 +140,8 @@ func (ctx *testContext) finish() {
ctx.stop() ctx.stop()
select { select {
case err := <-ctx.runErr: case err := <-ctx.runErr:
if err != nil { require.NoError(ctx.T, err)
ctx.T.Fatal(err)
}
case <-time.After(test.Timeout): case <-time.After(test.Timeout):
ctx.T.Fatal("client not stopping") ctx.T.Fatal("client not stopping")
} }
@ -156,19 +155,12 @@ func (ctx *testContext) finish() {
func (ctx *testContext) notifyHeight(height int32) { func (ctx *testContext) notifyHeight(height int32) {
ctx.T.Helper() ctx.T.Helper()
if err := ctx.Lnd.NotifyHeight(height); err != nil { require.NoError(ctx.T, ctx.Lnd.NotifyHeight(height))
ctx.T.Fatal(err)
}
} }
func (ctx *testContext) assertIsDone() { func (ctx *testContext) assertIsDone() {
if err := ctx.Lnd.IsDone(); err != nil { require.NoError(ctx.T, ctx.Lnd.IsDone())
ctx.T.Fatal(err) require.NoError(ctx.T, ctx.store.isDone())
}
if err := ctx.store.isDone(); err != nil {
ctx.T.Fatal(err)
}
select { select {
case <-ctx.statusChan: case <-ctx.statusChan:

Loading…
Cancel
Save