mod bitcoind; mod electrs; use anyhow::{bail, Context, Result}; use async_trait::async_trait; use bitcoin_harness::{BitcoindRpcApi, Client}; use futures::Future; use get_port::get_port; use libp2p::core::Multiaddr; use libp2p::PeerId; use monero_harness::{image, Monero}; use monero_sys::Daemon; use std::cmp::Ordering; use std::fmt; use std::path::PathBuf; use std::str::FromStr; use std::sync::Arc; use std::time::Duration; use swap::asb::FixedRate; use swap::bitcoin::{CancelTimelock, PunishTimelock}; use swap::cli::api; use swap::database::{AccessMode, SqliteDatabase}; use swap_env::env::{Config, GetConfig}; use swap_fs::ensure_directory_exists; use swap::monero::wallet::no_listener; use swap::monero::Wallets; use swap::network::rendezvous::XmrBtcNamespace; use swap::network::swarm; use swap::protocol::alice::{AliceState, Swap}; use swap::protocol::bob::BobState; use swap::protocol::{alice, bob, Database}; use swap::seed::Seed; use swap::{asb, bitcoin, cli, monero}; use swap_env::env; use tempfile::{NamedTempFile, TempDir}; use testcontainers::clients::Cli; use testcontainers::{Container, RunnableImage}; use tokio::sync::mpsc; use tokio::sync::mpsc::Receiver; use tokio::task::JoinHandle; use tokio::time::{interval, timeout}; use url::Url; use uuid::Uuid; pub async fn setup_test(_config: C, testfn: T) where T: Fn(TestContext) -> F, F: Future>, C: GetConfig, { let cli = Cli::default(); tracing_subscriber::fmt() .with_env_filter("info,swap=debug,monero_harness=debug,monero_rpc=debug,bitcoin_harness=info,testcontainers=info,monero_cpp=info,monero_sys=debug") // add `reqwest::connect::verbose=trace` if you want to logs of the RPC clients .with_test_writer() .init(); let env_config = C::get_config(); let (monero, containers) = init_containers(&cli).await; monero.init_miner().await.unwrap(); let btc_amount = bitcoin::Amount::from_sat(1_000_000); let xmr_amount = monero::Amount::from_monero(btc_amount.to_btc() / FixedRate::RATE).unwrap(); let alice_starting_balances = StartingBalances::new(bitcoin::Amount::ZERO, xmr_amount, Some(10)); let electrs_rpc_port = containers.electrs.get_host_port_ipv4(electrs::RPC_PORT); let alice_seed = Seed::random().unwrap(); let alice_db_path = NamedTempFile::new().unwrap().path().to_path_buf(); let alice_monero_dir = TempDir::new().unwrap().path().join("alice-monero-wallets"); let (alice_bitcoin_wallet, alice_monero_wallet) = init_test_wallets( MONERO_WALLET_NAME_ALICE, containers.bitcoind_url.clone(), &monero, &containers._monerod_container, alice_monero_dir, alice_starting_balances.clone(), electrs_rpc_port, &alice_seed, env_config, ) .await; let alice_listen_port = get_port().expect("Failed to find a free port"); let alice_listen_address: Multiaddr = format!("/ip4/127.0.0.1/tcp/{}", alice_listen_port) .parse() .expect("failed to parse Alice's address"); let (alice_handle, alice_swap_handle) = start_alice( &alice_seed, alice_db_path.clone(), alice_listen_address.clone(), env_config, alice_bitcoin_wallet.clone(), alice_monero_wallet.clone(), ) .await; let bob_seed = Seed::random().unwrap(); let bob_starting_balances = StartingBalances::new(btc_amount * 10, monero::Amount::ZERO, None); let bob_monero_dir = TempDir::new().unwrap().path().join("bob-monero-wallets"); let (bob_bitcoin_wallet, bob_monero_wallet) = init_test_wallets( MONERO_WALLET_NAME_BOB, containers.bitcoind_url, &monero, &containers._monerod_container, bob_monero_dir, bob_starting_balances.clone(), electrs_rpc_port, &bob_seed, env_config, ) .await; let bob_params = BobParams { seed: Seed::random().unwrap(), db_path: NamedTempFile::new().unwrap().path().to_path_buf(), bitcoin_wallet: bob_bitcoin_wallet.clone(), monero_wallet: bob_monero_wallet.clone(), alice_address: alice_listen_address.clone(), alice_peer_id: alice_handle.peer_id, env_config, }; monero.start_miner().await.unwrap(); let test = TestContext { env_config, btc_amount, xmr_amount, alice_seed, alice_db_path, alice_listen_address, alice_starting_balances, alice_bitcoin_wallet, alice_monero_wallet, alice_swap_handle, alice_handle, bob_params, bob_starting_balances, bob_bitcoin_wallet, bob_monero_wallet, monerod_container_id: containers._monerod_container.id().to_string(), }; testfn(test).await.unwrap() } async fn init_containers(cli: &Cli) -> (Monero, Containers<'_>) { let prefix = random_prefix(); let bitcoind_name = format!("{}_{}", prefix, "bitcoind"); let (_bitcoind, bitcoind_url, mapped_port) = init_bitcoind_container(cli, prefix.clone(), bitcoind_name.clone(), prefix.clone()) .await .expect("could not init bitcoind"); let electrs = init_electrs_container(cli, prefix.clone(), bitcoind_name, prefix, mapped_port) .await .expect("could not init electrs"); let (monero, _monerod_container, _monero_wallet_rpc_containers) = Monero::new(cli, vec![MONERO_WALLET_NAME_ALICE, MONERO_WALLET_NAME_BOB]) .await .unwrap(); ( monero, Containers { bitcoind_url, _bitcoind, _monerod_container, _monero_wallet_rpc_containers, electrs, }, ) } async fn init_bitcoind_container( cli: &Cli, volume: String, name: String, network: String, ) -> Result<(Container<'_, bitcoind::Bitcoind>, Url, u16)> { let image = bitcoind::Bitcoind::default().with_volume(volume); let image = RunnableImage::from(image) .with_container_name(name) .with_network(network); let docker = cli.run(image); let port = docker.get_host_port_ipv4(bitcoind::RPC_PORT); let bitcoind_url = { let input = format!( "http://{}:{}@localhost:{}", bitcoind::RPC_USER, bitcoind::RPC_PASSWORD, port ); Url::parse(&input).unwrap() }; init_bitcoind(bitcoind_url.clone(), 5).await?; Ok((docker, bitcoind_url.clone(), bitcoind::RPC_PORT)) } pub async fn init_electrs_container( cli: &Cli, volume: String, bitcoind_container_name: String, network: String, port: u16, ) -> Result> { let bitcoind_rpc_addr = format!("{}:{}", bitcoind_container_name, port); let image = electrs::Electrs::default() .with_volume(volume) .with_daemon_rpc_addr(bitcoind_rpc_addr) .with_tag("latest"); let image = RunnableImage::from(image.self_and_args()) .with_network(network.clone()) .with_container_name(format!("{}_electrs", network)); let docker = cli.run(image); Ok(docker) } async fn start_alice( seed: &Seed, db_path: PathBuf, listen_address: Multiaddr, env_config: Config, bitcoin_wallet: Arc, monero_wallet: Arc, ) -> (AliceApplicationHandle, Receiver) { if let Some(parent_dir) = db_path.parent() { ensure_directory_exists(parent_dir).unwrap(); } if !&db_path.exists() { tokio::fs::File::create(&db_path).await.unwrap(); } let db = Arc::new( SqliteDatabase::open(db_path.as_path(), AccessMode::ReadWrite) .await .unwrap(), ); let min_buy = bitcoin::Amount::from_sat(u64::MIN); let max_buy = bitcoin::Amount::from_sat(u64::MAX); let latest_rate = FixedRate::default(); let resume_only = false; let (mut swarm, _) = swarm::asb( seed, min_buy, max_buy, latest_rate, resume_only, env_config, XmrBtcNamespace::Testnet, &[], None, false, 1, ) .unwrap(); swarm.listen_on(listen_address).unwrap(); let (event_loop, swap_handle) = asb::EventLoop::new( swarm, env_config, bitcoin_wallet, monero_wallet, db, FixedRate::default(), min_buy, max_buy, None, ) .unwrap(); let peer_id = event_loop.peer_id(); let handle = tokio::spawn(event_loop.run()); (AliceApplicationHandle { handle, peer_id }, swap_handle) } #[allow(clippy::too_many_arguments)] async fn init_test_wallets( name: &str, bitcoind_url: Url, monero: &Monero, monerod_container: &Container<'_, image::Monerod>, monero_wallet_dir: PathBuf, starting_balances: StartingBalances, electrum_rpc_port: u16, seed: &Seed, env_config: Config, ) -> (Arc, Arc) { let monerod_port = monerod_container .ports() .map_to_host_port_ipv4(image::RPC_PORT) .expect("rpc port should be mapped to some external port"); let monero_daemon = Daemon { address: format!("http://127.0.0.1:{}", monerod_port), ssl: false, }; let wallets = Wallets::new( monero_wallet_dir, "main".to_string(), monero_daemon, monero::Network::Mainnet, true, None, ) .await .unwrap(); let xmr_wallet = wallets.main_wallet().await; tracing::info!( address = %xmr_wallet.main_address().await, "Initialized monero wallet" ); monero .init_external_wallet( name, &xmr_wallet, starting_balances .xmr_outputs .into_iter() .map(|amount| amount.as_piconero()) .collect(), ) .await .unwrap(); // On regtests we need to allow a mismatched daemon version. // Regtests use the Mainnet network. if env_config.monero_network == monero::Network::Mainnet { xmr_wallet.unsafe_prepare_for_regtest().await; } let electrum_rpc_url = { let input = format!("tcp://@localhost:{}", electrum_rpc_port); Url::parse(&input).unwrap() }; let btc_wallet = swap::bitcoin::wallet::WalletBuilder::default() .seed(seed.clone()) .network(env_config.bitcoin_network) .electrum_rpc_urls(vec![electrum_rpc_url.as_str().to_string()]) .persister(swap::bitcoin::wallet::PersisterConfig::InMemorySqlite) .finality_confirmations(1_u32) .target_block(1_u32) .sync_interval(Duration::from_secs(3)) // high sync interval to speed up tests .build() .await .expect("could not init btc wallet"); if starting_balances.btc != bitcoin::Amount::ZERO { mint( bitcoind_url, btc_wallet.new_address().await.unwrap(), starting_balances.btc, ) .await .expect("could not mint btc starting balance"); let mut interval = interval(Duration::from_secs(1u64)); let mut retries = 0u8; let max_retries = 30u8; loop { retries += 1; btc_wallet.sync().await.unwrap(); let btc_balance = btc_wallet.balance().await.unwrap(); if btc_balance == starting_balances.btc { break; } else if retries == max_retries { panic!( "Bitcoin wallet initialization failed, reached max retries upon balance sync" ) } interval.tick().await; } } tracing::info!("Waiting for monero wallet to sync"); xmr_wallet.wait_until_synced(no_listener()).await.unwrap(); tracing::info!("Monero wallet synced"); (Arc::new(btc_wallet), Arc::new(wallets)) } const MONERO_WALLET_NAME_BOB: &str = "bob"; const MONERO_WALLET_NAME_ALICE: &str = "alice"; const BITCOIN_TEST_WALLET_NAME: &str = "testwallet"; #[derive(Debug, Clone)] pub struct StartingBalances { pub xmr: monero::Amount, pub xmr_outputs: Vec, pub btc: bitcoin::Amount, } impl StartingBalances { /// If monero_outputs is specified the monero balance will be: /// monero_outputs * new_xmr = self_xmr pub fn new(btc: bitcoin::Amount, xmr: monero::Amount, monero_outputs: Option) -> Self { match monero_outputs { None => { if xmr == monero::Amount::ZERO { return Self { xmr, xmr_outputs: vec![], btc, }; } Self { xmr, xmr_outputs: vec![xmr], btc, } } Some(outputs) => { let mut xmr_outputs = Vec::new(); let mut sum_xmr = monero::Amount::ZERO; for _ in 0..outputs { xmr_outputs.push(xmr); sum_xmr = sum_xmr + xmr; } Self { xmr: sum_xmr, xmr_outputs, btc, } } } } } pub struct BobParams { seed: Seed, db_path: PathBuf, bitcoin_wallet: Arc, monero_wallet: Arc, alice_address: Multiaddr, alice_peer_id: PeerId, env_config: Config, } impl BobParams { pub fn get_concentenated_alice_address(&self) -> String { format!( "{}/p2p/{}", self.alice_address.clone(), self.alice_peer_id.to_base58() ) } pub async fn get_change_receive_addresses(&self) -> (bitcoin::Address, monero::Address) { ( self.bitcoin_wallet.new_address().await.unwrap(), self.monero_wallet.main_wallet().await.main_address().await, ) } pub async fn new_swap_from_db(&self, swap_id: Uuid) -> Result<(bob::Swap, cli::EventLoop)> { if let Some(parent_dir) = self.db_path.parent() { ensure_directory_exists(parent_dir)?; } if !self.db_path.exists() { tokio::fs::File::create(&self.db_path).await?; } let db = Arc::new(SqliteDatabase::open(&self.db_path, AccessMode::ReadWrite).await?); let (event_loop, handle) = self.new_eventloop(swap_id, db.clone()).await?; let swap = bob::Swap::from_db( db.clone(), swap_id, self.bitcoin_wallet.clone(), self.monero_wallet.clone(), self.env_config, handle, self.monero_wallet .main_wallet() .await .main_address() .await .into(), ) .await?; Ok((swap, event_loop)) } pub async fn new_swap( &self, btc_amount: bitcoin::Amount, ) -> Result<(bob::Swap, cli::EventLoop)> { let swap_id = Uuid::new_v4(); if let Some(parent_dir) = self.db_path.parent() { ensure_directory_exists(parent_dir)?; } if !self.db_path.exists() { tokio::fs::File::create(&self.db_path).await?; } let db = Arc::new(SqliteDatabase::open(&self.db_path, AccessMode::ReadWrite).await?); let (event_loop, handle) = self.new_eventloop(swap_id, db.clone()).await?; db.insert_peer_id(swap_id, self.alice_peer_id).await?; let swap = bob::Swap::new( db, swap_id, self.bitcoin_wallet.clone(), self.monero_wallet.clone(), self.env_config, handle, self.monero_wallet .main_wallet() .await .main_address() .await .into(), self.bitcoin_wallet.new_address().await?, btc_amount, bitcoin::Amount::from_sat(1000), // Fixed fee of 1000 satoshis for now ); Ok((swap, event_loop)) } pub async fn new_eventloop( &self, swap_id: Uuid, db: Arc, ) -> Result<(cli::EventLoop, cli::EventLoopHandle)> { let identity = self.seed.derive_libp2p_identity(); let behaviour = cli::Behaviour::new( self.alice_peer_id, self.env_config, self.bitcoin_wallet.clone(), (identity.clone(), XmrBtcNamespace::Testnet), ); let mut swarm = swarm::cli(identity.clone(), None, behaviour).await?; swarm.add_peer_address(self.alice_peer_id, self.alice_address.clone()); cli::EventLoop::new(swap_id, swarm, self.alice_peer_id, db.clone()) } } pub struct BobApplicationHandle(JoinHandle<()>); impl BobApplicationHandle { pub fn abort(&self) { self.0.abort() } } pub struct AliceApplicationHandle { handle: JoinHandle<()>, peer_id: PeerId, } impl AliceApplicationHandle { pub fn abort(&self) { self.handle.abort() } } pub struct TestContext { env_config: Config, btc_amount: bitcoin::Amount, xmr_amount: monero::Amount, alice_seed: Seed, alice_db_path: PathBuf, alice_listen_address: Multiaddr, alice_starting_balances: StartingBalances, alice_bitcoin_wallet: Arc, alice_monero_wallet: Arc, alice_swap_handle: mpsc::Receiver, alice_handle: AliceApplicationHandle, pub bob_params: BobParams, bob_starting_balances: StartingBalances, bob_bitcoin_wallet: Arc, bob_monero_wallet: Arc, // Store the container ID as String instead of reference monerod_container_id: String, } impl TestContext { pub async fn get_bob_context(self) -> api::Context { api::Context::for_harness( self.bob_params.seed, self.env_config, self.bob_params.db_path, self.bob_bitcoin_wallet, self.bob_monero_wallet, ) .await } pub async fn restart_alice(&mut self) { self.alice_handle.abort(); let (alice_handle, alice_swap_handle) = start_alice( &self.alice_seed, self.alice_db_path.clone(), self.alice_listen_address.clone(), self.env_config, self.alice_bitcoin_wallet.clone(), self.alice_monero_wallet.clone(), ) .await; self.alice_handle = alice_handle; self.alice_swap_handle = alice_swap_handle; } pub async fn alice_next_swap(&mut self) -> alice::Swap { timeout(Duration::from_secs(20), self.alice_swap_handle.recv()) .await .expect("No Alice swap within 20 seconds, aborting because this test is likely waiting for a swap forever...") .unwrap() } pub async fn bob_swap(&mut self) -> (bob::Swap, BobApplicationHandle) { let (swap, event_loop) = self.bob_params.new_swap(self.btc_amount).await.unwrap(); // ensure the wallet is up to date for concurrent swap tests swap.bitcoin_wallet.sync().await.unwrap(); let join_handle = tokio::spawn(event_loop.run()); (swap, BobApplicationHandle(join_handle)) } pub async fn stop_and_resume_bob_from_db( &mut self, join_handle: BobApplicationHandle, swap_id: Uuid, ) -> (bob::Swap, BobApplicationHandle) { join_handle.abort(); let (swap, event_loop) = self.bob_params.new_swap_from_db(swap_id).await.unwrap(); let join_handle = tokio::spawn(event_loop.run()); (swap, BobApplicationHandle(join_handle)) } pub async fn assert_alice_redeemed(&mut self, state: AliceState) { assert!(matches!(state, AliceState::BtcRedeemed)); assert_eventual_balance( self.alice_bitcoin_wallet.as_ref(), Ordering::Equal, self.alice_redeemed_btc_balance().await, ) .await .unwrap(); assert_eventual_balance( &*self.alice_monero_wallet.main_wallet().await, Ordering::Less, self.alice_redeemed_xmr_balance(), ) .await .unwrap(); } pub async fn assert_alice_refunded(&mut self, state: AliceState) { assert!(matches!(state, AliceState::XmrRefunded)); assert_eventual_balance( self.alice_bitcoin_wallet.as_ref(), Ordering::Equal, self.alice_refunded_btc_balance(), ) .await .unwrap(); // Alice pays fees - comparison does not take exact lock fee into account assert_eventual_balance( &*self.alice_monero_wallet.main_wallet().await, Ordering::Greater, self.alice_refunded_xmr_balance(), ) .await .unwrap(); } pub async fn assert_alice_punished(&self, state: AliceState) { let (cancel_fee, punish_fee) = match state { AliceState::BtcPunished { state3, .. } => (state3.tx_cancel_fee, state3.tx_punish_fee), _ => panic!("Alice is not in btc punished state: {:?}", state), }; assert_eventual_balance( self.alice_bitcoin_wallet.as_ref(), Ordering::Equal, self.alice_punished_btc_balance(cancel_fee, punish_fee) .await, ) .await .unwrap(); assert_eventual_balance( &*self.alice_monero_wallet.main_wallet().await, Ordering::Less, self.alice_punished_xmr_balance(), ) .await .unwrap(); } pub async fn assert_bob_redeemed(&self, state: BobState) { assert_eventual_balance( self.bob_bitcoin_wallet.as_ref(), Ordering::Equal, self.bob_redeemed_btc_balance(state).await.unwrap(), ) .await .unwrap(); assert_eventual_balance( &*self.bob_monero_wallet.main_wallet().await, Ordering::Greater, self.bob_redeemed_xmr_balance(), ) .await .unwrap(); } pub async fn assert_bob_refunded(&self, state: BobState) { self.bob_bitcoin_wallet.sync().await.unwrap(); let (lock_tx_id, cancel_fee, refund_fee) = match state { BobState::BtcRefunded(state6) => ( state6.tx_lock_id(), state6.tx_cancel_fee, state6.tx_refund_fee, ), _ => panic!("Bob is not in btc refunded state: {:?}", state), }; let lock_tx_bitcoin_fee = self .bob_bitcoin_wallet .transaction_fee(lock_tx_id) .await .unwrap(); let btc_balance_after_swap = self.bob_bitcoin_wallet.balance().await.unwrap(); let bob_cancelled_and_refunded = btc_balance_after_swap == self.bob_starting_balances.btc - lock_tx_bitcoin_fee - cancel_fee - refund_fee; assert!(bob_cancelled_and_refunded); assert_eventual_balance( &*self.bob_monero_wallet.main_wallet().await, Ordering::Equal, self.bob_refunded_xmr_balance(), ) .await .unwrap(); } pub async fn assert_bob_punished(&self, state: BobState) { assert_eventual_balance( self.bob_bitcoin_wallet.as_ref(), Ordering::Equal, self.bob_punished_btc_balance(state).await.unwrap(), ) .await .unwrap(); assert_eventual_balance( &*self.bob_monero_wallet.main_wallet().await, Ordering::Equal, self.bob_punished_xmr_balance(), ) .await .unwrap(); } fn alice_redeemed_xmr_balance(&self) -> monero::Amount { self.alice_starting_balances.xmr - self.xmr_amount } async fn alice_redeemed_btc_balance(&self) -> bitcoin::Amount { // Get the last transaction Alice published // This should be btc_redeem let txid = self .alice_bitcoin_wallet .last_published_txid() .await .unwrap(); // Get the fee for the last transaction let fee = self .alice_bitcoin_wallet .transaction_fee(txid) .await .expect("To estimate fee correctly"); self.alice_starting_balances.btc + self.btc_amount - fee } fn bob_redeemed_xmr_balance(&self) -> monero::Amount { self.bob_starting_balances.xmr } async fn bob_redeemed_btc_balance(&self, state: BobState) -> Result { self.bob_bitcoin_wallet.sync().await?; let lock_tx_id = if let BobState::XmrRedeemed { tx_lock_id } = state { tx_lock_id } else { bail!("Bob in not in xmr redeemed state: {:?}", state); }; let lock_tx_bitcoin_fee = self.bob_bitcoin_wallet.transaction_fee(lock_tx_id).await?; Ok(self.bob_starting_balances.btc - self.btc_amount - lock_tx_bitcoin_fee) } fn alice_refunded_xmr_balance(&self) -> monero::Amount { self.alice_starting_balances.xmr - self.xmr_amount } fn alice_refunded_btc_balance(&self) -> bitcoin::Amount { self.alice_starting_balances.btc } fn bob_refunded_xmr_balance(&self) -> monero::Amount { self.bob_starting_balances.xmr } fn alice_punished_xmr_balance(&self) -> monero::Amount { self.alice_starting_balances.xmr - self.xmr_amount } async fn alice_punished_btc_balance( &self, cancel_fee: bitcoin::Amount, punish_fee: bitcoin::Amount, ) -> bitcoin::Amount { self.alice_starting_balances.btc + self.btc_amount - cancel_fee - punish_fee } fn bob_punished_xmr_balance(&self) -> monero::Amount { self.bob_starting_balances.xmr } async fn bob_punished_btc_balance(&self, state: BobState) -> Result { self.bob_bitcoin_wallet.sync().await?; let lock_tx_id = if let BobState::BtcPunished { tx_lock_id, .. } = state { tx_lock_id } else { bail!("Bob in not in btc punished state: {:?}", state); }; let lock_tx_bitcoin_fee = self.bob_bitcoin_wallet.transaction_fee(lock_tx_id).await?; Ok(self.bob_starting_balances.btc - self.btc_amount - lock_tx_bitcoin_fee) } pub async fn stop_alice_monero_wallet_rpc(&self) { tracing::info!("Killing monerod container"); // Use Docker CLI to forcefully kill the container let output = tokio::process::Command::new("docker") .args(["kill", &self.monerod_container_id]) .output() .await .expect("Failed to execute docker kill command"); if output.status.success() { tracing::info!( "Successfully killed monerod container: {}", &self.monerod_container_id ); } else { let stderr = String::from_utf8_lossy(&output.stderr); tracing::error!( "Failed to kill monerod container {}: {}", &self.monerod_container_id, stderr ); } } pub async fn empty_alice_monero_wallet(&self) { let burn_address = monero::Address::from_str("49LEH26DJGuCyr8xzRAzWPUryzp7bpccC7Hie1DiwyfJEyUKvMFAethRLybDYrFdU1eHaMkKQpUPebY4WT3cSjEvThmpjPa").unwrap(); let wallet = self.alice_monero_wallet.main_wallet().await; wallet .sweep(&burn_address) .await .expect("Failed to empty alice monero wallet to burn address"); } pub async fn assert_alice_monero_wallet_empty(&self) { let wallet = self.alice_monero_wallet.main_wallet().await; assert_eventual_balance(&*wallet, Ordering::Equal, monero::Amount::ZERO) .await .unwrap(); } } async fn assert_eventual_balance( wallet: &impl Wallet, ordering: Ordering, expected: A, ) -> Result<()> { let ordering_str = match ordering { Ordering::Less => "less than", Ordering::Equal => "equal to", Ordering::Greater => "greater than", }; let mut current_balance = wallet.get_balance().await?; let assertion = async { while current_balance.partial_cmp(&expected).unwrap() != ordering { tokio::time::sleep(Duration::from_millis(500)).await; wallet.refresh().await?; current_balance = wallet.get_balance().await?; } tracing::debug!( "Assertion successful! Balance {} is {} {}", current_balance, ordering_str, expected ); Result::<_, anyhow::Error>::Ok(()) }; let timeout = Duration::from_secs(10); tokio::time::timeout(timeout, assertion) .await .with_context(|| { format!( "Expected balance to be {} {} after at most {}s but was {}", ordering_str, expected, timeout.as_secs(), current_balance ) })??; Ok(()) } #[async_trait] trait Wallet { type Amount; fn refresh(&self) -> impl Future>; fn get_balance(&self) -> impl Future>; } impl Wallet for monero::Wallet { type Amount = monero::Amount; async fn refresh(&self) -> Result<()> { self.wait_until_synced(no_listener()).await } async fn get_balance(&self) -> Result { Ok(self.total_balance().await.into()) } } impl Wallet for bitcoin::Wallet { type Amount = bitcoin::Amount; async fn refresh(&self) -> Result<()> { self.sync().await } async fn get_balance(&self) -> Result { self.balance().await } } fn random_prefix() -> String { use rand::distributions::Alphanumeric; use rand::{thread_rng, Rng}; use std::iter; const LEN: usize = 8; let mut rng = thread_rng(); let chars: String = iter::repeat(()) .map(|()| rng.sample(Alphanumeric)) .map(char::from) .take(LEN) .collect(); chars } async fn mine(bitcoind_client: Client, reward_address: bitcoin::Address) -> Result<()> { loop { tokio::time::sleep(Duration::from_secs(1)).await; bitcoind_client .generatetoaddress(1, reward_address.clone()) .await?; } } async fn init_bitcoind(node_url: Url, spendable_quantity: u32) -> Result { let bitcoind_client = Client::new(node_url.clone()); bitcoind_client .createwallet(BITCOIN_TEST_WALLET_NAME, None, None, None, None) .await?; let reward_address = bitcoind_client .with_wallet(BITCOIN_TEST_WALLET_NAME)? .getnewaddress(None, None) .await?; let reward_address = reward_address.require_network(bitcoind_client.network().await?)?; bitcoind_client .generatetoaddress(101 + spendable_quantity, reward_address.clone()) .await?; tokio::spawn(mine(bitcoind_client.clone(), reward_address)); Ok(bitcoind_client) } /// Send Bitcoin to the specified address, limited to the spendable bitcoin /// quantity. pub async fn mint(node_url: Url, address: bitcoin::Address, amount: bitcoin::Amount) -> Result<()> { let bitcoind_client = Client::new(node_url.clone()); bitcoind_client .send_to_address(BITCOIN_TEST_WALLET_NAME, address.clone(), amount) .await?; // Confirm the transaction let reward_address = bitcoind_client .with_wallet(BITCOIN_TEST_WALLET_NAME)? .getnewaddress(None, None) .await?; let reward_address = reward_address.require_network(bitcoind_client.network().await?)?; bitcoind_client.generatetoaddress(1, reward_address).await?; Ok(()) } // This is just to keep the containers alive struct Containers<'a> { bitcoind_url: Url, _bitcoind: Container<'a, bitcoind::Bitcoind>, _monerod_container: Container<'a, image::Monerod>, _monero_wallet_rpc_containers: Vec>, electrs: Container<'a, electrs::Electrs>, } pub mod alice_run_until { use swap::protocol::alice::AliceState; pub fn is_xmr_lock_transaction_sent(state: &AliceState) -> bool { matches!(state, AliceState::XmrLockTransactionSent { .. }) } pub fn is_encsig_learned(state: &AliceState) -> bool { matches!(state, AliceState::EncSigLearned { .. }) } pub fn is_btc_redeemed(state: &AliceState) -> bool { matches!(state, AliceState::BtcRedeemed { .. }) } } pub mod bob_run_until { use swap::protocol::bob::BobState; pub fn is_btc_locked(state: &BobState) -> bool { matches!(state, BobState::BtcLocked { .. }) } pub fn is_lock_proof_received(state: &BobState) -> bool { matches!(state, BobState::XmrLockProofReceived { .. }) } pub fn is_xmr_locked(state: &BobState) -> bool { matches!(state, BobState::XmrLocked(..)) } pub fn is_encsig_sent(state: &BobState) -> bool { matches!(state, BobState::EncSigSent(..)) } } pub struct SlowCancelConfig; impl GetConfig for SlowCancelConfig { fn get_config() -> Config { Config { bitcoin_cancel_timelock: CancelTimelock::new(180), ..env::Regtest::get_config() } } } pub struct FastCancelConfig; impl GetConfig for FastCancelConfig { fn get_config() -> Config { Config { bitcoin_cancel_timelock: CancelTimelock::new(10), ..env::Regtest::get_config() } } } pub struct FastPunishConfig; impl GetConfig for FastPunishConfig { fn get_config() -> Config { Config { bitcoin_cancel_timelock: CancelTimelock::new(10), bitcoin_punish_timelock: PunishTimelock::new(10), ..env::Regtest::get_config() } } }