-
Notifications
You must be signed in to change notification settings - Fork 913
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
channeld: Add aggressive restart test
Changelog-None
- Loading branch information
1 parent
cb2163e
commit 4500661
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from fixtures import * # noqa: F401,F403 | ||
import pytest | ||
import unittest | ||
from utils import ( | ||
TEST_NETWORK | ||
) | ||
|
||
|
||
@pytest.mark.openchannel('v1') | ||
@pytest.mark.openchannel('v2') | ||
@unittest.skipIf(TEST_NETWORK != 'regtest', 'elementsd doesnt yet support PSBT features we need') | ||
def test_agressive_restart(node_factory, bitcoind): | ||
l1, l2 = node_factory.line_graph(2, fundamount=1000000, wait_for_announce=True, opts={'experimental-splicing': None}) | ||
|
||
chan_id = l1.get_channel_id(l2) | ||
|
||
for _ in range(20): | ||
l1.rpc.stfu_channels([chan_id]) | ||
l1.rpc.abort_channels([chan_id]) | ||
l1.daemon.wait_for_log(r'peer_in WIRE_CHANNEL_REESTABLISH') | ||
l2.daemon.wait_for_log(r'peer_in WIRE_CHANNEL_REESTABLISH') |