Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose test helpers #484

Merged
merged 5 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,7 @@ dependencies = [
"ohttp-relay",
"once_cell",
"payjoin-directory",
"payjoin-test-utils",
"rcgen",
"reqwest",
"rustls 0.22.4",
Expand Down Expand Up @@ -1647,6 +1648,7 @@ dependencies = [
"once_cell",
"payjoin",
"payjoin-directory",
"payjoin-test-utils",
"rcgen",
"reqwest",
"rustls 0.22.4",
Expand Down Expand Up @@ -1682,6 +1684,28 @@ dependencies = [
"tracing-subscriber",
]

[[package]]
name = "payjoin-test-utils"
version = "0.1.0"
dependencies = [
"bitcoin",
"bitcoincore-rpc",
"bitcoind",
"http",
"log",
"ohttp-relay",
"once_cell",
"payjoin-directory",
"rcgen",
"reqwest",
"testcontainers",
"testcontainers-modules",
"tokio",
"tracing",
"tracing-subscriber",
"url",
]

[[package]]
name = "pbkdf2"
version = "0.11.0"
Expand Down
24 changes: 24 additions & 0 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,7 @@ dependencies = [
"ohttp-relay",
"once_cell",
"payjoin-directory",
"payjoin-test-utils",
"rcgen",
"reqwest",
"rustls 0.22.4",
Expand Down Expand Up @@ -1647,6 +1648,7 @@ dependencies = [
"once_cell",
"payjoin",
"payjoin-directory",
"payjoin-test-utils",
"rcgen",
"reqwest",
"rustls 0.22.4",
Expand Down Expand Up @@ -1682,6 +1684,28 @@ dependencies = [
"tracing-subscriber",
]

[[package]]
name = "payjoin-test-utils"
version = "0.1.0"
dependencies = [
"bitcoin",
"bitcoincore-rpc",
"bitcoind",
"http",
"log",
"ohttp-relay",
"once_cell",
"payjoin-directory",
"rcgen",
"reqwest",
"testcontainers",
"testcontainers-modules",
"tokio",
"tracing",
"tracing-subscriber",
"url",
]

[[package]]
name = "pbkdf2"
version = "0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["payjoin", "payjoin-cli", "payjoin-directory"]
members = ["payjoin", "payjoin-cli", "payjoin-directory", "payjoin-test-utils"]
resolver = "2"

[patch.crates-io.payjoin]
Expand Down
25 changes: 25 additions & 0 deletions payjoin-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "payjoin-test-utils"
version = "0.1.0"
edition = "2021"
authors = ["Dan Gould <[email protected]>"]
rust-version = "1.63"
license = "MIT"

[dependencies]
bitcoin = { version = "0.32.5", features = ["base64"] }
bitcoincore-rpc = "0.19.0"
bitcoind = { version = "0.36.0", features = ["0_21_2"] }
http = "1"
log = "0.4.7"
ohttp-relay = { version = "0.0.9", features = ["_test-util"] }
once_cell = "1"
payjoin-directory = { path = "../payjoin-directory", features = ["_danger-local-https"] }
rcgen = "0.11"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
testcontainers = "0.15.0"
testcontainers-modules = { version = "0.1.3", features = ["redis"] }
tokio = { version = "1.12.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = "2.2.2"
116 changes: 116 additions & 0 deletions payjoin-test-utils/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
use std::env;
use std::sync::Arc;
use std::time::Duration;

use bitcoin::Amount;
use bitcoind::bitcoincore_rpc::json::AddressType;
use bitcoind::bitcoincore_rpc::{self, RpcApi};
use http::StatusCode;
use log::{log_enabled, Level};
use once_cell::sync::OnceCell;
use reqwest::{Client, ClientBuilder};
use tracing_subscriber::{EnvFilter, FmtSubscriber};
use url::Url;

pub type BoxError = Box<dyn std::error::Error + 'static>;
pub type BoxSendSyncError = Box<dyn std::error::Error + Send + Sync>;

static INIT_TRACING: OnceCell<()> = OnceCell::new();

pub fn init_tracing() {
INIT_TRACING.get_or_init(|| {
let subscriber = FmtSubscriber::builder()
.with_env_filter(EnvFilter::from_default_env())
.with_test_writer()
.finish();

tracing::subscriber::set_global_default(subscriber)
.expect("failed to set global default subscriber");
});
}

pub async fn init_directory(
db_host: String,
local_cert_key: (Vec<u8>, Vec<u8>),
) -> std::result::Result<
(u16, tokio::task::JoinHandle<std::result::Result<(), BoxSendSyncError>>),
BoxSendSyncError,
> {
println!("Database running on {}", db_host);
let timeout = Duration::from_secs(2);
payjoin_directory::listen_tcp_with_tls_on_free_port(db_host, timeout, local_cert_key).await
}

// generates or gets a DER encoded localhost cert and key.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You didn't introduce it but this should be a docstring with /// prefix

pub fn local_cert_key() -> (Vec<u8>, Vec<u8>) {
let cert =
rcgen::generate_simple_self_signed(vec!["0.0.0.0".to_string(), "localhost".to_string()])
.expect("Failed to generate cert");
let cert_der = cert.serialize_der().expect("Failed to serialize cert");
let key_der = cert.serialize_private_key_der();
(cert_der, key_der)
}

pub fn init_bitcoind_sender_receiver(
sender_address_type: Option<AddressType>,
receiver_address_type: Option<AddressType>,
) -> Result<(bitcoind::BitcoinD, bitcoincore_rpc::Client, bitcoincore_rpc::Client), BoxError> {
let bitcoind_exe =
env::var("BITCOIND_EXE").ok().or_else(|| bitcoind::downloaded_exe_path().ok()).unwrap();
let mut conf = bitcoind::Conf::default();
conf.view_stdout = log_enabled!(Level::Debug);
let bitcoind = bitcoind::BitcoinD::with_conf(bitcoind_exe, &conf)?;
let receiver = bitcoind.create_wallet("receiver")?;
let receiver_address = receiver.get_new_address(None, receiver_address_type)?.assume_checked();
let sender = bitcoind.create_wallet("sender")?;
let sender_address = sender.get_new_address(None, sender_address_type)?.assume_checked();
bitcoind.client.generate_to_address(1, &receiver_address)?;
bitcoind.client.generate_to_address(101, &sender_address)?;

assert_eq!(
Amount::from_btc(50.0)?,
receiver.get_balances()?.mine.trusted,
"receiver doesn't own bitcoin"
);

assert_eq!(
Amount::from_btc(50.0)?,
sender.get_balances()?.mine.trusted,
"sender doesn't own bitcoin"
);
Ok((bitcoind, sender, receiver))
}

pub fn http_agent(cert_der: Vec<u8>) -> Result<Client, BoxError> {
Ok(http_agent_builder(cert_der)?.build()?)
}

fn http_agent_builder(cert_der: Vec<u8>) -> Result<ClientBuilder, BoxError> {
Ok(ClientBuilder::new()
.danger_accept_invalid_certs(true)
.use_rustls_tls()
.add_root_certificate(reqwest::tls::Certificate::from_der(cert_der.as_slice()).unwrap()))
}

const TESTS_TIMEOUT: Duration = Duration::from_secs(20);
const WAIT_SERVICE_INTERVAL: Duration = Duration::from_secs(3);

pub async fn wait_for_service_ready(
service_url: Url,
agent: Arc<Client>,
) -> Result<(), &'static str> {
let health_url = service_url.join("/health").map_err(|_| "Invalid URL")?;
let start = std::time::Instant::now();

while start.elapsed() < TESTS_TIMEOUT {
let request_result =
agent.get(health_url.as_str()).send().await.map_err(|_| "Bad request")?;
match request_result.status() {
StatusCode::OK => return Ok(()),
StatusCode::NOT_FOUND => return Err("Endpoint not found"),
_ => std::thread::sleep(WAIT_SERVICE_INTERVAL),
}
}

Err("Timeout waiting for service to be ready")
}
1 change: 1 addition & 0 deletions payjoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ serde_json = "1.0.108"
bitcoind = { version = "0.36.0", features = ["0_21_2"] }
http = "1"
payjoin-directory = { path = "../payjoin-directory", features = ["_danger-local-https"] }
payjoin-test-utils = { path = "../payjoin-test-utils" }
ohttp-relay = { version = "0.0.9", features = ["_test-util"] }
once_cell = "1"
rcgen = { version = "0.11" }
Expand Down