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

32 lines
910 B
Rust
Raw Normal View History

2021-01-11 01:55:19 +00:00
use crate::testutils::init_tracing;
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;
2021-01-11 01:55:19 +00:00
mod testutils;
#[tokio::test]
2020-11-01 23:02:28 +00:00
async fn init_miner_and_mine_to_miner_address() {
2021-01-11 01:55:19 +00:00
let _guard = init_tracing();
2020-11-01 23:02:28 +00:00
let tc = Cli::default();
let (monero, _monerod_container) = Monero::new(&tc, None, vec![]).await.unwrap();
2020-11-01 23:02:28 +00:00
monero.init(vec![]).await.unwrap();
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::sleep(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-03 00:49:53 +00:00
let block_height = monerod.client().get_block_count().await.unwrap();
2020-11-01 23:02:28 +00:00
assert_that(&block_height).is_greater_than(70);
}