2021-01-21 06:09:53 +00:00
|
|
|
pub mod testutils;
|
|
|
|
|
2021-01-29 02:52:05 +00:00
|
|
|
use swap::protocol::{alice, bob, bob::BobState};
|
2021-01-27 06:03:52 +00:00
|
|
|
use testutils::{bob_run_until::is_xmr_locked, SlowCancelConfig};
|
2020-12-10 03:59:09 +00:00
|
|
|
|
2020-12-18 06:39:04 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn given_bob_restarts_after_xmr_is_locked_resume_swap() {
|
2021-01-29 02:52:05 +00:00
|
|
|
testutils::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-01-22 02:33:31 +00:00
|
|
|
let (alice_swap, _) = ctx.new_swap_as_alice().await;
|
|
|
|
let (bob_swap, bob_join_handle) = ctx.new_swap_as_bob().await;
|
2021-01-18 08:56:43 +00:00
|
|
|
|
|
|
|
let alice_handle = alice::run(alice_swap);
|
|
|
|
let alice_swap_handle = tokio::spawn(alice_handle);
|
|
|
|
|
|
|
|
let bob_state = bob::run_until(bob_swap, is_xmr_locked).await.unwrap();
|
2020-12-18 06:39:04 +00:00
|
|
|
|
2021-02-03 05:20:59 +00:00
|
|
|
assert!(matches!(bob_state, BobState::XmrLocked { .. }));
|
2020-12-18 06:39:04 +00:00
|
|
|
|
2021-02-01 07:13:08 +00:00
|
|
|
let (bob_swap, _) = ctx.stop_and_resume_bob_from_db(bob_join_handle).await;
|
2021-02-03 05:20:59 +00:00
|
|
|
assert!(matches!(bob_swap.state, BobState::XmrLocked { .. }));
|
2020-12-18 06:39:04 +00:00
|
|
|
|
2021-01-18 08:56:43 +00:00
|
|
|
let bob_state = bob::run(bob_swap).await.unwrap();
|
2020-12-18 06:39:04 +00:00
|
|
|
|
2021-01-19 23:40:40 +00:00
|
|
|
ctx.assert_bob_redeemed(bob_state).await;
|
2020-12-18 06:39:04 +00:00
|
|
|
|
2021-01-17 23:16:46 +00:00
|
|
|
let alice_state = alice_swap_handle.await.unwrap();
|
2021-01-19 23:40:40 +00:00
|
|
|
ctx.assert_alice_redeemed(alice_state.unwrap()).await;
|
2021-01-17 23:16:46 +00:00
|
|
|
})
|
|
|
|
.await;
|
2020-12-18 06:39:04 +00:00
|
|
|
}
|