Struct sp_state_machine::TestExternalities
source · pub struct TestExternalities<H>{
pub backend: InMemoryBackend<H>,
pub extensions: Extensions,
pub state_version: StateVersion,
/* private fields */
}
Expand description
Simple HashMap-based Externalities impl.
Fields§
§backend: InMemoryBackend<H>
Storage backend.
extensions: Extensions
Extensions.
state_version: StateVersion
State version to use during tests.
Implementations§
source§impl<H> TestExternalities<H>
impl<H> TestExternalities<H>
sourcepub fn ext(&mut self) -> Ext<'_, H, InMemoryBackend<H>>
pub fn ext(&mut self) -> Ext<'_, H, InMemoryBackend<H>>
Get externalities implementation.
sourcepub fn new_with_state_version(
storage: Storage,
state_version: StateVersion,
) -> Self
pub fn new_with_state_version( storage: Storage, state_version: StateVersion, ) -> Self
Create a new instance of TestExternalities
with storage for a given state version.
sourcepub fn new_with_code(code: &[u8], storage: Storage) -> Self
pub fn new_with_code(code: &[u8], storage: Storage) -> Self
Create a new instance of TestExternalities
with code and storage.
sourcepub fn new_with_code_and_state(
code: &[u8],
storage: Storage,
state_version: StateVersion,
) -> Self
pub fn new_with_code_and_state( code: &[u8], storage: Storage, state_version: StateVersion, ) -> Self
Create a new instance of TestExternalities
with code and storage for a given state
version.
sourcepub fn overlayed_changes(&self) -> &OverlayedChanges<H>
pub fn overlayed_changes(&self) -> &OverlayedChanges<H>
Returns the overlayed changes.
sourcepub fn persist_offchain_overlay(&mut self)
pub fn persist_offchain_overlay(&mut self)
Move offchain changes from overlay to the persistent store.
sourcepub fn offchain_db(&self) -> TestPersistentOffchainDB
pub fn offchain_db(&self) -> TestPersistentOffchainDB
A shared reference type around the offchain worker storage.
sourcepub fn batch_insert<I>(&mut self, kvs: I)
pub fn batch_insert<I>(&mut self, kvs: I)
Batch insert key/values into backend
sourcepub fn insert(&mut self, k: StorageKey, v: StorageValue)
pub fn insert(&mut self, k: StorageKey, v: StorageValue)
Insert key/value into backend
sourcepub fn insert_child(&mut self, c: ChildInfo, k: StorageKey, v: StorageValue)
pub fn insert_child(&mut self, c: ChildInfo, k: StorageKey, v: StorageValue)
Insert key/value into backend.
This only supports inserting keys in child tries.
sourcepub fn register_extension<E: Any + Extension>(&mut self, ext: E)
pub fn register_extension<E: Any + Extension>(&mut self, ext: E)
Registers the given extension for this instance.
sourcepub fn from_raw_snapshot(
raw_storage: Vec<(Vec<u8>, (Vec<u8>, i32))>,
storage_root: H::Out,
state_version: StateVersion,
) -> Self
pub fn from_raw_snapshot( raw_storage: Vec<(Vec<u8>, (Vec<u8>, i32))>, storage_root: H::Out, state_version: StateVersion, ) -> Self
Sets raw storage key/values and a root.
This can be used as a fast way to restore the storage state from a backup because the trie does not need to be computed.
sourcepub fn into_raw_snapshot(self) -> (Vec<(Vec<u8>, (Vec<u8>, i32))>, H::Out)
pub fn into_raw_snapshot(self) -> (Vec<(Vec<u8>, (Vec<u8>, i32))>, H::Out)
Drains the underlying raw storage key/values and returns the root hash.
Useful for backing up the storage in a format that can be quickly re-loaded.
sourcepub fn as_backend(&mut self) -> InMemoryBackend<H>
pub fn as_backend(&mut self) -> InMemoryBackend<H>
Return a new backend with all pending changes.
In contrast to commit_all
this will not panic if there are open
transactions.
sourcepub fn commit_all(&mut self) -> Result<(), String>
pub fn commit_all(&mut self) -> Result<(), String>
Commit all pending changes to the underlying backend.
§Panic
This will panic if there are still open transactions.
sourcepub fn execute_with<R>(&mut self, execute: impl FnOnce() -> R) -> R
pub fn execute_with<R>(&mut self, execute: impl FnOnce() -> R) -> R
Execute the given closure while self
is set as externalities.
Returns the result of the given closure.
sourcepub fn execute_and_prove<R>(
&mut self,
execute: impl FnOnce() -> R,
) -> (R, StorageProof)
pub fn execute_and_prove<R>( &mut self, execute: impl FnOnce() -> R, ) -> (R, StorageProof)
Execute the given closure while self
, with proving_backend
as backend, is set as
externalities.
This implementation will wipe the proof recorded in between calls. Consecutive calls will get their own proof from scratch.
sourcepub fn execute_with_safe<R>(
&mut self,
f: impl FnOnce() -> R + UnwindSafe,
) -> Result<R, String>
pub fn execute_with_safe<R>( &mut self, f: impl FnOnce() -> R + UnwindSafe, ) -> Result<R, String>
Execute the given closure while self
is set as externalities.
Returns the result of the given closure, if no panics occurred.
Otherwise, returns Err
.
Trait Implementations§
source§impl<H: Hasher> Debug for TestExternalities<H>
impl<H: Hasher> Debug for TestExternalities<H>
source§impl<H: Hasher> Default for TestExternalities<H>
impl<H: Hasher> Default for TestExternalities<H>
source§impl<H> ExtensionStore for TestExternalities<H>
impl<H> ExtensionStore for TestExternalities<H>
source§fn extension_by_type_id(&mut self, type_id: TypeId) -> Option<&mut dyn Any>
fn extension_by_type_id(&mut self, type_id: TypeId) -> Option<&mut dyn Any>
type_id
and returns it as a &mut dyn Any
. Read moresource§impl<H> ExternalitiesExt for TestExternalities<H>
impl<H> ExternalitiesExt for TestExternalities<H>
source§impl<H: Hasher> From<(Storage, StateVersion)> for TestExternalities<H>
impl<H: Hasher> From<(Storage, StateVersion)> for TestExternalities<H>
source§fn from((storage, state_version): (Storage, StateVersion)) -> Self
fn from((storage, state_version): (Storage, StateVersion)) -> Self
Auto Trait Implementations§
impl<H> !Freeze for TestExternalities<H>
impl<H> !RefUnwindSafe for TestExternalities<H>
impl<H> Send for TestExternalities<H>
impl<H> !Sync for TestExternalities<H>
impl<H> Unpin for TestExternalities<H>
impl<H> !UnwindSafe for TestExternalities<H>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.