2020-12-14 17:24:23 +11:00
|
|
|
pub mod testutils;
|
|
|
|
|
2021-01-29 13:52:05 +11:00
|
|
|
use swap::protocol::{alice, alice::AliceState, bob};
|
2021-01-27 17:03:52 +11:00
|
|
|
use testutils::{alice_run_until::is_xmr_locked, FastCancelConfig};
|
2021-01-21 17:09:53 +11:00
|
|
|
|
2021-01-18 12:50:49 +11:00
|
|
|
/// Bob locks btc and Alice locks xmr. Alice fails to act so Bob refunds. Alice
|
|
|
|
/// then also refunds.
|
2020-12-14 17:24:23 +11:00
|
|
|
#[tokio::test]
|
2021-01-19 12:43:20 +11:00
|
|
|
async fn given_alice_restarts_after_xmr_is_locked_refund_swap() {
|
2021-01-29 13:52:05 +11:00
|
|
|
testutils::setup_test(FastCancelConfig, |mut ctx| async move {
|
2021-01-22 13:33:31 +11:00
|
|
|
let (alice_swap, alice_join_handle) = ctx.new_swap_as_alice().await;
|
|
|
|
let (bob_swap, _) = ctx.new_swap_as_bob().await;
|
2021-01-18 12:50:49 +11:00
|
|
|
|
2021-01-18 19:56:43 +11:00
|
|
|
let bob = bob::run(bob_swap);
|
|
|
|
let bob_handle = tokio::spawn(bob);
|
2021-01-18 12:50:49 +11:00
|
|
|
|
2021-01-21 19:37:52 +11:00
|
|
|
let alice_state = alice::run_until(alice_swap, is_xmr_locked).await.unwrap();
|
2021-01-22 13:33:31 +11:00
|
|
|
assert!(matches!(alice_state,
|
|
|
|
AliceState::XmrLocked {..}));
|
2021-01-18 12:50:49 +11:00
|
|
|
|
|
|
|
// Alice does not act, Bob refunds
|
2021-01-18 19:56:43 +11:00
|
|
|
let bob_state = bob_handle.await.unwrap();
|
2021-01-19 12:43:20 +11:00
|
|
|
ctx.assert_bob_refunded(bob_state.unwrap()).await;
|
2021-01-18 12:50:49 +11:00
|
|
|
|
|
|
|
// Once bob has finished Alice is restarted and refunds as well
|
2021-01-22 13:33:31 +11:00
|
|
|
let alice_swap = ctx.stop_and_resume_alice_from_db(alice_join_handle).await;
|
2021-01-18 19:56:43 +11:00
|
|
|
assert!(matches!(alice_swap.state, AliceState::XmrLocked {..}));
|
2021-01-18 12:50:49 +11:00
|
|
|
|
2021-01-18 19:56:43 +11:00
|
|
|
let alice_state = alice::run(alice_swap).await.unwrap();
|
2021-01-18 12:50:49 +11:00
|
|
|
|
2021-01-20 10:40:40 +11:00
|
|
|
ctx.assert_alice_refunded(alice_state).await;
|
2021-01-18 12:50:49 +11:00
|
|
|
})
|
|
|
|
.await;
|
2020-12-14 17:24:23 +11:00
|
|
|
}
|