2021-03-24 02:49:19 -04:00
|
|
|
pub mod harness;
|
2021-01-21 01:09:53 -05:00
|
|
|
|
2021-03-24 02:49:19 -04:00
|
|
|
use harness::SlowCancelConfig;
|
2021-06-24 23:40:33 -04:00
|
|
|
use swap::asb::FixedRate;
|
2021-03-16 02:08:19 -04:00
|
|
|
use swap::protocol::{alice, bob};
|
|
|
|
use tokio::join;
|
2020-12-14 01:24:23 -05:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn happy_path() {
|
2021-03-24 02:49:19 -04:00
|
|
|
harness::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-03-16 02:08:19 -04:00
|
|
|
let (bob_swap, _) = ctx.bob_swap().await;
|
|
|
|
let bob_swap = tokio::spawn(bob::run(bob_swap));
|
2021-01-15 03:34:51 -05:00
|
|
|
|
2021-03-16 02:08:19 -04:00
|
|
|
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-01-21 21:33:31 -05:00
|
|
|
|
2021-03-16 02:08:19 -04:00
|
|
|
let (bob_state, alice_state) = join!(bob_swap, alice_swap);
|
|
|
|
|
|
|
|
ctx.assert_alice_redeemed(alice_state??).await;
|
|
|
|
ctx.assert_bob_redeemed(bob_state??).await;
|
|
|
|
|
|
|
|
Ok(())
|
2021-01-14 19:26:32 -05:00
|
|
|
})
|
2020-12-14 01:24:23 -05:00
|
|
|
.await;
|
|
|
|
}
|