mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 07:58:02 +00:00
08369f3e43
* codegen: Update polkadot.rs polkadot commit-hash: d96d3bea85 polkadot tag: v0.9.16-rc2 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Reference key storage api Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Regenerate polkadot.rs with reference api Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * tests: Update tests with reference interface Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * cli: Fix polkadot.rs license check Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Update polkadot.rs with copyright Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Revert "codegen: Update polkadot.rs with copyright" This reverts commit 2970d0573dc0b11d01072b270a525ad497992ddf. Revert "cli: Fix polkadot.rs license check" This reverts commit 6fe8818582ae39669c059c1ed0424b6606620295. * codegen: Implement AccountData trait in the expected order Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Store implementation of StorageEntry Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Generate AccountDefaultData wrapper struct Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Allow `Account` references Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Update polkadot.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Utilize AccountDefaultData instead of Account Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Update polkadot.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * tests: Update tests to utilize `Account` reference Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Rename AccountDefaultData to AccountOwned Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Add comments for wrapper account Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Obtain vector type parameter for TypePath::Type Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Use slices instead of `& std::vec` in storage API Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Update polkadot.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Fix documentation Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * tests: Remove extra reference Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * examples: Add staking example to exercise storage API Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Update polkadot.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * tests: Update storage tests Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Fix cargo clippy Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Simplify vec_type_param Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * examples: Rename staking_details.rs to fetch_staking_details.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * tests: Remove dummy variable Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * examples: Update polkadot version Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Apply rust-fmt Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * codegen: Regenerate polkadot.rs Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * examples: Remove comment Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
140 lines
4.6 KiB
Rust
140 lines
4.6 KiB
Rust
// Copyright 2019-2022 Parity Technologies (UK) Ltd.
|
|
// This file is part of subxt.
|
|
//
|
|
// subxt 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.
|
|
//
|
|
// subxt 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 subxt. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use crate::{
|
|
node_runtime::{
|
|
self,
|
|
DispatchError,
|
|
},
|
|
pair_signer,
|
|
test_context,
|
|
};
|
|
use sp_keyring::AccountKeyring;
|
|
|
|
#[async_std::test]
|
|
async fn storage_plain_lookup() -> Result<(), subxt::Error<DispatchError>> {
|
|
let ctx = test_context().await;
|
|
|
|
// Look up a plain value. Wait long enough that we don't get the genesis block data,
|
|
// because it may have no storage associated with it.
|
|
async_std::task::sleep(std::time::Duration::from_secs(6)).await;
|
|
let entry = ctx.api.storage().timestamp().now(None).await?;
|
|
assert!(entry > 0);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[async_std::test]
|
|
async fn storage_map_lookup() -> Result<(), subxt::Error<DispatchError>> {
|
|
let ctx = test_context().await;
|
|
|
|
let signer = pair_signer(AccountKeyring::Alice.pair());
|
|
let alice = AccountKeyring::Alice.to_account_id();
|
|
|
|
// Do some transaction to bump the Alice nonce to 1:
|
|
ctx.api
|
|
.tx()
|
|
.system()
|
|
.remark(vec![1, 2, 3, 4, 5])
|
|
.sign_and_submit_then_watch(&signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
|
|
// Look up the nonce for the user (we expect it to be 1).
|
|
let entry = ctx.api.storage().system().account(&alice, None).await?;
|
|
assert_eq!(entry.nonce, 1);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
// This fails until the fix in https://github.com/paritytech/subxt/pull/458 is introduced.
|
|
// Here we create a key that looks a bit like a StorageNMap key, but should in fact be
|
|
// treated as a StorageKey (ie we should hash both values together with one hasher, rather
|
|
// than hash both values separately, or ignore the second value).
|
|
#[async_std::test]
|
|
async fn storage_n_mapish_key_is_properly_created(
|
|
) -> Result<(), subxt::Error<DispatchError>> {
|
|
use codec::Encode;
|
|
use node_runtime::{
|
|
runtime_types::sp_core::crypto::KeyTypeId,
|
|
session::storage::KeyOwner,
|
|
};
|
|
use subxt::{
|
|
storage::StorageKeyPrefix,
|
|
StorageEntry,
|
|
};
|
|
|
|
// This is what the generated code hashes a `session().key_owner(..)` key into:
|
|
let actual_key_bytes = KeyOwner(&KeyTypeId([1, 2, 3, 4]), &[5u8, 6, 7, 8])
|
|
.key()
|
|
.final_key(StorageKeyPrefix::new::<KeyOwner>())
|
|
.0;
|
|
|
|
// Let's manually hash to what we assume it should be and compare:
|
|
let expected_key_bytes = {
|
|
// Hash the prefix to the storage entry:
|
|
let mut bytes = sp_core::twox_128("Session".as_bytes()).to_vec();
|
|
bytes.extend(&sp_core::twox_128("KeyOwner".as_bytes())[..]);
|
|
// twox64_concat a *tuple* of the args expected:
|
|
let suffix = (KeyTypeId([1, 2, 3, 4]), vec![5u8, 6, 7, 8]).encode();
|
|
bytes.extend(&sp_core::twox_64(&suffix));
|
|
bytes.extend(&suffix);
|
|
bytes
|
|
};
|
|
|
|
assert_eq!(actual_key_bytes, expected_key_bytes);
|
|
Ok(())
|
|
}
|
|
|
|
#[async_std::test]
|
|
async fn storage_n_map_storage_lookup() -> Result<(), subxt::Error<DispatchError>> {
|
|
let ctx = test_context().await;
|
|
|
|
// Boilerplate; we create a new asset class with ID 99, and then
|
|
// we "approveTransfer" of some of this asset class. This gives us an
|
|
// entry in the `Approvals` StorageNMap that we can try to look up.
|
|
let signer = pair_signer(AccountKeyring::Alice.pair());
|
|
let alice = AccountKeyring::Alice.to_account_id();
|
|
let bob = AccountKeyring::Bob.to_account_id();
|
|
ctx.api
|
|
.tx()
|
|
.assets()
|
|
.create(99, alice.clone().into(), 1)
|
|
.sign_and_submit_then_watch(&signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
ctx.api
|
|
.tx()
|
|
.assets()
|
|
.approve_transfer(99, bob.clone().into(), 123)
|
|
.sign_and_submit_then_watch(&signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
|
|
// The actual test; look up this approval in storage:
|
|
let entry = ctx
|
|
.api
|
|
.storage()
|
|
.assets()
|
|
.approvals(&99, &alice, &bob, None)
|
|
.await?;
|
|
assert_eq!(entry.map(|a| a.amount), Some(123));
|
|
Ok(())
|
|
}
|