mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
796863359f
* ci: add cargo check on rust stable * refactor: upgrade secp256kfun and fix resulting issues * build(deps): update sigma_fun and ecdsa_fun to a52142cf7f #1520 #1521 * chore: fix clippy issue * update to 91112f80b24 * bump to 294de1721add * chore(deps): remove spectral spectral fails to compile on rust stable 1.76 due to dep on deprecated rustc-serialize * secp256kfun: update to 7da9d277 and set rev in manifest * update to 6fdc5d8 * switch to crates.io versions of ecdsa_fun and sigma_fun * ci: update toolchain to 1.74 and fix draft action * clippy fixes --------- Co-authored-by: binarybaron <86064887+binarybaron@users.noreply.github.com>
69 lines
2.2 KiB
Rust
69 lines
2.2 KiB
Rust
use monero_harness::{Monero, MoneroWalletRpc};
|
|
use monero_rpc::wallet::MoneroWalletRpc as _;
|
|
use std::time::Duration;
|
|
use testcontainers::clients::Cli;
|
|
use tokio::time::sleep;
|
|
use tracing_subscriber::util::SubscriberInitExt;
|
|
|
|
#[tokio::test]
|
|
async fn fund_transfer_and_check_tx_key() {
|
|
let _guard = tracing_subscriber::fmt()
|
|
.with_env_filter("warn,test=debug,monero_harness=debug,monero_rpc=debug")
|
|
.set_default();
|
|
|
|
let fund_alice: u64 = 1_000_000_000_000;
|
|
let fund_bob = 0;
|
|
let send_to_bob = 5_000_000_000;
|
|
|
|
let tc = Cli::default();
|
|
let (monero, _monerod_container, _wallet_containers) =
|
|
Monero::new(&tc, vec!["alice", "bob"]).await.unwrap();
|
|
let alice_wallet = monero.wallet("alice").unwrap();
|
|
let bob_wallet = monero.wallet("bob").unwrap();
|
|
|
|
monero.init_miner().await.unwrap();
|
|
monero.init_wallet("alice", vec![fund_alice]).await.unwrap();
|
|
monero.init_wallet("bob", vec![fund_bob]).await.unwrap();
|
|
monero.start_miner().await.unwrap();
|
|
|
|
// check alice balance
|
|
let got_alice_balance = alice_wallet.balance().await.unwrap();
|
|
assert_eq!(got_alice_balance, fund_alice);
|
|
|
|
// transfer from alice to bob
|
|
let bob_address = bob_wallet.address().await.unwrap().address;
|
|
let transfer = alice_wallet
|
|
.transfer(&bob_address, send_to_bob)
|
|
.await
|
|
.unwrap();
|
|
|
|
wait_for_wallet_to_catch_up(bob_wallet, send_to_bob).await;
|
|
|
|
let got_bob_balance = bob_wallet.balance().await.unwrap();
|
|
assert_eq!(got_bob_balance, send_to_bob);
|
|
|
|
// check if tx was actually seen
|
|
let tx_id = transfer.tx_hash;
|
|
let tx_key = transfer.tx_key.unwrap().to_string();
|
|
let res = bob_wallet
|
|
.client()
|
|
.check_tx_key(tx_id, tx_key, bob_address)
|
|
.await
|
|
.expect("failed to check tx by key");
|
|
|
|
assert_eq!(res.received, send_to_bob);
|
|
}
|
|
|
|
async fn wait_for_wallet_to_catch_up(wallet: &MoneroWalletRpc, expected_balance: u64) {
|
|
let max_retry = 15;
|
|
let mut retry = 0;
|
|
loop {
|
|
retry += 1;
|
|
let balance = wallet.balance().await.unwrap();
|
|
if balance == expected_balance || max_retry == retry {
|
|
break;
|
|
}
|
|
sleep(Duration::from_secs(1)).await;
|
|
}
|
|
}
|