mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-11-02 09:40:17 +00:00
8a2eb07928
Simple renames and structure changes, no logical changes.
59 lines
1.7 KiB
Rust
59 lines
1.7 KiB
Rust
use rand::rngs::OsRng;
|
|
use swap::protocol::{alice, alice::AliceState, bob};
|
|
|
|
pub mod testutils;
|
|
|
|
#[tokio::test]
|
|
async fn given_alice_restarts_after_encsig_is_learned_resume_swap() {
|
|
testutils::test(|alice_harness, bob_harness| async move {
|
|
let alice = alice_harness.new_alice().await;
|
|
let bob = bob_harness.new_bob().await;
|
|
|
|
let bob_swap = bob::swap(
|
|
bob.state,
|
|
bob.event_loop_handle,
|
|
bob.db,
|
|
bob.bitcoin_wallet.clone(),
|
|
bob.monero_wallet.clone(),
|
|
OsRng,
|
|
bob.swap_id,
|
|
);
|
|
let bob_swap_handle = tokio::spawn(bob_swap);
|
|
|
|
let alice_state = alice::run_until(
|
|
alice.state,
|
|
alice::swap::is_encsig_learned,
|
|
alice.event_loop_handle,
|
|
alice.bitcoin_wallet.clone(),
|
|
alice.monero_wallet.clone(),
|
|
alice.config,
|
|
alice.swap_id,
|
|
alice.db,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert!(matches!(alice_state, AliceState::EncSigLearned {..}));
|
|
|
|
let alice = alice_harness.recover_alice_from_db().await;
|
|
assert!(matches!(alice.state, AliceState::EncSigLearned {..}));
|
|
|
|
let alice_state = alice::swap(
|
|
alice.state,
|
|
alice.event_loop_handle,
|
|
alice.bitcoin_wallet.clone(),
|
|
alice.monero_wallet.clone(),
|
|
alice.config,
|
|
alice.swap_id,
|
|
alice.db,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
alice_harness.assert_redeemed(alice_state).await;
|
|
|
|
let bob_state = bob_swap_handle.await.unwrap();
|
|
bob_harness.assert_redeemed(bob_state.unwrap()).await
|
|
})
|
|
.await;
|
|
}
|