2021-03-24 06:49:19 +00:00
|
|
|
pub mod harness;
|
2021-01-21 06:09:53 +00:00
|
|
|
|
2021-03-24 06:49:19 +00:00
|
|
|
use harness::bob_run_until::is_xmr_locked;
|
|
|
|
use harness::SlowCancelConfig;
|
2021-05-05 03:43:46 +00:00
|
|
|
use swap::protocol::alice::event_loop::FixedRate;
|
2021-03-04 00:28:58 +00:00
|
|
|
use swap::protocol::bob::BobState;
|
2021-03-16 06:08:19 +00:00
|
|
|
use swap::protocol::{alice, bob};
|
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-03-24 06:49:19 +00:00
|
|
|
harness::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-03-16 06:08:19 +00:00
|
|
|
let (bob_swap, bob_join_handle) = ctx.bob_swap().await;
|
2021-04-16 01:48:15 +00:00
|
|
|
let bob_swap_id = bob_swap.id;
|
2021-03-16 06:08:19 +00:00
|
|
|
let bob_swap = tokio::spawn(bob::run_until(bob_swap, is_xmr_locked));
|
2021-01-18 08:56:43 +00:00
|
|
|
|
2021-03-16 06:08:19 +00:00
|
|
|
let alice_swap = ctx.alice_next_swap().await;
|
2021-05-05 03:43:46 +00:00
|
|
|
let alice_swap = tokio::spawn(alice::run(alice_swap, FixedRate::default()));
|
2021-03-16 06:08:19 +00:00
|
|
|
|
|
|
|
let bob_state = bob_swap.await??;
|
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-04-08 08:56:26 +00:00
|
|
|
let (bob_swap, _) = ctx
|
|
|
|
.stop_and_resume_bob_from_db(bob_join_handle, bob_swap_id)
|
|
|
|
.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-03-16 06:08:19 +00:00
|
|
|
let bob_state = bob::run(bob_swap).await?;
|
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-03-16 06:08:19 +00:00
|
|
|
let alice_state = alice_swap.await??;
|
|
|
|
ctx.assert_alice_redeemed(alice_state).await;
|
|
|
|
|
|
|
|
Ok(())
|
2021-01-17 23:16:46 +00:00
|
|
|
})
|
|
|
|
.await;
|
2020-12-18 06:39:04 +00:00
|
|
|
}
|