mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-17 23:30:02 +02:00
Merge pull request #6832 from kklash/switch-test-resource-cleanup
htlcswitch: clean up test resources and temporary files
This commit is contained in:
commit
b387e2c718
@ -16,9 +16,9 @@ transaction](https://github.com/lightningnetwork/lnd/pull/6730).
|
|||||||
allow specifying a root key for macaroons during wallet init rather than
|
allow specifying a root key for macaroons during wallet init rather than
|
||||||
having lnd randomly generate one for you.
|
having lnd randomly generate one for you.
|
||||||
|
|
||||||
* [A new `SignedInputs`](https://github.com/lightningnetwork/lnd/pull/6771)
|
* [A new `SignedInputs`](https://github.com/lightningnetwork/lnd/pull/6771)
|
||||||
field is added to `SignPsbtResponse` that returns the indices of inputs
|
field is added to `SignPsbtResponse` that returns the indices of inputs
|
||||||
that were signed by our wallet. Prior to this change `SignPsbt` didn't
|
that were signed by our wallet. Prior to this change `SignPsbt` didn't
|
||||||
indicate whether the Psbt held any inputs for our wallet to sign.
|
indicate whether the Psbt held any inputs for our wallet to sign.
|
||||||
|
|
||||||
* [Add list addresses RPC](https://github.com/lightningnetwork/lnd/pull/6596).
|
* [Add list addresses RPC](https://github.com/lightningnetwork/lnd/pull/6596).
|
||||||
@ -75,8 +75,8 @@ crash](https://github.com/lightningnetwork/lnd/pull/7019).
|
|||||||
|
|
||||||
## `lncli`
|
## `lncli`
|
||||||
* [Add an `insecure` flag to skip tls auth as well as a `metadata` string slice
|
* [Add an `insecure` flag to skip tls auth as well as a `metadata` string slice
|
||||||
flag](https://github.com/lightningnetwork/lnd/pull/6818) that allows the
|
flag](https://github.com/lightningnetwork/lnd/pull/6818) that allows the
|
||||||
caller to specify key-value string pairs that should be appended to the
|
caller to specify key-value string pairs that should be appended to the
|
||||||
outgoing context.
|
outgoing context.
|
||||||
|
|
||||||
* [Fix](https://github.com/lightningnetwork/lnd/pull/6858) command line argument
|
* [Fix](https://github.com/lightningnetwork/lnd/pull/6858) command line argument
|
||||||
@ -96,7 +96,7 @@ crash](https://github.com/lightningnetwork/lnd/pull/7019).
|
|||||||
|
|
||||||
## Code Health
|
## Code Health
|
||||||
|
|
||||||
* [test: use `T.TempDir` to create temporary test
|
* [test: use `T.TempDir` to create temporary test
|
||||||
directory](https://github.com/lightningnetwork/lnd/pull/6710)
|
directory](https://github.com/lightningnetwork/lnd/pull/6710)
|
||||||
|
|
||||||
* [The `tlv` package now allows decoding records larger than 65535 bytes. The
|
* [The `tlv` package now allows decoding records larger than 65535 bytes. The
|
||||||
@ -108,6 +108,8 @@ crash](https://github.com/lightningnetwork/lnd/pull/7019).
|
|||||||
* [The `golangci-lint` tool was updated to
|
* [The `golangci-lint` tool was updated to
|
||||||
`v1.46.2`](https://github.com/lightningnetwork/lnd/pull/6731)
|
`v1.46.2`](https://github.com/lightningnetwork/lnd/pull/6731)
|
||||||
|
|
||||||
|
* [Tests in `htlcswitch` will now clean up the temporary resources they create](https://github.com/lightningnetwork/lnd/pull/6832).
|
||||||
|
|
||||||
* Updated the github actions to use `make fmt-check` in its [build
|
* Updated the github actions to use `make fmt-check` in its [build
|
||||||
process](https://github.com/lightningnetwork/lnd/pull/6853).
|
process](https://github.com/lightningnetwork/lnd/pull/6853).
|
||||||
|
|
||||||
|
@ -628,6 +628,7 @@ func makeCircuitDB(t *testing.T, path string) *channeldb.DB {
|
|||||||
|
|
||||||
db, err := channeldb.Open(path)
|
db, err := channeldb.Open(path)
|
||||||
require.NoError(t, err, "unable to open channel db")
|
require.NoError(t, err, "unable to open channel db")
|
||||||
|
t.Cleanup(func() { db.Close() })
|
||||||
|
|
||||||
return db
|
return db
|
||||||
}
|
}
|
||||||
|
@ -1945,7 +1945,8 @@ func newSingleLinkTestHarness(chanAmt, chanReserve btcutil.Amount) (
|
|||||||
|
|
||||||
cleanUp := func() {
|
cleanUp := func() {
|
||||||
close(alicePeer.quit)
|
close(alicePeer.quit)
|
||||||
defer fCleanUp()
|
invoiceRegistry.cleanup()
|
||||||
|
fCleanUp()
|
||||||
}
|
}
|
||||||
|
|
||||||
return aliceLink, bobLc.channel, bticker.Force, start, cleanUp,
|
return aliceLink, bobLc.channel, bticker.Force, start, cleanUp,
|
||||||
|
@ -9,6 +9,7 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"testing"
|
"testing"
|
||||||
@ -161,30 +162,7 @@ type mockServer struct {
|
|||||||
|
|
||||||
var _ lnpeer.Peer = (*mockServer)(nil)
|
var _ lnpeer.Peer = (*mockServer)(nil)
|
||||||
|
|
||||||
func initDB() (*channeldb.DB, error) {
|
|
||||||
tempPath, err := ioutil.TempDir("", "switchdb")
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
db, err := channeldb.Open(tempPath)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return db, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func initSwitchWithDB(startingHeight uint32, db *channeldb.DB) (*Switch, error) {
|
func initSwitchWithDB(startingHeight uint32, db *channeldb.DB) (*Switch, error) {
|
||||||
var err error
|
|
||||||
|
|
||||||
if db == nil {
|
|
||||||
db, err = initDB()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
signAliasUpdate := func(u *lnwire.ChannelUpdate) (*ecdsa.Signature,
|
signAliasUpdate := func(u *lnwire.ChannelUpdate) (*ecdsa.Signature,
|
||||||
error) {
|
error) {
|
||||||
|
|
||||||
@ -226,6 +204,24 @@ func initSwitchWithDB(startingHeight uint32, db *channeldb.DB) (*Switch, error)
|
|||||||
return New(cfg, startingHeight)
|
return New(cfg, startingHeight)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func initSwitchWithTempDB(t testing.TB, startingHeight uint32) (*Switch,
|
||||||
|
error) {
|
||||||
|
|
||||||
|
tempPath := filepath.Join(t.TempDir(), "switchdb")
|
||||||
|
db, err := channeldb.Open(tempPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
t.Cleanup(func() { db.Close() })
|
||||||
|
|
||||||
|
s, err := initSwitchWithDB(startingHeight, db)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return s, nil
|
||||||
|
}
|
||||||
|
|
||||||
func newMockServer(t testing.TB, name string, startingHeight uint32,
|
func newMockServer(t testing.TB, name string, startingHeight uint32,
|
||||||
db *channeldb.DB, defaultDelta uint32) (*mockServer, error) {
|
db *channeldb.DB, defaultDelta uint32) (*mockServer, error) {
|
||||||
|
|
||||||
@ -235,13 +231,25 @@ func newMockServer(t testing.TB, name string, startingHeight uint32,
|
|||||||
|
|
||||||
pCache := newMockPreimageCache()
|
pCache := newMockPreimageCache()
|
||||||
|
|
||||||
htlcSwitch, err := initSwitchWithDB(startingHeight, db)
|
var (
|
||||||
|
htlcSwitch *Switch
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
if db == nil {
|
||||||
|
htlcSwitch, err = initSwitchWithTempDB(t, startingHeight)
|
||||||
|
} else {
|
||||||
|
htlcSwitch, err = initSwitchWithDB(startingHeight, db)
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
t.Cleanup(func() { _ = htlcSwitch.Stop() })
|
||||||
|
|
||||||
registry := newMockRegistry(defaultDelta)
|
registry := newMockRegistry(defaultDelta)
|
||||||
|
|
||||||
|
t.Cleanup(func() { registry.cleanup() })
|
||||||
|
|
||||||
return &mockServer{
|
return &mockServer{
|
||||||
t: t,
|
t: t,
|
||||||
id: id,
|
id: id,
|
||||||
|
@ -106,6 +106,7 @@ func TestNetworkResultStore(t *testing.T) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
t.Cleanup(func() { db.Close() })
|
||||||
|
|
||||||
store := newNetworkResultStore(db)
|
store := newNetworkResultStore(db)
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ func TestSwitchAddDuplicateLink(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -90,7 +90,7 @@ func TestSwitchHasActiveLink(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -140,7 +140,7 @@ func TestSwitchSendPending(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create bob server")
|
require.NoError(t, err, "unable to create bob server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -464,7 +464,7 @@ func testSwitchForwardMapping(t *testing.T, alicePrivate, aliceZeroConf,
|
|||||||
)
|
)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -676,7 +676,7 @@ func testSwitchSendHtlcMapping(t *testing.T, zeroConf, useAlias bool, alias,
|
|||||||
)
|
)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -738,7 +738,7 @@ func TestSwitchUpdateScid(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -882,7 +882,7 @@ func TestSwitchForward(t *testing.T) {
|
|||||||
t.Fatalf("unable to create bob server: %v", err)
|
t.Fatalf("unable to create bob server: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to init switch: %v", err)
|
t.Fatalf("unable to init switch: %v", err)
|
||||||
}
|
}
|
||||||
@ -999,6 +999,7 @@ func TestSwitchForwardFailAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -1092,6 +1093,7 @@ func TestSwitchForwardFailAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1187,6 +1189,7 @@ func TestSwitchForwardSettleAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -1280,6 +1283,7 @@ func TestSwitchForwardSettleAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1378,6 +1382,7 @@ func TestSwitchForwardDropAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -1463,6 +1468,7 @@ func TestSwitchForwardDropAfterFullAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1532,6 +1538,7 @@ func TestSwitchForwardFailAfterHalfAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -1612,6 +1619,7 @@ func TestSwitchForwardFailAfterHalfAdd(t *testing.T) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1687,6 +1695,7 @@ func TestSwitchForwardCircuitPersistence(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -1766,6 +1775,7 @@ func TestSwitchForwardCircuitPersistence(t *testing.T) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1857,6 +1867,7 @@ func TestSwitchForwardCircuitPersistence(t *testing.T) {
|
|||||||
|
|
||||||
cdb3, err := channeldb.Open(tempPath)
|
cdb3, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to reopen channeldb")
|
require.NoError(t, err, "unable to reopen channeldb")
|
||||||
|
t.Cleanup(func() { cdb3.Close() })
|
||||||
|
|
||||||
s3, err := initSwitchWithDB(testStartingHeight, cdb3)
|
s3, err := initSwitchWithDB(testStartingHeight, cdb3)
|
||||||
require.NoError(t, err, "unable reinit switch")
|
require.NoError(t, err, "unable reinit switch")
|
||||||
@ -1937,7 +1948,7 @@ func TestCircularForwards(t *testing.T) {
|
|||||||
err)
|
err)
|
||||||
}
|
}
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to init switch: %v", err)
|
t.Fatalf("unable to init switch: %v", err)
|
||||||
}
|
}
|
||||||
@ -2111,7 +2122,7 @@ func TestCheckCircularForward(t *testing.T) {
|
|||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -2216,7 +2227,7 @@ func testSkipIneligibleLinksMultiHopForward(t *testing.T,
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create bob server")
|
require.NoError(t, err, "unable to create bob server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -2339,7 +2350,7 @@ func testSkipLinkLocalForward(t *testing.T, eligible bool,
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -2394,7 +2405,7 @@ func TestSwitchCancel(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create bob server")
|
require.NoError(t, err, "unable to create bob server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -2505,7 +2516,7 @@ func TestSwitchAddSamePayment(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create bob server")
|
require.NoError(t, err, "unable to create bob server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -2658,7 +2669,7 @@ func TestSwitchSendPayment(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -3075,7 +3086,7 @@ func TestSwitchGetPaymentResult(t *testing.T) {
|
|||||||
var preimg lntypes.Preimage
|
var preimg lntypes.Preimage
|
||||||
preimg[0] = 3
|
preimg[0] = 3
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -3178,7 +3189,7 @@ func TestInvalidFailure(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err, "unable to create alice server")
|
require.NoError(t, err, "unable to create alice server")
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
if err := s.Start(); err != nil {
|
if err := s.Start(); err != nil {
|
||||||
t.Fatalf("unable to start switch: %v", err)
|
t.Fatalf("unable to start switch: %v", err)
|
||||||
@ -3768,6 +3779,7 @@ func TestSwitchHoldForward(t *testing.T) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err, "unable to open channeldb")
|
require.NoError(t, err, "unable to open channeldb")
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err, "unable to init switch")
|
require.NoError(t, err, "unable to init switch")
|
||||||
@ -4401,7 +4413,7 @@ func TestSwitchMailboxDust(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -4525,9 +4537,14 @@ func TestSwitchResolution(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Even though we intend to Stop s later in the test, it is safe to
|
||||||
|
// defer this Stop since its execution it is protected by an atomic
|
||||||
|
// guard, guaranteeing it executes at most once.
|
||||||
|
t.Cleanup(func() { var _ = s.Stop() })
|
||||||
|
|
||||||
err = s.Start()
|
err = s.Start()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
@ -4702,6 +4719,7 @@ func testSwitchForwardFailAlias(t *testing.T, zeroConf bool) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -4777,6 +4795,7 @@ func testSwitchForwardFailAlias(t *testing.T, zeroConf bool) {
|
|||||||
|
|
||||||
cdb2, err := channeldb.Open(tempPath)
|
cdb2, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
t.Cleanup(func() { cdb2.Close() })
|
||||||
|
|
||||||
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
s2, err := initSwitchWithDB(testStartingHeight, cdb2)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -4916,6 +4935,7 @@ func testSwitchAliasFailAdd(t *testing.T, zeroConf, private, useAlias bool) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
defer cdb.Close()
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
@ -5099,7 +5119,7 @@ func testSwitchHandlePacketForward(t *testing.T, zeroConf, private,
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
defer cleanUp()
|
defer cleanUp()
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, nil)
|
s, err := initSwitchWithTempDB(t, testStartingHeight)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to init switch: %v", err)
|
t.Fatalf("unable to init switch: %v", err)
|
||||||
}
|
}
|
||||||
@ -5255,6 +5275,7 @@ func testSwitchAliasInterceptFail(t *testing.T, zeroConf bool) {
|
|||||||
|
|
||||||
cdb, err := channeldb.Open(tempPath)
|
cdb, err := channeldb.Open(tempPath)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
t.Cleanup(func() { cdb.Close() })
|
||||||
|
|
||||||
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
s, err := initSwitchWithDB(testStartingHeight, cdb)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user