Struct NetworkNode
pub struct NetworkNode { /* private fields */ }Implementations§
§impl NetworkNode
impl NetworkNode
pub fn name(&self) -> &str
pub fn args(&self) -> Vec<&str>
pub fn spec(&self) -> &NodeSpec
pub fn ws_uri(&self) -> &str
pub fn multiaddr(&self) -> &str
pub async fn client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
👎Deprecated: Use wait_client instead.
pub async fn client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
wait_client instead.Get the online client for the node
pub async fn try_client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
pub async fn try_client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
Try to connect to the node.
Most of the time you only want to use NetworkNode::wait_client that waits for
the node to appear before it connects to it. This function directly tries
to connect to the node and returns an error if the node is not yet available
at that point in time.
Returns a [OnlineClient] on success.
pub async fn wait_client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
pub async fn wait_client<Config>(&self) -> Result<OnlineClient<Config>, Error>where
Config: Config,
Wait until get the online client for the node
pub async fn wait_client_with_timeout<Config>(
&self,
timeout_secs: impl Into<u64>,
) -> Result<OnlineClient<Config>, Error>where
Config: Config,
pub async fn wait_client_with_timeout<Config>(
&self,
timeout_secs: impl Into<u64>,
) -> Result<OnlineClient<Config>, Error>where
Config: Config,
Wait until get the online client for the node with a defined timeout
pub async fn pause(&self) -> Result<(), Error>
pub async fn pause(&self) -> Result<(), Error>
Pause the node, this is implemented by pausing the
actual process (e.g polkadot) with sending SIGSTOP signal
Note: Using this method with the native provider is currently unsupported.
pub async fn resume(&self) -> Result<(), Error>
pub async fn resume(&self) -> Result<(), Error>
Resume the node, this is implemented by resuming the
actual process (e.g polkadot) with sending SIGCONT signal
Note: Using this method with the native provider is currently unsupported.
pub async fn restart(&self, after: Option<Duration>) -> Result<(), Error>
pub async fn restart(&self, after: Option<Duration>) -> Result<(), Error>
Restart the node using the same cmd, args and env (and same isolated dir)
Note: Using this method with the native provider is currently unsupported.
pub async fn reports(
&self,
metric_name: impl Into<String>,
) -> Result<f64, Error>
pub async fn reports( &self, metric_name: impl Into<String>, ) -> Result<f64, Error>
Get metric value ‘by name’ from Prometheus (exposed by the node) metric name can be: with prefix (e.g: ‘polkadot_’) with chain attribute (e.g: ‘chain=rococo-local’) without prefix and/or without chain attribute
pub async fn assert(
&self,
metric_name: impl Into<String>,
value: impl Into<f64>,
) -> Result<bool, Error>
pub async fn assert( &self, metric_name: impl Into<String>, value: impl Into<f64>, ) -> Result<bool, Error>
Assert on a metric value ‘by name’ from Prometheus (exposed by the node) metric name can be: with prefix (e.g: ‘polkadot_’) with chain attribute (e.g: ‘chain=rococo-local’) without prefix and/or without chain attribute
We first try to assert on the value using the cached metrics and if not meet the criteria we reload the cache and check again
pub async fn assert_with(
&self,
metric_name: impl Into<String>,
predicate: impl Fn(f64) -> bool,
) -> Result<bool, Error>
pub async fn assert_with( &self, metric_name: impl Into<String>, predicate: impl Fn(f64) -> bool, ) -> Result<bool, Error>
Assert on a metric value using a given predicate.
See NetworkNode::reports description for details on metric name.
pub async fn wait_metric(
&self,
metric_name: impl Into<String>,
predicate: impl Fn(f64) -> bool,
) -> Result<(), Error>
pub async fn wait_metric( &self, metric_name: impl Into<String>, predicate: impl Fn(f64) -> bool, ) -> Result<(), Error>
Wait until a metric value pass the predicate
pub async fn wait_metric_with_timeout(
&self,
metric_name: impl Into<String>,
predicate: impl Fn(f64) -> bool,
timeout_secs: impl Into<u64>,
) -> Result<(), Error>
pub async fn wait_metric_with_timeout( &self, metric_name: impl Into<String>, predicate: impl Fn(f64) -> bool, timeout_secs: impl Into<u64>, ) -> Result<(), Error>
Wait until a metric value pass the predicate
with a timeout (secs)
pub async fn logs(&self) -> Result<String, Error>
pub async fn logs(&self) -> Result<String, Error>
Get the logs of the node
TODO: do we need the since param, maybe we could be handy later for loop filtering
pub async fn wait_log_line_count(
&self,
pattern: impl Into<String>,
is_glob: bool,
count: usize,
) -> Result<(), Error>
pub async fn wait_log_line_count( &self, pattern: impl Into<String>, is_glob: bool, count: usize, ) -> Result<(), Error>
Wait until a the number of matching log lines is reach
pub async fn wait_log_line_count_with_timeout(
&self,
substring: impl Into<String>,
is_glob: bool,
options: LogLineCountOptions,
) -> Result<LogLineCount, Error>
pub async fn wait_log_line_count_with_timeout( &self, substring: impl Into<String>, is_glob: bool, options: LogLineCountOptions, ) -> Result<LogLineCount, Error>
Waits until the number of matching log lines satisfies a custom condition, optionally waiting for the entire duration of the timeout.
This method searches log lines for a given substring or glob pattern, and evaluates the number of matching lines using a user-provided predicate function. Optionally, it can wait for the full timeout duration to ensure the condition holds consistently (e.g., for verifying absence of logs).
§Arguments
substring- The substring or pattern to match within log lines.is_glob- Whether to treatsubstringas a glob pattern (true) or a regex (false).options- Configuration for timeout, match count predicate, and full-duration waiting.
§Returns
Ok(LogLineCount::TargetReached(n))if the predicate was satisfied within the timeout,Ok(LogLineCount::TargetFails(n))if the predicate was not satisfied in time,Err(e)if an error occurred during log retrieval or matching.
§Example
let node = network.get_node("alice")?;
// Wait (up to 10 seconds) until pattern occurs once
let options = LogLineCountOptions {
predicate: Arc::new(|count| count == 1),
timeout: Duration::from_secs(10),
wait_until_timeout_elapses: false,
};
let result = node
.wait_log_line_count_with_timeout("error", false, options)
.await?;pub async fn wait_until_is_up(
&self,
timeout_secs: impl Into<u64>,
) -> Result<(), Error>
pub async fn wait_until_is_up( &self, timeout_secs: impl Into<u64>, ) -> Result<(), Error>
Waits given number of seconds until node reports that it is up and running, which is determined by metric ‘process_start_time_seconds’, which should appear, when node finished booting up.
§Arguments
timeout_secs- The number of seconds to wait.
§Returns
Ok()if the node is up before timeout occured.Err(e)if timeout or other error occurred while waiting.
Trait Implementations§
§impl Clone for NetworkNode
impl Clone for NetworkNode
§fn clone(&self) -> NetworkNode
fn clone(&self) -> NetworkNode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more§impl Debug for NetworkNode
impl Debug for NetworkNode
§impl Serialize for NetworkNode
impl Serialize for NetworkNode
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl Freeze for NetworkNode
impl !RefUnwindSafe for NetworkNode
impl Send for NetworkNode
impl Sync for NetworkNode
impl Unpin for NetworkNode
impl !UnwindSafe for NetworkNode
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
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§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.§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.§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.§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.§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.§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.§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.§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.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§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 more§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 more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T. Read moreSource§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§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.§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.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T.