mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
Update LND, Aperture, and Taproot Assets to revisions using the btcd v2 modules, and update lndclient to v0.21.0-3. Migrate Loop chain, transaction, and address types to their corresponding v2 packages. The lndclient release includes the migration from: https://github.com/lightninglabs/lndclient/pull/280 Taproot Assets is temporarily replaced with its btcd v2 revision because the v0.8 release branch has not adopted the new modules. This raises the minimum Go version to 1.26 and changes exported address types.
86 lines
2 KiB
Go
86 lines
2 KiB
Go
package loopd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/btcsuite/btcd/chainhash/v2"
|
|
"github.com/btcsuite/btcd/wire/v2"
|
|
"github.com/lightninglabs/loop/staticaddr/deposit"
|
|
)
|
|
|
|
// TestDepositBlocksUntilExpiry checks blocks-until-expiry handling for
|
|
// confirmed and unconfirmed deposits.
|
|
func TestDepositBlocksUntilExpiry(t *testing.T) {
|
|
t.Run("unconfirmed", func(t *testing.T) {
|
|
if blocks := depositBlocksUntilExpiry(0, 144, 500); blocks != 144 {
|
|
t.Fatalf("expected 144 blocks for unconfirmed deposit, got %d",
|
|
blocks)
|
|
}
|
|
})
|
|
|
|
t.Run("confirmed", func(t *testing.T) {
|
|
if blocks := depositBlocksUntilExpiry(450, 144, 500); blocks != 94 {
|
|
t.Fatalf("expected 94 blocks until expiry, got %d",
|
|
blocks)
|
|
}
|
|
})
|
|
}
|
|
|
|
// TestWithdrawAllDepositOutpoints checks `all` withdrawal handling for
|
|
// confirmed and unconfirmed deposits.
|
|
func TestWithdrawAllDepositOutpoints(t *testing.T) {
|
|
t.Run("rejects unconfirmed", func(t *testing.T) {
|
|
deposits := []*deposit.Deposit{
|
|
{
|
|
OutPoint: wire.OutPoint{
|
|
Hash: chainhash.Hash{1},
|
|
Index: 1,
|
|
},
|
|
},
|
|
{
|
|
OutPoint: wire.OutPoint{
|
|
Hash: chainhash.Hash{2},
|
|
Index: 2,
|
|
},
|
|
ConfirmationHeight: 123,
|
|
},
|
|
}
|
|
|
|
_, err := withdrawAllDepositOutpoints(deposits)
|
|
if err == nil {
|
|
t.Fatal("expected unconfirmed deposit to fail all withdrawal")
|
|
}
|
|
})
|
|
|
|
t.Run("returns all confirmed", func(t *testing.T) {
|
|
first := wire.OutPoint{
|
|
Hash: chainhash.Hash{3},
|
|
Index: 3,
|
|
}
|
|
second := wire.OutPoint{
|
|
Hash: chainhash.Hash{4},
|
|
Index: 4,
|
|
}
|
|
deposits := []*deposit.Deposit{
|
|
{
|
|
OutPoint: first,
|
|
ConfirmationHeight: 123,
|
|
},
|
|
{
|
|
OutPoint: second,
|
|
ConfirmationHeight: 124,
|
|
},
|
|
}
|
|
|
|
outpoints, err := withdrawAllDepositOutpoints(deposits)
|
|
if err != nil {
|
|
t.Fatalf("expected confirmed deposits to succeed: %v", err)
|
|
}
|
|
if len(outpoints) != 2 {
|
|
t.Fatalf("expected 2 outpoints, got %d", len(outpoints))
|
|
}
|
|
if outpoints[0] != first || outpoints[1] != second {
|
|
t.Fatal("expected all confirmed outpoints to remain selected")
|
|
}
|
|
})
|
|
}
|