mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
b581604aa7
* Apply some clippy hints * Revert clippy ci changes * Update client/cli/src/commands/generate.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/cli/src/commands/inspect_key.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/db/src/bench.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/db/src/bench.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/service/src/client/block_rules.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/service/src/client/block_rules.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/network/src/transactions.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/network/src/protocol.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Revert due to missing `or_default` function. * Fix compilation and simplify code * Undo change that corrupts benchmark. * fix clippy * Update client/service/test/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/state-db/src/noncanonical.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update client/state-db/src/noncanonical.rs remove leftovers! * Update client/tracing/src/logging/directives.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/fork-tree/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * added needed ref * Update frame/referenda/src/benchmarking.rs * Simplify byte-vec creation * let's just not overlap the ranges * Correction * cargo fmt * Update utils/frame/benchmarking-cli/src/shared/stats.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/frame/benchmarking-cli/src/pallet/command.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update utils/frame/benchmarking-cli/src/pallet/command.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Giles Cope <gilescope@gmail.com>
162 lines
6.4 KiB
Rust
162 lines
6.4 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2020-2022 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.
|
|
|
|
//! Preimage pallet benchmarking.
|
|
|
|
use super::*;
|
|
use frame_benchmarking::{account, benchmarks, whitelist_account};
|
|
use frame_support::assert_ok;
|
|
use frame_system::RawOrigin;
|
|
use sp_runtime::traits::Bounded;
|
|
use sp_std::{prelude::*, vec};
|
|
|
|
use crate::Pallet as Preimage;
|
|
|
|
const SEED: u32 = 0;
|
|
|
|
fn funded_account<T: Config>(name: &'static str, index: u32) -> T::AccountId {
|
|
let caller: T::AccountId = account(name, index, SEED);
|
|
T::Currency::make_free_balance_be(&caller, BalanceOf::<T>::max_value());
|
|
caller
|
|
}
|
|
|
|
fn preimage_and_hash<T: Config>() -> (Vec<u8>, T::Hash) {
|
|
sized_preimage_and_hash::<T>(T::MaxSize::get())
|
|
}
|
|
|
|
fn sized_preimage_and_hash<T: Config>(size: u32) -> (Vec<u8>, T::Hash) {
|
|
let mut preimage = vec![];
|
|
preimage.resize(size as usize, 0);
|
|
let hash = <T as frame_system::Config>::Hashing::hash(&preimage[..]);
|
|
(preimage, hash)
|
|
}
|
|
|
|
benchmarks! {
|
|
// Expensive note - will reserve.
|
|
note_preimage {
|
|
let s in 0 .. T::MaxSize::get();
|
|
let caller = funded_account::<T>("caller", 0);
|
|
whitelist_account!(caller);
|
|
let (preimage, hash) = sized_preimage_and_hash::<T>(s);
|
|
}: _(RawOrigin::Signed(caller), preimage)
|
|
verify {
|
|
assert!(Preimage::<T>::have_preimage(&hash));
|
|
}
|
|
// Cheap note - will not reserve since it was requested.
|
|
note_requested_preimage {
|
|
let s in 0 .. T::MaxSize::get();
|
|
let caller = funded_account::<T>("caller", 0);
|
|
whitelist_account!(caller);
|
|
let (preimage, hash) = sized_preimage_and_hash::<T>(s);
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
}: note_preimage(RawOrigin::Signed(caller), preimage)
|
|
verify {
|
|
assert!(Preimage::<T>::have_preimage(&hash));
|
|
}
|
|
// Cheap note - will not reserve since it's the manager.
|
|
note_no_deposit_preimage {
|
|
let s in 0 .. T::MaxSize::get();
|
|
let (preimage, hash) = sized_preimage_and_hash::<T>(s);
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
}: note_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), preimage)
|
|
verify {
|
|
assert!(Preimage::<T>::have_preimage(&hash));
|
|
}
|
|
|
|
// Expensive unnote - will unreserve.
|
|
unnote_preimage {
|
|
let caller = funded_account::<T>("caller", 0);
|
|
whitelist_account!(caller);
|
|
let (preimage, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::note_preimage(RawOrigin::Signed(caller.clone()).into(), preimage));
|
|
}: _(RawOrigin::Signed(caller), hash)
|
|
verify {
|
|
assert!(!Preimage::<T>::have_preimage(&hash));
|
|
}
|
|
// Cheap unnote - will not unreserve since there's no deposit held.
|
|
unnote_no_deposit_preimage {
|
|
let (preimage, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::note_preimage(T::ManagerOrigin::successful_origin(), preimage));
|
|
}: unnote_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert!(!Preimage::<T>::have_preimage(&hash));
|
|
}
|
|
|
|
// Expensive request - will unreserve the noter's deposit.
|
|
request_preimage {
|
|
let (preimage, hash) = preimage_and_hash::<T>();
|
|
let noter = funded_account::<T>("noter", 0);
|
|
whitelist_account!(noter);
|
|
assert_ok!(Preimage::<T>::note_preimage(RawOrigin::Signed(noter).into(), preimage));
|
|
}: _<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), Some(RequestStatus::Requested(1)));
|
|
}
|
|
// Cheap request - would unreserve the deposit but none was held.
|
|
request_no_deposit_preimage {
|
|
let (preimage, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::note_preimage(T::ManagerOrigin::successful_origin(), preimage));
|
|
}: request_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), Some(RequestStatus::Requested(1)));
|
|
}
|
|
// Cheap request - the preimage is not yet noted, so deposit to unreserve.
|
|
request_unnoted_preimage {
|
|
let (_, hash) = preimage_and_hash::<T>();
|
|
}: request_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), Some(RequestStatus::Requested(1)));
|
|
}
|
|
// Cheap request - the preimage is already requested, so just a counter bump.
|
|
request_requested_preimage {
|
|
let (_, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
}: request_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), Some(RequestStatus::Requested(2)));
|
|
}
|
|
|
|
// Expensive unrequest - last reference and it's noted, so will destroy the preimage.
|
|
unrequest_preimage {
|
|
let (preimage, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
assert_ok!(Preimage::<T>::note_preimage(T::ManagerOrigin::successful_origin(), preimage));
|
|
}: _<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), None);
|
|
}
|
|
// Cheap unrequest - last reference, but it's not noted.
|
|
unrequest_unnoted_preimage {
|
|
let (_, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
}: unrequest_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), None);
|
|
}
|
|
// Cheap unrequest - not the last reference.
|
|
unrequest_multi_referenced_preimage {
|
|
let (_, hash) = preimage_and_hash::<T>();
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
assert_ok!(Preimage::<T>::request_preimage(T::ManagerOrigin::successful_origin(), hash));
|
|
}: unrequest_preimage<T::Origin>(T::ManagerOrigin::successful_origin(), hash)
|
|
verify {
|
|
assert_eq!(StatusFor::<T>::get(&hash), Some(RequestStatus::Requested(1)));
|
|
}
|
|
|
|
impl_benchmark_test_suite!(Preimage, crate::mock::new_test_ext(), crate::mock::Test);
|
|
}
|