Child storage tests and genesis fix. (#3185)

* Using child storage, (srml-support only), test failing .

* fix simple tests.

* Enumerable by requiring owned struct (previous form only allow
&'static).
Broken tests are from genesis init.

* implement for_child_keys_with_prefix

* indent

* clear_child_prefix fix.

* clear_child_prefix fix 2.

* fix for storage_impl, if/when allowing child and not child this could be
reverted.

* Fix lot of urlinked child genesis, still need to look upon actual
genesis srml module code.
Probably still a lot of broken code needing debugging.

* switch well_known_key to their associated module child trie.
Fix a genesis init (balance).
Complete some testing.
Comment some tests before using.

* fixing test runtime child keys

* latest commit fix broken genesis init

* fix system balances child name.

* Important fix: storage_root from test externalities need children (it is
already the case for ext).

* executive root with child calculation

* Avoid empty trie on test ext.

* Symetric removal of key for system.

* commenting changes related tests.

* Remove child module specifics.

* fix issues.

* fix some formatting

* fix bench and bump runtime

* Remove extend_storage_overlays, assimilate_storage do the same as is
proper considering srml macro.

* Fix warning for assimilate.

* Removing kill as they do not impact any test cases.

* Use tuple of storage map instead of two parameters. This changes the
behavior of decl_storage genesis build closure (breaking api).

* Do not use build storage before assimilate.

* fix error

* Update core/state-machine/src/backend.rs
This commit is contained in:
cheme
2019-08-08 15:05:25 +02:00
committed by Gavin Wood
parent 0067b2d9a2
commit b0e1212d48
59 changed files with 523 additions and 271 deletions
@@ -380,7 +380,7 @@ fn decl_store_extra_genesis(
}
let mut has_scall = false;
let mut scall = quote!{ ( |_, _, _| {} ) };
let mut scall = quote!{ ( |_, _| {} ) };
let mut genesis_extrafields = TokenStream2::new();
let mut genesis_extrafields_default = TokenStream2::new();
@@ -536,23 +536,24 @@ fn decl_store_extra_genesis(
),
String
> #fn_where_clause {
let mut storage = Default::default();
let mut child_storage = Default::default();
self.assimilate_storage::<#fn_traitinstance>(&mut storage, &mut child_storage)?;
Ok((storage, child_storage))
let mut storage = (Default::default(), Default::default());
self.assimilate_storage::<#fn_traitinstance>(&mut storage)?;
Ok(storage)
}
/// Assimilate the storage for this module into pre-existing overlays.
pub fn assimilate_storage #fn_generic (
self,
r: &mut #scrate::sr_primitives::StorageOverlay,
c: &mut #scrate::sr_primitives::ChildrenStorageOverlay,
tuple_storage: &mut (
#scrate::sr_primitives::StorageOverlay,
#scrate::sr_primitives::ChildrenStorageOverlay,
),
) -> std::result::Result<(), String> #fn_where_clause {
let storage = r;
let storage = &mut tuple_storage.0;
#builders
#scall(storage, c, &self);
#scall(tuple_storage, &self);
Ok(())
}
@@ -564,10 +565,12 @@ fn decl_store_extra_genesis(
{
fn build_module_genesis_storage(
self,
r: &mut #scrate::sr_primitives::StorageOverlay,
c: &mut #scrate::sr_primitives::ChildrenStorageOverlay,
storage: &mut (
#scrate::sr_primitives::StorageOverlay,
#scrate::sr_primitives::ChildrenStorageOverlay,
),
) -> std::result::Result<(), String> {
self.assimilate_storage::<#fn_traitinstance> (r, c)
self.assimilate_storage::<#fn_traitinstance> (storage)
}
}
};
+1 -1
View File
@@ -327,7 +327,7 @@ mod tests {
}
fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
GenesisConfig::default().build_storage().unwrap().0.into()
GenesisConfig::default().build_storage().unwrap().into()
}
type Map = Data;
+1 -1
View File
@@ -324,7 +324,7 @@ mod tests {
StorageMethod : Option<u32>;
}
add_extra_genesis {
build(|_, _, _| {});
build(|_, _| {});
}
}
}
@@ -379,7 +379,7 @@ mod tests {
COMPLEXTYPE3: ([u32;25]);
}
add_extra_genesis {
build(|_, _, _| {});
build(|_, _| {});
}
}
@@ -755,7 +755,7 @@ mod test2 {
add_extra_genesis {
config(_marker) : ::std::marker::PhantomData<T>;
config(extra_field) : u32 = 32;
build(|_, _, _| {});
build(|_, _| {});
}
}
@@ -53,7 +53,7 @@ impl Trait for Test {
}
fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
GenesisConfig::<Test>::default().build_storage().unwrap().0.into()
GenesisConfig::<Test>::default().build_storage().unwrap().into()
}
#[test]
@@ -75,7 +75,7 @@ mod module1 {
add_extra_genesis {
config(test) : T::BlockNumber;
build(|_, _, config: &Self| {
build(|_, config: &Self| {
println!("{}", config.test);
});
}
@@ -299,7 +299,7 @@ fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
}),
module2_Instance2: None,
module2_Instance3: None,
}.build_storage().unwrap().0.into()
}.build_storage().unwrap().into()
}
#[test]