mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 07:47:57 +00:00
46 lines
1.6 KiB
Rust
46 lines
1.6 KiB
Rust
// Copyright 2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use super::*;
|
|
use polkadot_executor as executor;
|
|
|
|
use self::error::{Error, ErrorKind};
|
|
use client;
|
|
|
|
#[test]
|
|
fn should_return_storage() {
|
|
let client = client::new_in_mem(executor::executor()).unwrap();
|
|
let genesis_hash = "af65e54217fb213853703d57b80fc5b2bb834bf923046294d7a49bff62f0a8b2".into();
|
|
|
|
assert_matches!(
|
|
StateApi::storage(&client, StorageKey(vec![10]), genesis_hash),
|
|
Ok(ref x) if x.0.is_empty()
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
#[ignore] // TODO: [ToDr] reenable once we can properly mock the wasm executor env
|
|
fn should_call_contract() {
|
|
// TODO [ToDr] Fix test after we are able to mock state.
|
|
let client = client::new_in_mem(executor::executor()).unwrap();
|
|
let genesis_hash = "af65e54217fb213853703d57b80fc5b2bb834bf923046294d7a49bff62f0a8b2".into();
|
|
|
|
assert_matches!(
|
|
StateApi::call(&client, "balanceOf".into(), CallData(vec![1,2,3]), genesis_hash),
|
|
Err(Error(ErrorKind::Client(client::error::ErrorKind::Execution(_)), _))
|
|
)
|
|
}
|