routing: Fix dropped errors in tests.

lnd: Fix dropped errors in tests.

contractcourt: Fix dropped errors in tests.

htlcswitch: Fix dropped errors in tests.

invoices: Fix dropped error in tests.

lnwallet: Fix dropped errors in tests.

macaroons: Fix dropped error in tests.
This commit is contained in:
Lars Lehtonen 2019-09-13 02:59:07 +00:00
parent ffb8c0cfc3
commit 3b29ecb921
10 changed files with 54 additions and 0 deletions

@ -1762,12 +1762,20 @@ func createInitChannels(revocationWindow int) (*lnwallet.LightningChannel, *lnwa
} }
alicePath, err := ioutil.TempDir("", "alicedb") alicePath, err := ioutil.TempDir("", "alicedb")
if err != nil {
return nil, nil, nil, err
}
dbAlice, err := channeldb.Open(alicePath) dbAlice, err := channeldb.Open(alicePath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err
} }
bobPath, err := ioutil.TempDir("", "bobdb") bobPath, err := ioutil.TempDir("", "bobdb")
if err != nil {
return nil, nil, nil, err
}
dbBob, err := channeldb.Open(bobPath) dbBob, err := channeldb.Open(bobPath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err

@ -358,6 +358,9 @@ func TestContractInsertionRetrieval(t *testing.T) {
t.Fatalf("unable to wipe log: %v", err) t.Fatalf("unable to wipe log: %v", err)
} }
diskResolvers, err = testLog.FetchUnresolvedContracts() diskResolvers, err = testLog.FetchUnresolvedContracts()
if err != nil {
t.Fatalf("unable to fetch unresolved contracts: %v", err)
}
if len(diskResolvers) != 0 { if len(diskResolvers) != 0 {
t.Fatalf("no resolvers should be found, instead %v were", t.Fatalf("no resolvers should be found, instead %v were",
len(diskResolvers)) len(diskResolvers))
@ -611,6 +614,9 @@ func TestStateMutation(t *testing.T) {
// If we try to query for the state again, we should get the default // If we try to query for the state again, we should get the default
// state again. // state again.
arbState, err = testLog.CurrentState() arbState, err = testLog.CurrentState()
if err != nil {
t.Fatalf("unable to query current state: %v", err)
}
if arbState != StateDefault { if arbState != StateDefault {
t.Fatalf("state mismatch: expected %v, got %v", StateDefault, t.Fatalf("state mismatch: expected %v, got %v", StateDefault,
arbState) arbState)

@ -100,6 +100,10 @@ func TestNetworkResultStore(t *testing.T) {
const numResults = 4 const numResults = 4
tempDir, err := ioutil.TempDir("", "testdb") tempDir, err := ioutil.TempDir("", "testdb")
if err != nil {
t.Fatal(err)
}
db, err := channeldb.Open(tempDir) db, err := channeldb.Open(tempDir)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)

@ -264,12 +264,20 @@ func createTestChannel(alicePrivKey, bobPrivKey []byte,
} }
alicePath, err := ioutil.TempDir("", "alicedb") alicePath, err := ioutil.TempDir("", "alicedb")
if err != nil {
return nil, nil, nil, err
}
dbAlice, err := channeldb.Open(alicePath) dbAlice, err := channeldb.Open(alicePath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err
} }
bobPath, err := ioutil.TempDir("", "bobdb") bobPath, err := ioutil.TempDir("", "bobdb")
if err != nil {
return nil, nil, nil, err
}
dbBob, err := channeldb.Open(bobPath) dbBob, err := channeldb.Open(bobPath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err

@ -329,6 +329,9 @@ func TestHoldInvoice(t *testing.T) {
defer timeout(t)() defer timeout(t)()
cdb, cleanup, err := newDB() cdb, cleanup, err := newDB()
if err != nil {
t.Fatal(err)
}
defer cleanup() defer cleanup()
// Instantiate and start the invoice registry. // Instantiate and start the invoice registry.

@ -208,12 +208,20 @@ func CreateTestChannels() (*LightningChannel, *LightningChannel, func(), error)
} }
alicePath, err := ioutil.TempDir("", "alicedb") alicePath, err := ioutil.TempDir("", "alicedb")
if err != nil {
return nil, nil, nil, err
}
dbAlice, err := channeldb.Open(alicePath) dbAlice, err := channeldb.Open(alicePath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err
} }
bobPath, err := ioutil.TempDir("", "bobdb") bobPath, err := ioutil.TempDir("", "bobdb")
if err != nil {
return nil, nil, nil, err
}
dbBob, err := channeldb.Open(bobPath) dbBob, err := channeldb.Open(bobPath)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err

@ -45,6 +45,9 @@ func setupTestRootKeyStorage(t *testing.T) string {
} }
defer store.Close() defer store.Close()
err = store.CreateUnlock(&defaultPw) err = store.CreateUnlock(&defaultPw)
if err != nil {
t.Fatalf("error creating unlock: %v", err)
}
return tempDir return tempDir
} }

@ -1421,6 +1421,9 @@ func TestRouteFailMaxHTLC(t *testing.T) {
// Next, update the middle edge policy to only allow payments up to 100k // Next, update the middle edge policy to only allow payments up to 100k
// msat. // msat.
_, midEdge, _, err := graph.graph.FetchChannelEdgesByID(firstToSecondID) _, midEdge, _, err := graph.graph.FetchChannelEdgesByID(firstToSecondID)
if err != nil {
t.Fatalf("unable to fetch channel edges by ID: %v", err)
}
midEdge.MessageFlags = 1 midEdge.MessageFlags = 1
midEdge.MaxHTLC = payAmt - 1 midEdge.MaxHTLC = payAmt - 1
if err := graph.graph.UpdateEdgePolicy(midEdge); err != nil { if err := graph.graph.UpdateEdgePolicy(midEdge); err != nil {

@ -941,6 +941,9 @@ func TestAddProof(t *testing.T) {
} }
info, _, _, err := ctx.router.GetChannelByID(*chanID) info, _, _, err := ctx.router.GetChannelByID(*chanID)
if err != nil {
t.Fatalf("unable to get channel: %v", err)
}
if info.AuthProof == nil { if info.AuthProof == nil {
t.Fatal("proof have been updated") t.Fatal("proof have been updated")
} }

@ -194,12 +194,20 @@ func createTestPeer(notifier chainntnfs.ChainNotifier,
} }
alicePath, err := ioutil.TempDir("", "alicedb") alicePath, err := ioutil.TempDir("", "alicedb")
if err != nil {
return nil, nil, nil, nil, err
}
dbAlice, err := channeldb.Open(alicePath) dbAlice, err := channeldb.Open(alicePath)
if err != nil { if err != nil {
return nil, nil, nil, nil, err return nil, nil, nil, nil, err
} }
bobPath, err := ioutil.TempDir("", "bobdb") bobPath, err := ioutil.TempDir("", "bobdb")
if err != nil {
return nil, nil, nil, nil, err
}
dbBob, err := channeldb.Open(bobPath) dbBob, err := channeldb.Open(bobPath)
if err != nil { if err != nil {
return nil, nil, nil, nil, err return nil, nil, nil, nil, err