xmr-btc-swap/monero-harness/tests/wallet.rs

51 lines
1.5 KiB
Rust
Raw Normal View History

use monero_harness::Monero;
use spectral::prelude::*;
use testcontainers::clients::Cli;
#[tokio::test]
2020-11-02 03:42:08 +00:00
async fn fund_transfer_and_check_tx_key() {
2020-11-01 23:02:28 +00:00
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, _containers) = Monero::new(&tc, Some("test_".to_string()), None, vec![
2020-11-02 05:00:35 +00:00
"alice".to_string(),
"bob".to_string(),
])
.await
.unwrap();
let alice_wallet = monero.wallet("alice").unwrap();
let bob_wallet = monero.wallet("bob").unwrap();
2020-11-02 03:42:08 +00:00
// fund alice
monero.init(fund_alice, fund_bob).await.unwrap();
2020-11-02 03:42:08 +00:00
// check alice balance
alice_wallet.inner().refresh().await.unwrap();
2020-11-02 05:00:35 +00:00
let got_alice_balance = alice_wallet.balance().await.unwrap();
2020-11-02 03:42:08 +00:00
assert_that(&got_alice_balance).is_equal_to(fund_alice);
// transfer from alice to bob
let bob_address = bob_wallet.address().await.unwrap().address;
let transfer = monero
.transfer_from_alice(&bob_address, send_to_bob)
.await
.unwrap();
bob_wallet.inner().refresh().await.unwrap();
let got_bob_balance = bob_wallet.balance().await.unwrap();
assert_that(&got_bob_balance).is_equal_to(send_to_bob);
2020-11-02 03:42:08 +00:00
// check if tx was actually seen
2020-11-02 03:42:08 +00:00
let tx_id = transfer.tx_hash;
let tx_key = transfer.tx_key;
let res = bob_wallet
2020-11-02 05:00:35 +00:00
.inner()
.check_tx_key(&tx_id, &tx_key, &bob_address)
2020-11-02 03:42:08 +00:00
.await
.expect("failed to check tx by key");
assert_that!(res.received).is_equal_to(send_to_bob);
}