2021-03-24 17:49:19 +11:00
|
|
|
pub mod harness;
|
2021-01-21 17:09:53 +11:00
|
|
|
|
2021-03-24 17:49:19 +11:00
|
|
|
use harness::SlowCancelConfig;
|
2021-03-16 17:08:19 +11:00
|
|
|
use swap::protocol::{alice, bob};
|
|
|
|
use tokio::join;
|
2020-12-14 17:24:23 +11:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn happy_path() {
|
2021-03-24 17:49:19 +11:00
|
|
|
harness::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-03-16 17:08:19 +11:00
|
|
|
let (bob_swap, _) = ctx.bob_swap().await;
|
|
|
|
let bob_swap = tokio::spawn(bob::run(bob_swap));
|
2021-01-15 19:34:51 +11:00
|
|
|
|
2021-03-16 17:08:19 +11:00
|
|
|
let alice_swap = ctx.alice_next_swap().await;
|
|
|
|
let alice_swap = tokio::spawn(alice::run(alice_swap));
|
2021-01-22 13:33:31 +11:00
|
|
|
|
2021-03-16 17:08:19 +11: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-15 11:26:32 +11:00
|
|
|
})
|
2020-12-14 17:24:23 +11:00
|
|
|
.await;
|
|
|
|
}
|