Skip to content

Commit 3539ad9

Browse files
committed
Add full_cycle test using the new Electrum chain source
.. as we do with `BitcoindRpc`, we now test `Electrum` support by running the `full_cycle` test in CI.
1 parent 1f3cfc7 commit 3539ad9

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

tests/common/mod.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub(crate) mod logging;
1212

1313
use logging::TestLogWriter;
1414

15-
use ldk_node::config::{Config, EsploraSyncConfig};
15+
use ldk_node::config::{Config, ElectrumSyncConfig, EsploraSyncConfig};
1616
use ldk_node::io::sqlite_store::SqliteStore;
1717
use ldk_node::payment::{PaymentDirection, PaymentKind, PaymentStatus};
1818
use ldk_node::{
@@ -255,6 +255,7 @@ type TestNode = Node;
255255
#[derive(Clone)]
256256
pub(crate) enum TestChainSource<'a> {
257257
Esplora(&'a ElectrsD),
258+
Electrum(&'a ElectrsD),
258259
BitcoindRpc(&'a BitcoinD),
259260
}
260261

@@ -313,6 +314,13 @@ pub(crate) fn setup_node(
313314
sync_config.lightning_wallet_sync_interval_secs = 100000;
314315
builder.set_chain_source_esplora(esplora_url.clone(), Some(sync_config));
315316
},
317+
TestChainSource::Electrum(electrsd) => {
318+
let electrum_url = format!("tcp://{}", electrsd.electrum_url);
319+
let mut sync_config = ElectrumSyncConfig::default();
320+
sync_config.onchain_wallet_sync_interval_secs = 100000;
321+
sync_config.lightning_wallet_sync_interval_secs = 100000;
322+
builder.set_chain_source_electrum(electrum_url.clone(), Some(sync_config));
323+
},
316324
TestChainSource::BitcoindRpc(bitcoind) => {
317325
let rpc_host = bitcoind.params.rpc_socket.ip().to_string();
318326
let rpc_port = bitcoind.params.rpc_socket.port();

tests/integration_tests_rust.rs

+8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ fn channel_full_cycle() {
4343
do_channel_full_cycle(node_a, node_b, &bitcoind.client, &electrsd.client, false, true, false);
4444
}
4545

46+
#[test]
47+
fn channel_full_cycle_electrum() {
48+
let (bitcoind, electrsd) = setup_bitcoind_and_electrsd();
49+
let chain_source = TestChainSource::Electrum(&electrsd);
50+
let (node_a, node_b) = setup_two_nodes(&chain_source, false, true, false);
51+
do_channel_full_cycle(node_a, node_b, &bitcoind.client, &electrsd.client, false, true, false);
52+
}
53+
4654
#[test]
4755
fn channel_full_cycle_bitcoind() {
4856
let (bitcoind, electrsd) = setup_bitcoind_and_electrsd();

0 commit comments

Comments
 (0)