90fd044766
- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs) - pallet/ directories → pezpallet/ (4 locations) - Fixed pezpallet.rs self-include recursion bug - Fixed sc-chain-spec hardcoded crate name in derive macro - Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API) - Added BizinikiwiConfig type alias for zombienet tests - Deleted obsolete session state files Verified: pezsnowbridge-pezpallet-*, pezpallet-staking, pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
123 lines
3.6 KiB
Rust
123 lines
3.6 KiB
Rust
// 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.
|
|
|
|
//! Benchmarks for Sudo Pezpallet
|
|
|
|
use super::*;
|
|
use crate::Pezpallet;
|
|
use alloc::{boxed::Box, vec};
|
|
use pezframe_benchmarking::v2::*;
|
|
use pezframe_support::dispatch::{DispatchInfo, GetDispatchInfo};
|
|
use pezframe_system::RawOrigin;
|
|
use pezsp_runtime::traits::{
|
|
AsSystemOriginSigner, AsTransactionAuthorizedOrigin, DispatchTransaction, Dispatchable,
|
|
};
|
|
|
|
fn assert_last_event<T: Config>(generic_event: crate::Event<T>) {
|
|
let re: <T as Config>::RuntimeEvent = generic_event.into();
|
|
pezframe_system::Pezpallet::<T>::assert_last_event(re.into());
|
|
}
|
|
|
|
#[benchmarks(where
|
|
T: Send + Sync,
|
|
<T as Config>::RuntimeCall: From<pezframe_system::Call<T>>,
|
|
<T as pezframe_system::Config>::RuntimeCall: Dispatchable<Info = DispatchInfo> + GetDispatchInfo,
|
|
<<T as pezframe_system::Config>::RuntimeCall as Dispatchable>::PostInfo: Default,
|
|
<<T as pezframe_system::Config>::RuntimeCall as Dispatchable>::RuntimeOrigin:
|
|
AsSystemOriginSigner<T::AccountId> + AsTransactionAuthorizedOrigin + Clone,
|
|
)]
|
|
mod benchmarks {
|
|
use super::*;
|
|
|
|
#[benchmark]
|
|
fn set_key() {
|
|
let caller: T::AccountId = whitelisted_caller();
|
|
Key::<T>::put(&caller);
|
|
|
|
let new_sudoer: T::AccountId = account("sudoer", 0, 0);
|
|
let new_sudoer_lookup = T::Lookup::unlookup(new_sudoer.clone());
|
|
|
|
#[extrinsic_call]
|
|
_(RawOrigin::Signed(caller.clone()), new_sudoer_lookup);
|
|
|
|
assert_last_event::<T>(Event::KeyChanged { old: Some(caller), new: new_sudoer });
|
|
}
|
|
|
|
#[benchmark]
|
|
fn sudo() {
|
|
let caller: T::AccountId = whitelisted_caller();
|
|
Key::<T>::put(&caller);
|
|
|
|
let call = pezframe_system::Call::remark { remark: vec![] }.into();
|
|
|
|
#[extrinsic_call]
|
|
_(RawOrigin::Signed(caller), Box::new(call));
|
|
|
|
assert_last_event::<T>(Event::Sudid { sudo_result: Ok(()) })
|
|
}
|
|
|
|
#[benchmark]
|
|
fn sudo_as() {
|
|
let caller: T::AccountId = whitelisted_caller();
|
|
Key::<T>::put(caller.clone());
|
|
|
|
let call = pezframe_system::Call::remark { remark: vec![] }.into();
|
|
|
|
let who: T::AccountId = account("as", 0, 0);
|
|
let who_lookup = T::Lookup::unlookup(who);
|
|
|
|
#[extrinsic_call]
|
|
_(RawOrigin::Signed(caller), who_lookup, Box::new(call));
|
|
|
|
assert_last_event::<T>(Event::SudoAsDone { sudo_result: Ok(()) })
|
|
}
|
|
|
|
#[benchmark]
|
|
fn remove_key() {
|
|
let caller: T::AccountId = whitelisted_caller();
|
|
Key::<T>::put(&caller);
|
|
|
|
#[extrinsic_call]
|
|
_(RawOrigin::Signed(caller.clone()));
|
|
|
|
assert_last_event::<T>(Event::KeyRemoved {});
|
|
}
|
|
|
|
#[benchmark]
|
|
fn check_only_sudo_account() {
|
|
let caller: T::AccountId = whitelisted_caller();
|
|
Key::<T>::put(&caller);
|
|
|
|
let call: <T as pezframe_system::Config>::RuntimeCall =
|
|
pezframe_system::Call::remark { remark: vec![] }.into();
|
|
let info = call.get_dispatch_info();
|
|
let ext = CheckOnlySudoAccount::<T>::new();
|
|
|
|
#[block]
|
|
{
|
|
assert!(ext
|
|
.test_run(RawOrigin::Signed(caller).into(), &call, &info, 0, 0, |_| Ok(
|
|
Default::default()
|
|
))
|
|
.unwrap()
|
|
.is_ok());
|
|
}
|
|
}
|
|
|
|
impl_benchmark_test_suite!(Pezpallet, crate::mock::new_bench_ext(), crate::mock::Test);
|
|
}
|