Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

interactor chain simulator test #1946

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
use basic_features_interact::{BasicFeaturesInteract, Config};
use multiversx_sc_snippets::imports::{
BigUint, ConstDecimals, ManagedBuffer, ManagedDecimal, ManagedOption, ManagedVec, RustBigUint,
StaticApi,
use multiversx_sc_snippets::{
imports::{
BigUint, ConstDecimals, ManagedBuffer, ManagedDecimal, ManagedOption, ManagedVec,
RustBigUint, StaticApi,
},
test_wallets, InteractorRunAsync,
};

#[tokio::test]
Expand Down Expand Up @@ -191,3 +194,33 @@ async fn verify_bls_aggregated_signature(interact: &mut BasicFeaturesInteract) {
)
.await;
}

#[tokio::test]
#[ignore = "fails before status check"]
async fn send_to_non_existent_address_test() {
let registered_wallet = test_wallets::mike();
let not_registered_wallet = test_wallets::alice();

let mut chain_simulator_interact =
BasicFeaturesInteract::init(Config::chain_simulator_config()).await;

// send to not registered address
chain_simulator_interact
.interactor
.tx()
.from(&registered_wallet.to_address())
.to(&not_registered_wallet.to_address())
.egld(1u64)
.run()
.await;

// send back -> should fail
chain_simulator_interact
.interactor
.tx()
.from(&not_registered_wallet.to_address())
.to(&registered_wallet.to_address())
.egld(1u64)
.run()
.await;
}
Loading