mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-29 17:19:33 +02:00
chainntnfs: ensure previous test succeeded before running
This commit is contained in:
parent
fb429d658b
commit
f03e242515
@ -109,11 +109,15 @@ func syncNotifierWithMiner(t *testing.T, notifier *BitcoindNotifier,
|
||||
// TestHistoricalConfDetailsTxIndex ensures that we correctly retrieve
|
||||
// historical confirmation details using the backend node's txindex.
|
||||
func TestHistoricalConfDetailsTxIndex(t *testing.T) {
|
||||
t.Run("rpc polling enabled", func(st *testing.T) {
|
||||
success := t.Run("rpc polling enabled", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
testHistoricalConfDetailsTxIndex(st, true)
|
||||
})
|
||||
|
||||
if !success {
|
||||
return
|
||||
}
|
||||
|
||||
t.Run("rpc polling disabled", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
testHistoricalConfDetailsTxIndex(st, false)
|
||||
@ -207,11 +211,15 @@ func testHistoricalConfDetailsTxIndex(t *testing.T, rpcPolling bool) {
|
||||
// historical confirmation details using the set of fallback methods when the
|
||||
// backend node's txindex is disabled.
|
||||
func TestHistoricalConfDetailsNoTxIndex(t *testing.T) {
|
||||
t.Run("rpc polling enabled", func(st *testing.T) {
|
||||
success := t.Run("rpc polling enabled", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
testHistoricalConfDetailsNoTxIndex(st, true)
|
||||
})
|
||||
|
||||
if !success {
|
||||
return
|
||||
}
|
||||
|
||||
t.Run("rpc polling disabled", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
testHistoricalConfDetailsNoTxIndex(st, false)
|
||||
|
@ -12,11 +12,15 @@ import (
|
||||
// TestInterfaces executes the generic notifier test suite against a bitcoind
|
||||
// powered chain notifier.
|
||||
func TestInterfaces(t *testing.T) {
|
||||
t.Run("bitcoind", func(st *testing.T) {
|
||||
success := t.Run("bitcoind", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
chainntnfstest.TestInterfaces(st, "bitcoind")
|
||||
})
|
||||
|
||||
if !success {
|
||||
return
|
||||
}
|
||||
|
||||
t.Run("bitcoind rpc polling", func(st *testing.T) {
|
||||
st.Parallel()
|
||||
chainntnfstest.TestInterfaces(st, "bitcoind-rpc-polling")
|
||||
|
@ -173,7 +173,7 @@ func TestTxNotifierRegistrationValidation(t *testing.T) {
|
||||
|
||||
for _, testCase := range testCases {
|
||||
testCase := testCase
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
success := t.Run(testCase.name, func(t *testing.T) {
|
||||
hintCache := newMockHintCache()
|
||||
n := chainntnfs.NewTxNotifier(
|
||||
10, chainntnfs.ReorgSafetyLimit, hintCache, hintCache,
|
||||
@ -201,6 +201,10 @@ func TestTxNotifierRegistrationValidation(t *testing.T) {
|
||||
"\"%v\", got \"%v\"", testCase.err, err)
|
||||
}
|
||||
})
|
||||
|
||||
if !success {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user