Struct sc_network_sync::mock::MockChainSync
source · pub struct MockChainSync<Block: BlockT> { /* private fields */ }
Implementations§
source§impl<Block: BlockT> MockChainSync<Block>
impl<Block: BlockT> MockChainSync<Block>
sourcepub fn checkpoint(&mut self)
pub fn checkpoint(&mut self)
Validate that all current expectations for all methods have been satisfied, and discard them.
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new mock object with no expectations.
This method will not be generated if the real struct
already has a new
method. However, it will be
generated if the struct implements a trait with a new
method. The trait’s new
method can still be called
like <MockX as TraitY>::new
source§impl<Block: BlockT> MockChainSync<Block>
impl<Block: BlockT> MockChainSync<Block>
sourcepub fn expect_peer_info(&mut self) -> &mut Expectation<Block>
pub fn expect_peer_info(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the peer_info
method
sourcepub fn expect_status(&mut self) -> &mut Expectation<Block>
pub fn expect_status(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the status
method
sourcepub fn expect_num_sync_requests(&mut self) -> &mut Expectation<Block>
pub fn expect_num_sync_requests(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the num_sync_requests
method
sourcepub fn expect_num_downloaded_blocks(&mut self) -> &mut Expectation<Block>
pub fn expect_num_downloaded_blocks(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the num_downloaded_blocks
method
sourcepub fn expect_num_peers(&mut self) -> &mut Expectation<Block>
pub fn expect_num_peers(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the num_peers
method
sourcepub fn expect_num_active_peers(&mut self) -> &mut Expectation<Block>
pub fn expect_num_active_peers(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the num_active_peers
method
sourcepub fn expect_new_peer(&mut self) -> &mut Expectation<Block>
pub fn expect_new_peer(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the new_peer
method
sourcepub fn expect_update_chain_info(&mut self) -> &mut Expectation<Block>
pub fn expect_update_chain_info(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the update_chain_info
method
sourcepub fn expect_request_justification(&mut self) -> &mut Expectation<Block>
pub fn expect_request_justification(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the request_justification
method
sourcepub fn expect_clear_justification_requests(&mut self) -> &mut Expectation<Block>
pub fn expect_clear_justification_requests(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the clear_justification_requests
method
sourcepub fn expect_set_sync_fork_request(&mut self) -> &mut Expectation<Block>
pub fn expect_set_sync_fork_request(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the set_sync_fork_request
method
sourcepub fn expect_on_block_data(&mut self) -> &mut Expectation<Block>
pub fn expect_on_block_data(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the on_block_data
method
sourcepub fn expect_process_block_response_data(&mut self) -> &mut Expectation<Block>
pub fn expect_process_block_response_data(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the process_block_response_data
method
sourcepub fn expect_on_block_justification(&mut self) -> &mut Expectation<Block>
pub fn expect_on_block_justification(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the on_block_justification
method
sourcepub fn expect_on_justification_import(&mut self) -> &mut Expectation<Block>
pub fn expect_on_justification_import(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the on_justification_import
method
sourcepub fn expect_on_block_finalized(&mut self) -> &mut Expectation<Block>
pub fn expect_on_block_finalized(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the on_block_finalized
method
sourcepub fn expect_push_block_announce_validation(
&mut self
) -> &mut Expectation<Block>
pub fn expect_push_block_announce_validation( &mut self ) -> &mut Expectation<Block>
Create an Expectation
for mocking the push_block_announce_validation
method
sourcepub fn expect_poll_block_announce_validation(
&mut self
) -> &mut Expectation<Block>
pub fn expect_poll_block_announce_validation( &mut self ) -> &mut Expectation<Block>
Create an Expectation
for mocking the poll_block_announce_validation
method
sourcepub fn expect_peer_disconnected(&mut self) -> &mut Expectation<Block>
pub fn expect_peer_disconnected(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the peer_disconnected
method
sourcepub fn expect_metrics(&mut self) -> &mut Expectation<Block>
pub fn expect_metrics(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the metrics
method
sourcepub fn expect_block_response_into_blocks(&mut self) -> &mut Expectation<Block>
pub fn expect_block_response_into_blocks(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the block_response_into_blocks
method
sourcepub fn expect_poll(&mut self) -> &mut Expectation<Block>
pub fn expect_poll(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the poll
method
sourcepub fn expect_send_block_request(&mut self) -> &mut Expectation<Block>
pub fn expect_send_block_request(&mut self) -> &mut Expectation<Block>
Create an Expectation
for mocking the send_block_request
method
Trait Implementations§
source§impl<Block: BlockT> ChainSync<Block> for MockChainSync<Block>
impl<Block: BlockT> ChainSync<Block> for MockChainSync<Block>
source§fn peer_info(&self, who: &PeerId) -> Option<PeerInfo<Block>>
fn peer_info(&self, who: &PeerId) -> Option<PeerInfo<Block>>
source§fn status(&self) -> SyncStatus<Block>
fn status(&self) -> SyncStatus<Block>
source§fn num_sync_requests(&self) -> usize
fn num_sync_requests(&self) -> usize
source§fn num_downloaded_blocks(&self) -> usize
fn num_downloaded_blocks(&self) -> usize
source§fn num_peers(&self) -> usize
fn num_peers(&self) -> usize
source§fn num_active_peers(&self) -> usize
fn num_active_peers(&self) -> usize
source§fn new_peer(
&mut self,
who: PeerId,
best_hash: Block::Hash,
best_number: NumberFor<Block>
) -> Result<Option<BlockRequest<Block>>, BadPeer>
fn new_peer( &mut self, who: PeerId, best_hash: Block::Hash, best_number: NumberFor<Block> ) -> Result<Option<BlockRequest<Block>>, BadPeer>
source§fn update_chain_info(
&mut self,
best_hash: &Block::Hash,
best_number: NumberFor<Block>
)
fn update_chain_info( &mut self, best_hash: &Block::Hash, best_number: NumberFor<Block> )
source§fn request_justification(
&mut self,
hash: &Block::Hash,
number: NumberFor<Block>
)
fn request_justification( &mut self, hash: &Block::Hash, number: NumberFor<Block> )
source§fn clear_justification_requests(&mut self)
fn clear_justification_requests(&mut self)
source§fn set_sync_fork_request(
&mut self,
peers: Vec<PeerId>,
hash: &Block::Hash,
number: NumberFor<Block>
)
fn set_sync_fork_request( &mut self, peers: Vec<PeerId>, hash: &Block::Hash, number: NumberFor<Block> )
source§fn on_block_data(
&mut self,
who: &PeerId,
request: Option<BlockRequest<Block>>,
response: BlockResponse<Block>
) -> Result<OnBlockData<Block>, BadPeer>
fn on_block_data( &mut self, who: &PeerId, request: Option<BlockRequest<Block>>, response: BlockResponse<Block> ) -> Result<OnBlockData<Block>, BadPeer>
source§fn process_block_response_data(
&mut self,
blocks_to_import: Result<OnBlockData<Block>, BadPeer>
)
fn process_block_response_data( &mut self, blocks_to_import: Result<OnBlockData<Block>, BadPeer> )
source§fn on_block_justification(
&mut self,
who: PeerId,
response: BlockResponse<Block>
) -> Result<OnBlockJustification<Block>, BadPeer>
fn on_block_justification( &mut self, who: PeerId, response: BlockResponse<Block> ) -> Result<OnBlockJustification<Block>, BadPeer>
source§fn on_justification_import(
&mut self,
hash: Block::Hash,
number: NumberFor<Block>,
success: bool
)
fn on_justification_import( &mut self, hash: Block::Hash, number: NumberFor<Block>, success: bool )
source§fn on_block_finalized(&mut self, hash: &Block::Hash, number: NumberFor<Block>)
fn on_block_finalized(&mut self, hash: &Block::Hash, number: NumberFor<Block>)
source§fn push_block_announce_validation(
&mut self,
who: PeerId,
hash: Block::Hash,
announce: BlockAnnounce<Block::Header>,
is_best: bool
)
fn push_block_announce_validation( &mut self, who: PeerId, hash: Block::Hash, announce: BlockAnnounce<Block::Header>, is_best: bool )
source§fn poll_block_announce_validation<'a>(
&mut self,
cx: &mut Context<'a>
) -> Poll<PollBlockAnnounceValidation<Block::Header>>
fn poll_block_announce_validation<'a>( &mut self, cx: &mut Context<'a> ) -> Poll<PollBlockAnnounceValidation<Block::Header>>
source§fn peer_disconnected(&mut self, who: &PeerId)
fn peer_disconnected(&mut self, who: &PeerId)
source§fn block_response_into_blocks(
&self,
request: &BlockRequest<Block>,
response: OpaqueBlockResponse
) -> Result<Vec<BlockData<Block>>, String>
fn block_response_into_blocks( &self, request: &BlockRequest<Block>, response: OpaqueBlockResponse ) -> Result<Vec<BlockData<Block>>, String>
source§fn poll<'a>(
&mut self,
cx: &mut Context<'a>
) -> Poll<PollBlockAnnounceValidation<Block::Header>>
fn poll<'a>( &mut self, cx: &mut Context<'a> ) -> Poll<PollBlockAnnounceValidation<Block::Header>>
ChainSync
Read moresource§fn send_block_request(&mut self, who: PeerId, request: BlockRequest<Block>)
fn send_block_request(&mut self, who: PeerId, request: BlockRequest<Block>)
Auto Trait Implementations§
impl<Block> RefUnwindSafe for MockChainSync<Block>where Block: RefUnwindSafe,
impl<Block> Send for MockChainSync<Block>
impl<Block> Sync for MockChainSync<Block>
impl<Block> Unpin for MockChainSync<Block>where Block: Unpin,
impl<Block> UnwindSafe for MockChainSync<Block>where Block: UnwindSafe,
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> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_mut()
into the pipe
function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
T
. Read moresource§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut()
only in debug builds, and is erased in release
builds.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
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.