xmr-btc-swap/swap/tests/refund_restart_alice.rs

39 lines
1.5 KiB
Rust
Raw Normal View History

2021-01-18 01:50:49 +00:00
use swap::protocol::{alice, alice::AliceState, bob};
2020-12-14 06:24:23 +00:00
pub mod testutils;
2021-01-18 01:50:49 +00:00
/// Bob locks btc and Alice locks xmr. Alice fails to act so Bob refunds. Alice
/// then also refunds.
2020-12-14 06:24:23 +00:00
#[tokio::test]
async fn given_alice_restarts_after_xmr_is_locked_abort_swap() {
testutils::init(|test| async move {
let alice_swap = test.new_swap_as_alice().await;
let bob_swap = test.new_swap_as_bob().await;
2021-01-18 01:50:49 +00:00
let bob = bob::run(bob_swap);
let bob_handle = tokio::spawn(bob);
2021-01-18 01:50:49 +00:00
let alice_state = alice::run_until(alice_swap, alice::swap::is_xmr_locked)
.await
.unwrap();
2021-01-18 01:50:49 +00:00
assert!(matches!(alice_state, AliceState::XmrLocked {..}));
// Alice does not act, Bob refunds
let bob_state = bob_handle.await.unwrap();
2021-01-18 01:50:49 +00:00
// Once bob has finished Alice is restarted and refunds as well
let alice_swap = test.recover_alice_from_db().await;
assert!(matches!(alice_swap.state, AliceState::XmrLocked {..}));
2021-01-18 01:50:49 +00:00
let alice_state = alice::run(alice_swap).await.unwrap();
2021-01-18 01:50:49 +00:00
// TODO: The test passes like this, but the assertion should be done after Bob
// refunded, not at the end because this can cause side-effects!
// We have to properly wait for the refund tx's finality inside the assertion,
// which requires storing the refund_tx_id in the the state!
test.assert_bob_refunded(bob_state.unwrap()).await;
test.assert_alice_refunded(alice_state).await;
2021-01-18 01:50:49 +00:00
})
.await;
2020-12-14 06:24:23 +00:00
}