#process #integration-tests #environment #testing #regtest

lightningd

Utility to run a regtest lightningd process, useful in integration testing environment

1 unstable release

0.1.0 Mar 21, 2022

#76 in #integration-tests

21 downloads per month

MIT license

8KB
116 lines

Lightningd

Utility to run a regtest lightningd process, useful in integration testing environment.

let bitcoind_exe = bitcoind::exe_path().expect("bitcoind version feature must be enabled or BITCOIND_EXE env var must be present");
let bitcoind = bitcoind::BitcoinD::new(bitcoind_exe).unwrap();
let lightningd_exe = env::var("LIGHTNINGD_EXE").expect("lightningd path must be specified in LIGHTNINGD_EXE env var");
let lightningd = lightningd::LightningD::new(lightningd_exe, bitcoind).unwrap();

Test

Run test example:

RUST_LOG=debug LIGHTNINGD_EXE=/usr/local/bin/lightningd cargo test --features bitcoind_22_0 -- --nocapture

Dependencies

~9–21MB
~246K SLoC