2021-01-21 01:09:53 -05:00
|
|
|
pub mod testutils;
|
|
|
|
|
2021-02-08 19:15:55 -05:00
|
|
|
use swap::protocol::bob;
|
2021-01-27 01:03:52 -05:00
|
|
|
use testutils::SlowCancelConfig;
|
2020-12-14 01:24:23 -05:00
|
|
|
|
|
|
|
/// Run the following tests with RUST_MIN_STACK=10000000
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn happy_path() {
|
2021-01-28 21:52:05 -05:00
|
|
|
testutils::setup_test(SlowCancelConfig, |mut ctx| async move {
|
2021-01-21 21:33:31 -05:00
|
|
|
let (bob_swap, _) = ctx.new_swap_as_bob().await;
|
2021-01-15 03:34:51 -05:00
|
|
|
|
2021-02-08 19:15:55 -05:00
|
|
|
let bob_state = bob::run(bob_swap).await;
|
2021-01-21 21:33:31 -05:00
|
|
|
|
2021-02-08 19:15:55 -05:00
|
|
|
ctx.assert_alice_redeemed().await;
|
2021-01-19 18:40:40 -05:00
|
|
|
ctx.assert_bob_redeemed(bob_state.unwrap()).await;
|
2021-01-14 19:26:32 -05:00
|
|
|
})
|
2020-12-14 01:24:23 -05:00
|
|
|
.await;
|
|
|
|
}
|