2021-01-21 01:09:53 -05:00
|
|
|
pub mod testutils;
|
|
|
|
|
2021-01-27 01:03:52 -05:00
|
|
|
use swap::{
|
|
|
|
config::GetConfig,
|
|
|
|
protocol::{alice, bob, bob::BobState},
|
|
|
|
};
|
|
|
|
use testutils::{bob_run_until::is_btc_locked, FastPunishConfig};
|
2020-12-14 01:24:23 -05:00
|
|
|
|
|
|
|
/// 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-01-27 01:03:52 -05:00
|
|
|
testutils::setup_test(FastPunishConfig::get_config(), |mut ctx| async move {
|
2021-01-21 21:33:31 -05: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 03:56:43 -05:00
|
|
|
|
|
|
|
let alice = alice::run(alice_swap);
|
|
|
|
let alice_handle = tokio::spawn(alice);
|
|
|
|
|
|
|
|
let bob_state = bob::run_until(bob_swap, is_btc_locked).await.unwrap();
|
2020-12-14 01:24:23 -05:00
|
|
|
|
2021-01-17 18:57:52 -05:00
|
|
|
assert!(matches!(bob_state, BobState::BtcLocked {..}));
|
|
|
|
|
2021-01-18 03:56:43 -05:00
|
|
|
let alice_state = alice_handle.await.unwrap();
|
2021-01-19 18:40:40 -05:00
|
|
|
ctx.assert_alice_punished(alice_state.unwrap()).await;
|
2021-01-17 18:57:52 -05:00
|
|
|
|
|
|
|
// Restart Bob after Alice punished to ensure Bob transitions to
|
|
|
|
// punished and does not run indefinitely
|
2021-01-21 21:33:31 -05:00
|
|
|
let bob_swap = ctx.stop_and_resume_bob_from_db(bob_join_handle).await;
|
2021-01-18 03:56:43 -05:00
|
|
|
assert!(matches!(bob_swap.state, BobState::BtcLocked {..}));
|
|
|
|
|
|
|
|
let bob_state = bob::run(bob_swap).await.unwrap();
|
|
|
|
|
2021-01-19 18:40:40 -05:00
|
|
|
ctx.assert_bob_punished(bob_state).await;
|
2021-01-17 18:57:52 -05:00
|
|
|
})
|
|
|
|
.await;
|
2020-12-14 01:24:23 -05:00
|
|
|
}
|