mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
af9083f53b
* System.BlockHash * Fix hash * Introduce K/V iteration in all _concat maps Also move across: - System.Account (blake2_128_concat) - Balances.Locks (twox_64_concat) - ElectionsPhragmen.VotesOf (twox_64_concat) - ElectionsPhragmen.StakeOf (twox_64_concat) - Identity.IdentityOf (twox_64_concat) - Identity.SubsOf (twox_64_concat) - Society.Payouts (twox_64_concat) - Session.NextKeys (twox_64_concat) - Identity.SuperOf (blake2_128_concat) - Session.KeyOwner (blake2_128_concat) - Society.SuspendedCandidates (twox_64_concat) - Society.SuspendedMembers (twox_64_concat) - Society.Vouching (twox_64_concat) - Society.Strikes (twox_64_concat) - System.EventTopics - Balances.Account * Build fixes * Ensure migration happens in correct order * Staking.* * Vesting.* Offences.* * Democracy.* * Babe.* Collective.* * Grandpa.* * Assets.* Benchmark.* Contracts.* Elections.* Asset.* Nicks.* Also introduce real account list * ImOnline.* * Treasury.* * Recovery.* * Final bits. * Docs * Fix one test * Fix test * All passing except the UI tests * Remove linked_map part 1 * Remove linked_map * Some iterator utils for double maps. * Remove old migrations * Introduce tombstone for LinkedMap type * Migration for genesis hash * Fix build * Fix hash * Rename Map is_linked -> unused, keeping backwards compat (#5256) * Update frame/balances/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Update frame/elections/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Remove old migration code. * Update frame/system/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Update bin/node/runtime/src/lib.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Fix hash * fix session migration * Fix watning Co-authored-by: Jaco Greeff <jacogr@gmail.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
198 lines
7.9 KiB
Rust
198 lines
7.9 KiB
Rust
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use frame_support::storage::unhashed;
|
|
use codec::Encode;
|
|
use frame_support::{StorageDoubleMap, StorageMap, StorageValue, StoragePrefixedMap};
|
|
use sp_io::{TestExternalities, hashing::{twox_64, twox_128, blake2_128}};
|
|
|
|
mod no_instance {
|
|
use codec::{Encode, Decode, EncodeLike};
|
|
|
|
pub trait Trait {
|
|
type Origin;
|
|
type BlockNumber: Encode + Decode + EncodeLike + Default + Clone;
|
|
}
|
|
|
|
frame_support::decl_module! {
|
|
pub struct Module<T: Trait> for enum Call where origin: T::Origin {}
|
|
}
|
|
|
|
frame_support::decl_storage!{
|
|
trait Store for Module<T: Trait> as FinalKeysNone {
|
|
pub Value config(value): u32;
|
|
|
|
pub Map: map hasher(blake2_128_concat) u32 => u32;
|
|
pub Map2: map hasher(twox_64_concat) u32 => u32;
|
|
|
|
pub DoubleMap: double_map hasher(blake2_128_concat) u32, hasher(blake2_128_concat) u32 => u32;
|
|
pub DoubleMap2: double_map hasher(twox_64_concat) u32, hasher(twox_64_concat) u32 => u32;
|
|
|
|
pub TestGenericValue get(fn test_generic_value) config(): Option<T::BlockNumber>;
|
|
pub TestGenericDoubleMap get(fn foo2) config(test_generic_double_map):
|
|
double_map hasher(blake2_128_concat) u32, hasher(blake2_128_concat) T::BlockNumber => Option<u32>;
|
|
}
|
|
}
|
|
}
|
|
|
|
mod instance {
|
|
pub trait Trait<I = DefaultInstance>: super::no_instance::Trait {}
|
|
|
|
frame_support::decl_module! {
|
|
pub struct Module<T: Trait<I>, I: Instantiable = DefaultInstance>
|
|
for enum Call where origin: T::Origin {}
|
|
}
|
|
|
|
frame_support::decl_storage!{
|
|
trait Store for Module<T: Trait<I>, I: Instantiable = DefaultInstance>
|
|
as FinalKeysSome
|
|
{
|
|
pub Value config(value): u32;
|
|
|
|
pub Map: map hasher(blake2_128_concat) u32 => u32;
|
|
pub Map2: map hasher(twox_64_concat) u32 => u32;
|
|
|
|
pub DoubleMap: double_map hasher(blake2_128_concat) u32, hasher(blake2_128_concat) u32 => u32;
|
|
pub DoubleMap2: double_map hasher(twox_64_concat) u32, hasher(twox_64_concat) u32 => u32;
|
|
|
|
pub TestGenericValue get(fn test_generic_value) config(): Option<T::BlockNumber>;
|
|
pub TestGenericDoubleMap get(fn foo2) config(test_generic_double_map):
|
|
double_map hasher(blake2_128_concat) u32, hasher(blake2_128_concat) T::BlockNumber => Option<u32>;
|
|
}
|
|
add_extra_genesis {
|
|
// See `decl_storage` limitation.
|
|
config(phantom): core::marker::PhantomData<I>;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn twox_64_concat(d: &[u8]) -> Vec<u8> {
|
|
let mut v = twox_64(d).to_vec();
|
|
v.extend_from_slice(d);
|
|
v
|
|
}
|
|
|
|
fn blake2_128_concat(d: &[u8]) -> Vec<u8> {
|
|
let mut v = blake2_128(d).to_vec();
|
|
v.extend_from_slice(d);
|
|
v
|
|
}
|
|
|
|
#[test]
|
|
fn final_keys_no_instance() {
|
|
TestExternalities::default().execute_with(|| {
|
|
no_instance::Value::put(1);
|
|
let k = [twox_128(b"FinalKeysNone"), twox_128(b"Value")].concat();
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(1u32));
|
|
|
|
no_instance::Map::insert(1, 2);
|
|
let mut k = [twox_128(b"FinalKeysNone"), twox_128(b"Map")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<no_instance::Map>::final_prefix());
|
|
|
|
no_instance::Map2::insert(1, 2);
|
|
let mut k = [twox_128(b"FinalKeysNone"), twox_128(b"Map2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<no_instance::Map2>::final_prefix());
|
|
|
|
no_instance::DoubleMap::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"FinalKeysNone"), twox_128(b"DoubleMap")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
k.extend(2u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<no_instance::DoubleMap>::final_prefix());
|
|
|
|
no_instance::DoubleMap2::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"FinalKeysNone"), twox_128(b"DoubleMap2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
k.extend(2u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<no_instance::DoubleMap2>::final_prefix());
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn final_keys_default_instance() {
|
|
TestExternalities::default().execute_with(|| {
|
|
<instance::Value<instance::DefaultInstance>>::put(1);
|
|
let k = [twox_128(b"FinalKeysSome"), twox_128(b"Value")].concat();
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(1u32));
|
|
|
|
<instance::Map<instance::DefaultInstance>>::insert(1, 2);
|
|
let mut k = [twox_128(b"FinalKeysSome"), twox_128(b"Map")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<instance::Map<instance::DefaultInstance>>::final_prefix());
|
|
|
|
<instance::Map2<instance::DefaultInstance>>::insert(1, 2);
|
|
let mut k = [twox_128(b"FinalKeysSome"), twox_128(b"Map2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<instance::Map2<instance::DefaultInstance>>::final_prefix());
|
|
|
|
<instance::DoubleMap<instance::DefaultInstance>>::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"FinalKeysSome"), twox_128(b"DoubleMap")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
k.extend(2u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<instance::DoubleMap<instance::DefaultInstance>>::final_prefix());
|
|
|
|
<instance::DoubleMap2<instance::DefaultInstance>>::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"FinalKeysSome"), twox_128(b"DoubleMap2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
k.extend(2u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<instance::DoubleMap2<instance::DefaultInstance>>::final_prefix());
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn final_keys_instance_2() {
|
|
TestExternalities::default().execute_with(|| {
|
|
<instance::Value<instance::Instance2>>::put(1);
|
|
let k = [twox_128(b"Instance2FinalKeysSome"), twox_128(b"Value")].concat();
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(1u32));
|
|
|
|
<instance::Map<instance::Instance2>>::insert(1, 2);
|
|
let mut k = [twox_128(b"Instance2FinalKeysSome"), twox_128(b"Map")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<instance::Map<instance::Instance2>>::final_prefix());
|
|
|
|
<instance::Map2<instance::Instance2>>::insert(1, 2);
|
|
let mut k = [twox_128(b"Instance2FinalKeysSome"), twox_128(b"Map2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(2u32));
|
|
assert_eq!(&k[..32], &<instance::Map2<instance::Instance2>>::final_prefix());
|
|
|
|
<instance::DoubleMap<instance::Instance2>>::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"Instance2FinalKeysSome"), twox_128(b"DoubleMap")].concat();
|
|
k.extend(1u32.using_encoded(blake2_128_concat));
|
|
k.extend(2u32.using_encoded(blake2_128_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<instance::DoubleMap<instance::Instance2>>::final_prefix());
|
|
|
|
<instance::DoubleMap2<instance::Instance2>>::insert(&1, &2, &3);
|
|
let mut k = [twox_128(b"Instance2FinalKeysSome"), twox_128(b"DoubleMap2")].concat();
|
|
k.extend(1u32.using_encoded(twox_64_concat));
|
|
k.extend(2u32.using_encoded(twox_64_concat));
|
|
assert_eq!(unhashed::get::<u32>(&k), Some(3u32));
|
|
assert_eq!(&k[..32], &<instance::DoubleMap2<instance::Instance2>>::final_prefix());
|
|
});
|
|
}
|