66 lines
1.7 KiB
Rust
66 lines
1.7 KiB
Rust
|
use crate::*;
|
||
|
use serial_test::serial;
|
||
|
|
||
|
#[tokio::test]
|
||
|
#[serial]
|
||
|
async fn check_contract_execution_status_success() {
|
||
|
run_with_client(Chain::Mainnet, |client| async move {
|
||
|
let status = client
|
||
|
.check_contract_execution_status(
|
||
|
"0x16197e2a0eacc44c1ebdfddcfcfcafb3538de557c759a66e0ba95263b23d9007",
|
||
|
)
|
||
|
.await;
|
||
|
|
||
|
status.unwrap();
|
||
|
})
|
||
|
.await
|
||
|
}
|
||
|
|
||
|
#[tokio::test]
|
||
|
#[serial]
|
||
|
async fn check_contract_execution_status_error() {
|
||
|
run_with_client(Chain::Mainnet, |client| async move {
|
||
|
let err = client
|
||
|
.check_contract_execution_status(
|
||
|
"0x15f8e5ea1079d9a0bb04a4c58ae5fe7654b5b2b4463375ff7ffb490aa0032f3a",
|
||
|
)
|
||
|
.await
|
||
|
.unwrap_err();
|
||
|
|
||
|
assert!(matches!(err, EtherscanError::ExecutionFailed(_)));
|
||
|
assert_eq!(err.to_string(), "Contract execution call failed: Bad jump destination");
|
||
|
})
|
||
|
.await
|
||
|
}
|
||
|
|
||
|
#[tokio::test]
|
||
|
#[serial]
|
||
|
async fn check_transaction_receipt_status_success() {
|
||
|
run_with_client(Chain::Mainnet, |client| async move {
|
||
|
let success = client
|
||
|
.check_transaction_receipt_status(
|
||
|
"0x513c1ba0bebf66436b5fed86ab668452b7805593c05073eb2d51d3a52f480a76",
|
||
|
)
|
||
|
.await;
|
||
|
|
||
|
success.unwrap();
|
||
|
})
|
||
|
.await
|
||
|
}
|
||
|
|
||
|
#[tokio::test]
|
||
|
#[serial]
|
||
|
async fn check_transaction_receipt_status_failed() {
|
||
|
run_with_client(Chain::Mainnet, |client| async move {
|
||
|
let err = client
|
||
|
.check_transaction_receipt_status(
|
||
|
"0x21a29a497cb5d4bf514c0cca8d9235844bd0215c8fab8607217546a892fd0758",
|
||
|
)
|
||
|
.await
|
||
|
.unwrap_err();
|
||
|
|
||
|
assert!(matches!(err, EtherscanError::TransactionReceiptFailed));
|
||
|
})
|
||
|
.await
|
||
|
}
|