2021-03-24 02:49:19 -04:00
|
|
|
pub mod harness;
|
2021-03-16 02:18:57 -04:00
|
|
|
|
2021-03-24 02:49:19 -04:00
|
|
|
use harness::bob_run_until::is_btc_locked;
|
|
|
|
use harness::FastPunishConfig;
|
2021-06-24 23:40:33 -04:00
|
|
|
use swap::asb::FixedRate;
|
2021-03-16 02:18:57 -04:00
|
|
|
use swap::protocol::bob::BobState;
|
|
|
|
use swap::protocol::{alice, bob};
|
|
|
|
|
|
|
|
/// Bob locks Btc and Alice locks Xmr. Bob does not act; he fails to send Alice
|
|
|
|
/// the encsig and fail to refund or redeem. Alice punishes.
|
|
|
|
#[tokio::test]
|
|
|
|
async fn alice_punishes_if_bob_never_acts_after_fund() {
|
2021-03-24 02:49:19 -04:00
|
|
|
harness::setup_test(FastPunishConfig, |mut ctx| async move {
|
2021-03-16 02:18:57 -04:00
|
|
|
let (bob_swap, bob_join_handle) = ctx.bob_swap().await;
|
2021-04-15 21:48:15 -04:00
|
|
|
let bob_swap_id = bob_swap.id;
|
2021-03-16 02:18:57 -04:00
|
|
|
let bob_swap = tokio::spawn(bob::run_until(bob_swap, is_btc_locked));
|
|
|
|
|
|
|
|
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-03-16 02:18:57 -04:00
|
|
|
|
|
|
|
let bob_state = bob_swap.await??;
|
|
|
|
assert!(matches!(bob_state, BobState::BtcLocked { .. }));
|
|
|
|
|
|
|
|
let alice_state = alice_swap.await??;
|
|
|
|
ctx.assert_alice_punished(alice_state).await;
|
|
|
|
|
|
|
|
// Restart Bob after Alice punished to ensure Bob transitions to
|
|
|
|
// punished and does not run indefinitely
|
2021-04-08 04:56:26 -04:00
|
|
|
let (bob_swap, _) = ctx
|
|
|
|
.stop_and_resume_bob_from_db(bob_join_handle, bob_swap_id)
|
|
|
|
.await;
|
2021-03-16 02:18:57 -04:00
|
|
|
assert!(matches!(bob_swap.state, BobState::BtcLocked { .. }));
|
|
|
|
|
|
|
|
let bob_state = bob::run(bob_swap).await?;
|
|
|
|
|
|
|
|
ctx.assert_bob_punished(bob_state).await;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.await;
|
|
|
|
}
|