feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
@@ -0,0 +1,423 @@
|
||||
// This file is part of Bizinikiwi.
|
||||
|
||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//! Tests for the module.
|
||||
|
||||
#![cfg(test)]
|
||||
|
||||
use pezframe_support::{derive_impl, parameter_types, traits::ConstU32};
|
||||
use pezsp_runtime::{
|
||||
testing::H256,
|
||||
traits::{BlakeTwo256, IdentityLookup},
|
||||
BuildStorage,
|
||||
};
|
||||
use std::cell::RefCell;
|
||||
|
||||
#[pezframe_support::pallet(dev_mode)]
|
||||
mod pezpallet_test {
|
||||
use pezframe_support::pezpallet_prelude::*;
|
||||
use pezframe_system::pezpallet_prelude::*;
|
||||
|
||||
#[pallet::pallet]
|
||||
pub struct Pallet<T>(_);
|
||||
|
||||
#[pallet::config]
|
||||
pub trait Config: pezframe_system::Config {
|
||||
type LowerBound: Get<u32>;
|
||||
type UpperBound: Get<u32>;
|
||||
type MaybeItem: Get<Option<u32>>;
|
||||
}
|
||||
|
||||
#[pallet::storage]
|
||||
pub(crate) type Value<T: Config> = StorageValue<_, u32, OptionQuery>;
|
||||
|
||||
#[pallet::call]
|
||||
impl<T: Config> Pallet<T> {
|
||||
pub fn set_value(origin: OriginFor<T>, n: u32) -> DispatchResult {
|
||||
let _sender = ensure_signed(origin)?;
|
||||
Value::<T>::put(n);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn dummy(origin: OriginFor<T>, _n: u32) -> DispatchResult {
|
||||
let _sender = ensure_none(origin)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn always_error(_origin: OriginFor<T>) -> DispatchResult {
|
||||
return Err("I always fail".into());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type Block = pezframe_system::mocking::MockBlock<Test>;
|
||||
|
||||
pezframe_support::construct_runtime!(
|
||||
pub enum Test
|
||||
{
|
||||
System: pezframe_system,
|
||||
TestPallet: pezpallet_test,
|
||||
}
|
||||
);
|
||||
|
||||
#[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)]
|
||||
impl pezframe_system::Config for Test {
|
||||
type BaseCallFilter = pezframe_support::traits::Everything;
|
||||
type BlockWeights = ();
|
||||
type BlockLength = ();
|
||||
type DbWeight = ();
|
||||
type RuntimeOrigin = RuntimeOrigin;
|
||||
type Nonce = u64;
|
||||
type Hash = H256;
|
||||
type RuntimeCall = RuntimeCall;
|
||||
type Hashing = BlakeTwo256;
|
||||
type AccountId = u64;
|
||||
type Lookup = IdentityLookup<Self::AccountId>;
|
||||
type Block = Block;
|
||||
type RuntimeEvent = RuntimeEvent;
|
||||
type BlockHashCount = ();
|
||||
type Version = ();
|
||||
type PalletInfo = PalletInfo;
|
||||
type AccountData = ();
|
||||
type OnNewAccount = ();
|
||||
type OnKilledAccount = ();
|
||||
type SystemWeightInfo = ();
|
||||
type SS58Prefix = ();
|
||||
type OnSetCode = ();
|
||||
type MaxConsumers = pezframe_support::traits::ConstU32<16>;
|
||||
}
|
||||
|
||||
parameter_types! {
|
||||
pub const MaybeItem: Option<u32> = None;
|
||||
}
|
||||
|
||||
impl pezpallet_test::Config for Test {
|
||||
type LowerBound = ConstU32<1>;
|
||||
type UpperBound = ConstU32<100>;
|
||||
type MaybeItem = MaybeItem;
|
||||
}
|
||||
|
||||
fn new_test_ext() -> pezsp_io::TestExternalities {
|
||||
RuntimeGenesisConfig::default().build_storage().unwrap().into()
|
||||
}
|
||||
|
||||
thread_local! {
|
||||
/// Tracks the used components per value. Needs to be a thread local since the
|
||||
/// benchmarking clears the storage after each run.
|
||||
static VALUES_PER_COMPONENT: RefCell<Vec<u32>> = RefCell::new(vec![]);
|
||||
}
|
||||
|
||||
// NOTE: This attribute is only needed for the `modify_in_` functions.
|
||||
#[allow(unreachable_code)]
|
||||
mod benchmarks {
|
||||
use super::{new_test_ext, pezpallet_test::Value, Test, VALUES_PER_COMPONENT};
|
||||
use crate::{account, BenchmarkError, BenchmarkParameter, BenchmarkResult, BenchmarkingSetup};
|
||||
use pezframe_support::{assert_err, assert_ok, ensure, traits::Get};
|
||||
use pezframe_system::RawOrigin;
|
||||
use rusty_fork::rusty_fork_test;
|
||||
|
||||
// Additional used internally by the benchmark macro.
|
||||
use super::pezpallet_test::{Call, Config, Pallet};
|
||||
|
||||
crate::benchmarks! {
|
||||
where_clause {
|
||||
where
|
||||
crate::tests::RuntimeOrigin: From<RawOrigin<<T as pezframe_system::Config>::AccountId>>,
|
||||
}
|
||||
|
||||
set_value {
|
||||
let b in 1 .. 1000;
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: _ (RawOrigin::Signed(caller), b.into())
|
||||
verify {
|
||||
assert_eq!(Value::<T>::get(), Some(b));
|
||||
}
|
||||
|
||||
other_name {
|
||||
let b in 1 .. 1000;
|
||||
}: dummy (RawOrigin::None, b.into())
|
||||
|
||||
sort_vector {
|
||||
let x in 1 .. 10000;
|
||||
let mut m = Vec::<u32>::new();
|
||||
for i in (0..x).rev() {
|
||||
m.push(i);
|
||||
}
|
||||
}: {
|
||||
m.sort();
|
||||
} verify {
|
||||
ensure!(m[0] == 0, "You forgot to sort!")
|
||||
}
|
||||
|
||||
bad_origin {
|
||||
let b in 1 .. 1000;
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: dummy (RawOrigin::Signed(caller), b.into())
|
||||
|
||||
bad_verify {
|
||||
let x in 1 .. 10000;
|
||||
let mut m = Vec::<u32>::new();
|
||||
for i in (0..x).rev() {
|
||||
m.push(i);
|
||||
}
|
||||
}: { }
|
||||
verify {
|
||||
ensure!(m[0] == 0, "You forgot to sort!")
|
||||
}
|
||||
|
||||
no_components {
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: set_value(RawOrigin::Signed(caller), 0)
|
||||
|
||||
variable_components {
|
||||
let b in ( T::LowerBound::get() ) .. T::UpperBound::get();
|
||||
}: dummy (RawOrigin::None, b.into())
|
||||
|
||||
#[extra]
|
||||
extra_benchmark {
|
||||
let b in 1 .. 1000;
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: set_value(RawOrigin::Signed(caller), b.into())
|
||||
verify {
|
||||
assert_eq!(Value::<T>::get(), Some(b));
|
||||
}
|
||||
|
||||
#[skip_meta]
|
||||
skip_meta_benchmark {
|
||||
let b in 1 .. 1000;
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: set_value(RawOrigin::Signed(caller), b.into())
|
||||
verify {
|
||||
assert_eq!(Value::<T>::get(), Some(b));
|
||||
}
|
||||
|
||||
override_benchmark {
|
||||
let b in 1 .. 1000;
|
||||
let caller = account::<T::AccountId>("caller", 0, 0);
|
||||
}: {
|
||||
Err(BenchmarkError::Override(
|
||||
BenchmarkResult {
|
||||
extrinsic_time: 1_234_567_890,
|
||||
reads: 1337,
|
||||
writes: 420,
|
||||
..Default::default()
|
||||
}
|
||||
))?;
|
||||
}
|
||||
|
||||
skip_benchmark {
|
||||
let value = T::MaybeItem::get().ok_or(BenchmarkError::Skip)?;
|
||||
}: {
|
||||
// This should never be reached.
|
||||
assert!(value > 100);
|
||||
}
|
||||
|
||||
modify_in_setup_then_error {
|
||||
Value::<T>::set(Some(123));
|
||||
return Err(BenchmarkError::Stop("Should error"));
|
||||
}: { }
|
||||
|
||||
modify_in_call_then_error {
|
||||
}: {
|
||||
Value::<T>::set(Some(123));
|
||||
return Err(BenchmarkError::Stop("Should error"));
|
||||
}
|
||||
|
||||
modify_in_verify_then_error {
|
||||
}: {
|
||||
} verify {
|
||||
Value::<T>::set(Some(123));
|
||||
return Err(BenchmarkError::Stop("Should error"));
|
||||
}
|
||||
|
||||
// Stores all component values in the thread-local storage.
|
||||
values_per_component {
|
||||
let n in 0 .. 10;
|
||||
}: {
|
||||
VALUES_PER_COMPONENT.with(|v| v.borrow_mut().push(n));
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmarks_macro_works() {
|
||||
// Check benchmark creation for `set_value`.
|
||||
let selected = SelectedBenchmark::set_value;
|
||||
|
||||
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected);
|
||||
assert_eq!(components, vec![(BenchmarkParameter::b, 1, 1000)]);
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_ok!(<SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::b, 1)],
|
||||
));
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmarks_macro_rename_works() {
|
||||
// Check benchmark creation for `other_dummy`.
|
||||
let selected = SelectedBenchmark::other_name;
|
||||
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected);
|
||||
assert_eq!(components, vec![(BenchmarkParameter::b, 1, 1000)]);
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_ok!(<SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::b, 1)],
|
||||
));
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmarks_macro_works_for_non_dispatchable() {
|
||||
let selected = SelectedBenchmark::sort_vector;
|
||||
|
||||
let components = <SelectedBenchmark as BenchmarkingSetup<Test>>::components(&selected);
|
||||
assert_eq!(components, vec![(BenchmarkParameter::x, 1, 10000)]);
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_ok!(<SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::x, 1)],
|
||||
));
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmarks_macro_verify_works() {
|
||||
// Check postcondition for benchmark `set_value` is valid.
|
||||
let selected = SelectedBenchmark::set_value;
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_ok!(<SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::b, 1)],
|
||||
));
|
||||
});
|
||||
|
||||
// Check postcondition for benchmark `bad_verify` is invalid.
|
||||
let selected = SelectedBenchmark::bad_verify;
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_err!(
|
||||
<SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::x, 10000)],
|
||||
),
|
||||
"You forgot to sort!"
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmark_override_works() {
|
||||
let selected = SelectedBenchmark::override_benchmark;
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
let result = <SelectedBenchmark as BenchmarkingSetup<Test>>::unit_test_instance(
|
||||
&selected,
|
||||
&[(BenchmarkParameter::b, 1)],
|
||||
);
|
||||
assert!(matches!(result, Err(BenchmarkError::Override(_))));
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn benchmarks_generate_unit_tests() {
|
||||
new_test_ext().execute_with(|| {
|
||||
assert_ok!(Pallet::<Test>::test_benchmark_set_value());
|
||||
assert_ok!(Pallet::<Test>::test_benchmark_other_name());
|
||||
assert_ok!(Pallet::<Test>::test_benchmark_sort_vector());
|
||||
assert_err!(Pallet::<Test>::test_benchmark_bad_origin(), "Bad origin");
|
||||
assert_err!(Pallet::<Test>::test_benchmark_bad_verify(), "You forgot to sort!");
|
||||
assert_ok!(Pallet::<Test>::test_benchmark_no_components());
|
||||
assert_ok!(Pallet::<Test>::test_benchmark_variable_components());
|
||||
assert!(matches!(
|
||||
Pallet::<Test>::test_benchmark_override_benchmark(),
|
||||
Err(BenchmarkError::Override(_)),
|
||||
));
|
||||
assert_eq!(Pallet::<Test>::test_benchmark_skip_benchmark(), Err(BenchmarkError::Skip),);
|
||||
});
|
||||
}
|
||||
|
||||
/// An error return of a benchmark test function still causes the db to be wiped.
|
||||
#[test]
|
||||
fn benchmark_error_wipes_storage() {
|
||||
new_test_ext().execute_with(|| {
|
||||
// It resets when the error happens in the setup:
|
||||
assert_err!(
|
||||
Pallet::<Test>::test_benchmark_modify_in_setup_then_error(),
|
||||
"Should error"
|
||||
);
|
||||
assert_eq!(Value::<Test>::get(), None);
|
||||
|
||||
// It resets when the error happens in the call:
|
||||
assert_err!(Pallet::<Test>::test_benchmark_modify_in_call_then_error(), "Should error");
|
||||
assert_eq!(Value::<Test>::get(), None);
|
||||
|
||||
// It resets when the error happens in the verify:
|
||||
assert_err!(
|
||||
Pallet::<Test>::test_benchmark_modify_in_verify_then_error(),
|
||||
"Should error"
|
||||
);
|
||||
assert_eq!(Value::<Test>::get(), None);
|
||||
});
|
||||
}
|
||||
|
||||
rusty_fork_test! {
|
||||
/// Test that the benchmarking uses the correct values for each component and
|
||||
/// that the number of components can be controlled with `VALUES_PER_COMPONENT`.
|
||||
///
|
||||
/// NOTE: This test needs to run in its own process, since it
|
||||
/// otherwise messes up the env variable for the other tests.
|
||||
#[test]
|
||||
fn test_values_per_component() {
|
||||
let tests = vec![
|
||||
(Some("1"), Err("`VALUES_PER_COMPONENT` must be at least 2".into())),
|
||||
(Some("asdf"), Err("Could not parse env var `VALUES_PER_COMPONENT` as u32.".into())),
|
||||
(None, Ok(vec![0, 2, 4, 6, 8, 10])),
|
||||
(Some("2"), Ok(vec![0, 10])),
|
||||
(Some("4"), Ok(vec![0, 3, 6, 10])),
|
||||
(Some("6"), Ok(vec![0, 2, 4, 6, 8, 10])),
|
||||
(Some("10"), Ok(vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 10])),
|
||||
(Some("11"), Ok(vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])),
|
||||
(Some("99"), Ok(vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])),
|
||||
];
|
||||
|
||||
for (num, expected) in tests {
|
||||
run_test_values_per_component(num, expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Helper for [`test_values_per_component`].
|
||||
fn run_test_values_per_component(num: Option<&str>, output: Result<Vec<u32>, BenchmarkError>) {
|
||||
VALUES_PER_COMPONENT.with(|v| v.borrow_mut().clear());
|
||||
match num {
|
||||
Some(n) => std::env::set_var("VALUES_PER_COMPONENT", n),
|
||||
None => std::env::remove_var("VALUES_PER_COMPONENT"),
|
||||
}
|
||||
|
||||
new_test_ext().execute_with(|| {
|
||||
let got = Pallet::<Test>::test_benchmark_values_per_component()
|
||||
.map(|_| VALUES_PER_COMPONENT.with(|v| v.borrow().clone()));
|
||||
|
||||
assert_eq!(got, output);
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user