2021-01-21 06:09:53 +00:00
|
|
|
pub mod testutils;
|
|
|
|
|
2021-03-16 06:08:19 +00:00
|
|
|
use swap::protocol::{alice, bob};
|
2021-01-27 06:03:52 +00:00
|
|
|
use testutils::SlowCancelConfig;
|
2021-03-16 06:08:19 +00:00
|
|
|
use tokio::join;
|
2020-12-14 06:24:23 +00:00
|
|
|
|
|
|
|
/// Run the following tests with RUST_MIN_STACK=10000000
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn happy_path() {
|
2021-01-29 02:52:05 +00:00
|
|
|
testutils::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-03-16 06:08:19 +00:00
|
|
|
let (bob_swap, _) = ctx.bob_swap().await;
|
|
|
|
let bob_swap = tokio::spawn(bob::run(bob_swap));
|
2021-01-15 08:34:51 +00:00
|
|
|
|
2021-03-16 06:08:19 +00:00
|
|
|
let alice_swap = ctx.alice_next_swap().await;
|
|
|
|
let alice_swap = tokio::spawn(alice::run(alice_swap));
|
2021-01-22 02:33:31 +00:00
|
|
|
|
2021-03-16 06:08:19 +00: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 00:26:32 +00:00
|
|
|
})
|
2020-12-14 06:24:23 +00:00
|
|
|
.await;
|
|
|
|
}
|