Skip to content

Commit

Permalink
Make TP test module port configurable
Browse files Browse the repository at this point in the history
This enables running multiple TP's across different tests
simultaneously.
  • Loading branch information
jbesraa committed Sep 11, 2024
1 parent b02e3c0 commit c0786f9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions roles/tests-integration/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const VERSION_TP: &str = "0.1.7";
fn download_bitcoind_tarball(download_url: &str) -> Vec<u8> {
let response = minreq::get(download_url)
.send()
.expect(&format!("Cannot reach URL: {}", download_url));
.unwrap_or_else(|_| panic!("Cannot reach URL: {}", download_url));
assert_eq!(
response.status_code, 200,
"URL {} didn't return 200",
Expand Down Expand Up @@ -65,14 +65,16 @@ pub struct TemplateProvider {
}

impl TemplateProvider {
pub fn start() -> Self {
let temp_dir = PathBuf::from("/tmp/.template-provider/");
pub fn start(port: u16) -> Self {
let path_name = format!("/tmp/.template-provider-{}", port);
let temp_dir = PathBuf::from(&path_name);

let mut conf = Conf::default();
let port = format!("-sv2port={}", port);
conf.args.extend(vec![
"-txindex=1",
"-sv2",
"-sv2port=8442",
&port,
"-debug=sv2",
"-sv2interval=20",
"-sv2feedelta=1000",
Expand Down

0 comments on commit c0786f9

Please sign in to comment.