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

25 lines
792 B
Rust
Raw Normal View History

use monero_harness::Monero;
use spectral::prelude::*;
2020-11-01 23:02:28 +00:00
use std::time::Duration;
use testcontainers::clients::Cli;
2020-11-01 23:02:28 +00:00
use tokio::time;
#[tokio::test]
2020-11-01 23:02:28 +00:00
async fn init_miner_and_mine_to_miner_address() {
let tc = Cli::default();
2020-11-02 05:00:35 +00:00
let (monero, _monerod_container) = Monero::new(&tc, None, None, vec![]).await.unwrap();
2020-11-01 23:02:28 +00:00
2020-11-02 05:00:35 +00:00
let monerod = monero.monerod();
let miner_wallet = monero.wallet("miner").unwrap();
2020-11-01 23:02:28 +00:00
2020-11-02 05:00:35 +00:00
let got_miner_balance = miner_wallet.balance().await.unwrap();
2020-11-01 23:02:28 +00:00
assert_that!(got_miner_balance).is_greater_than(0);
time::delay_for(Duration::from_millis(1010)).await;
2020-11-01 23:02:28 +00:00
// after a bit more than 1 sec another block should have been mined
2020-11-02 05:00:35 +00:00
let block_height = monerod.inner().get_block_count().await.unwrap();
2020-11-01 23:02:28 +00:00
assert_that(&block_height).is_greater_than(70);
}