mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
b31131d21d
* testing: Add long running light client flag and cfg aliases
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Expose clients depending on feature flags
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* subxt: Use unstable backend for light client
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Disable flaky lightclient tests
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* ci: Add long runnnig step
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Revert "subxt: Use unstable backend for light client"
This reverts commit ea6f3cc58b.
* ci: Long running tests for 60 mins
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* ci: Use 16 cores for light-client testing
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* ci: Isolate light-client testing to save CI minutes
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Retry on Tx::Dropped for lightclinet only
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Wait for more blocks for the lightclient init
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* subxt: Use unstable backend for light client
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Disable legacy RPC tests
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Disable sudo and contracts tests
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Retry constructing lightclient on read-proof errors
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Disable tx dynamic test
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* proc-macro: Timeout for tests
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Add timeout 800 seconds
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* proc-macro/tests: Adjust subxt-test proc-macro
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* proc-macro: Rename crate to subxt-test-proc-macro
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Use default subxt-proc-macro timeout
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* light-client: Remove println
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* subxt: Remove tokio as dependency, use it only for testing
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Chagne default timeout to 6 seconds
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* proc-macro: Add env timeout variable
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* ci: Add subxt env var for controling test timeouts
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* tests/tx-retries: Retry on `Non node available` error
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Use unstable backend for testing lightclient
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Remove old lightclient object
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Adjust for the new interface
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* backend/rpc: Allow older version of the initialized event
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* rpc/tests: Check initialized decodes correctly
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* ci: Reset workflow
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Apply cargo fmt
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Remove unused dep
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Remove gitmerge old file
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Remove unused dep
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* rename proc-macro to subxt-test-macro
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* tests: Remove txretries for lightclient
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* tests: Wait for 5 blocks for the lightclient full testing suite
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* tests: Group imports
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* macro: Rename const value
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
---------
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
238 lines
7.7 KiB
Rust
238 lines
7.7 KiB
Rust
// Copyright 2019-2023 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
use crate::{node_runtime, subxt_test, test_context, utils::wait_for_blocks};
|
|
|
|
#[cfg(fullclient)]
|
|
use subxt::utils::AccountId32;
|
|
#[cfg(fullclient)]
|
|
use subxt_signer::sr25519::dev;
|
|
|
|
#[subxt_test]
|
|
async fn storage_plain_lookup() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
// 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.
|
|
wait_for_blocks(&api).await;
|
|
|
|
let addr = node_runtime::storage().timestamp().now();
|
|
let entry = api
|
|
.storage()
|
|
.at_latest()
|
|
.await?
|
|
.fetch_or_default(&addr)
|
|
.await?;
|
|
assert!(entry > 0);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(fullclient)]
|
|
#[subxt_test]
|
|
async fn storage_map_lookup() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
let signer = dev::alice();
|
|
let alice: AccountId32 = dev::alice().public_key().into();
|
|
|
|
// Do some transaction to bump the Alice nonce to 1:
|
|
let remark_tx = node_runtime::tx().system().remark(vec![1, 2, 3, 4, 5]);
|
|
api.tx()
|
|
.sign_and_submit_then_watch_default(&remark_tx, &signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
|
|
// Look up the nonce for the user (we expect it to be 1).
|
|
let nonce_addr = node_runtime::storage().system().account(alice);
|
|
let entry = api
|
|
.storage()
|
|
.at_latest()
|
|
.await?
|
|
.fetch_or_default(&nonce_addr)
|
|
.await?;
|
|
assert_eq!(entry.nonce, 1);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(fullclient)]
|
|
#[subxt_test]
|
|
async fn storage_n_mapish_key_is_properly_created() -> Result<(), subxt::Error> {
|
|
use codec::Encode;
|
|
use node_runtime::runtime_types::sp_core::crypto::KeyTypeId;
|
|
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
// This is what the generated code hashes a `session().key_owner(..)` key into:
|
|
let actual_key = node_runtime::storage()
|
|
.session()
|
|
.key_owner(KeyTypeId([1, 2, 3, 4]), [5u8, 6, 7, 8]);
|
|
let actual_key_bytes = api.storage().address_bytes(&actual_key)?;
|
|
// 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())[..]);
|
|
// Both keys, use twox64_concat hashers:
|
|
let key1 = KeyTypeId([1, 2, 3, 4]).encode();
|
|
let key2 = vec![5u8, 6, 7, 8].encode();
|
|
bytes.extend(sp_core::twox_64(&key1));
|
|
bytes.extend(&key1);
|
|
bytes.extend(sp_core::twox_64(&key2));
|
|
bytes.extend(&key2);
|
|
bytes
|
|
};
|
|
dbg!(&expected_key_bytes);
|
|
|
|
assert_eq!(actual_key_bytes, expected_key_bytes);
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(fullclient)]
|
|
#[subxt_test]
|
|
async fn storage_n_map_storage_lookup() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
// 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 = dev::alice();
|
|
let alice: AccountId32 = dev::alice().public_key().into();
|
|
let bob: AccountId32 = dev::bob().public_key().into();
|
|
|
|
let tx1 = node_runtime::tx()
|
|
.assets()
|
|
.create(99, alice.clone().into(), 1);
|
|
let tx2 = node_runtime::tx()
|
|
.assets()
|
|
.approve_transfer(99, bob.clone().into(), 123);
|
|
api.tx()
|
|
.sign_and_submit_then_watch_default(&tx1, &signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
api.tx()
|
|
.sign_and_submit_then_watch_default(&tx2, &signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
|
|
// The actual test; look up this approval in storage:
|
|
let addr = node_runtime::storage().assets().approvals(99, alice, bob);
|
|
let entry = api.storage().at_latest().await?.fetch(&addr).await?;
|
|
assert_eq!(entry.map(|a| a.amount), Some(123));
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(fullclient)]
|
|
#[subxt_test]
|
|
async fn storage_partial_lookup() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
// 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 = dev::alice();
|
|
let alice: AccountId32 = dev::alice().public_key().into();
|
|
let bob: AccountId32 = dev::bob().public_key().into();
|
|
|
|
// Create two assets; one with ID 99 and one with ID 100.
|
|
let assets = [
|
|
(99, alice.clone(), bob.clone(), 123),
|
|
(100, bob.clone(), alice.clone(), 124),
|
|
];
|
|
for (asset_id, admin, delegate, amount) in assets.clone() {
|
|
let tx1 = node_runtime::tx()
|
|
.assets()
|
|
.create(asset_id, admin.into(), 1);
|
|
let tx2 = node_runtime::tx()
|
|
.assets()
|
|
.approve_transfer(asset_id, delegate.into(), amount);
|
|
api.tx()
|
|
.sign_and_submit_then_watch_default(&tx1, &signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
api.tx()
|
|
.sign_and_submit_then_watch_default(&tx2, &signer)
|
|
.await?
|
|
.wait_for_finalized_success()
|
|
.await?;
|
|
}
|
|
|
|
// Check all approvals.
|
|
let addr = node_runtime::storage().assets().approvals_iter();
|
|
let addr_bytes = api.storage().address_bytes(&addr)?;
|
|
let mut results = api.storage().at_latest().await?.iter(addr).await?;
|
|
let mut approvals = Vec::new();
|
|
while let Some(Ok(kv)) = results.next().await {
|
|
assert!(kv.key_bytes.starts_with(&addr_bytes));
|
|
approvals.push(kv.value);
|
|
}
|
|
assert_eq!(approvals.len(), assets.len());
|
|
let mut amounts = approvals.iter().map(|a| a.amount).collect::<Vec<_>>();
|
|
amounts.sort();
|
|
let mut expected = assets.iter().map(|a| a.3).collect::<Vec<_>>();
|
|
expected.sort();
|
|
assert_eq!(amounts, expected);
|
|
|
|
// Check all assets starting with ID 99.
|
|
for (asset_id, _, _, amount) in assets.clone() {
|
|
let addr = node_runtime::storage().assets().approvals_iter1(asset_id);
|
|
let second_addr_bytes = api.storage().address_bytes(&addr)?;
|
|
// Keys must be different, since we are adding to the root key.
|
|
assert_ne!(addr_bytes, second_addr_bytes);
|
|
|
|
let mut results = api.storage().at_latest().await?.iter(addr).await?;
|
|
|
|
let mut approvals = Vec::new();
|
|
while let Some(Ok(kv)) = results.next().await {
|
|
assert!(kv.key_bytes.starts_with(&addr_bytes));
|
|
assert!(kv.keys.decoded().is_ok());
|
|
approvals.push(kv.value);
|
|
}
|
|
assert_eq!(approvals.len(), 1);
|
|
assert_eq!(approvals[0].amount, amount);
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[subxt_test]
|
|
async fn storage_runtime_wasm_code() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
let wasm_blob = api.storage().at_latest().await?.runtime_wasm_code().await?;
|
|
assert!(wasm_blob.len() > 1000); // the wasm should be super big
|
|
Ok(())
|
|
}
|
|
|
|
#[subxt_test]
|
|
async fn storage_pallet_storage_version() -> Result<(), subxt::Error> {
|
|
let ctx = test_context().await;
|
|
let api = ctx.client();
|
|
|
|
// cannot assume anything about version number, but should work to fetch it
|
|
let _version = api
|
|
.storage()
|
|
.at_latest()
|
|
.await?
|
|
.storage_version("System")
|
|
.await?;
|
|
let _version = api
|
|
.storage()
|
|
.at_latest()
|
|
.await?
|
|
.storage_version("Balances")
|
|
.await?;
|
|
Ok(())
|
|
}
|