2021-04-01 02:36:45 -04:00
|
|
|
pub mod harness;
|
|
|
|
|
|
|
|
use harness::alice_run_until::is_xmr_lock_transaction_sent;
|
|
|
|
use harness::FastCancelConfig;
|
2021-06-24 23:40:33 -04:00
|
|
|
use swap::asb::FixedRate;
|
2021-04-01 02:36:45 -04:00
|
|
|
use swap::protocol::alice::AliceState;
|
|
|
|
use swap::protocol::{alice, bob};
|
|
|
|
|
|
|
|
/// Bob locks Btc and Alice locks Xmr. Alice does not act so Bob refunds.
|
|
|
|
/// Eventually Alice comes back online and refunds as well.
|
|
|
|
#[tokio::test]
|
|
|
|
async fn alice_refunds_after_restart_if_bob_already_refunded() {
|
|
|
|
harness::setup_test(FastCancelConfig, |mut ctx| async move {
|
|
|
|
let (bob_swap, _) = ctx.bob_swap().await;
|
|
|
|
let bob_swap = tokio::spawn(bob::run(bob_swap));
|
|
|
|
|
|
|
|
let alice_swap = ctx.alice_next_swap().await;
|
2021-05-04 23:43:46 -04:00
|
|
|
let alice_swap = tokio::spawn(alice::run_until(
|
|
|
|
alice_swap,
|
|
|
|
is_xmr_lock_transaction_sent,
|
|
|
|
FixedRate::default(),
|
|
|
|
));
|
2021-04-01 02:36:45 -04:00
|
|
|
|
|
|
|
let bob_state = bob_swap.await??;
|
|
|
|
ctx.assert_bob_refunded(bob_state).await;
|
|
|
|
|
|
|
|
let alice_state = alice_swap.await??;
|
|
|
|
assert!(matches!(
|
|
|
|
alice_state,
|
|
|
|
AliceState::XmrLockTransactionSent { .. }
|
|
|
|
));
|
|
|
|
|
|
|
|
ctx.restart_alice().await;
|
|
|
|
let alice_swap = ctx.alice_next_swap().await;
|
2021-05-04 23:43:46 -04:00
|
|
|
let alice_swap = tokio::spawn(alice::run(alice_swap, FixedRate::default()));
|
2021-04-01 02:36:45 -04:00
|
|
|
|
|
|
|
let alice_state = alice_swap.await??;
|
|
|
|
ctx.assert_alice_refunded(alice_state).await;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.await;
|
|
|
|
}
|