Struct k8s_test_framework::framework::Framework

source ·
pub struct Framework { /* private fields */ }
Expand description

Framework wraps the interface to the system with an easy-to-use rust API optimized for implementing test cases.

Implementations§

source§

impl Framework

source

pub fn new(interface: Interface) -> Self

Create a new Framework powered by the passed interface.

source

pub async fn helm_chart( &self, namespace: &str, helm_chart: &str, release_name: &str, helm_repo: &str, config: Config<'_>, ) -> Result<Manager<CommandBuilder>, Box<dyn Error>>

Deploy a Helm chart into a cluster.

source

pub async fn namespace( &self, config: Config, ) -> Result<Manager<CommandBuilder>, Box<dyn Error>>

Create a new namespace.

source

pub async fn test_pod( &self, config: Config, ) -> Result<Manager<CommandBuilder>, Box<dyn Error>>

Create a new test Pod.

source

pub fn logs( &self, namespace: &str, resource: &str, ) -> Result<Reader, Box<dyn Error>>

Initialize log lookup for a particular resource in a particular namespace.

source

pub fn exec_tail( &self, namespace: &str, resource: &str, file: &str, ) -> Result<Reader, Box<dyn Error>>

Exec a tail -f command reading the specified file within a Container in a Pod of a specified resource at the specified namespace.

source

pub fn port_forward( &self, namespace: &str, resource: &str, local_port: u16, resource_port: u16, ) -> Result<PortForwarder, Box<dyn Error>>

Initialize port forward for a particular resource in a particular namespace with a particular pair of local/resource ports.

source

pub async fn kubernetes_version(&self) -> Result<K8sVersion, Box<dyn Error>>

Exect a kubectl --versioncommand returning a K8sVersion Struct containing all version information of the running Kubernetes test cluster.

source

pub async fn wait<'a>( &self, namespace: &str, resources: impl IntoIterator<Item = &'a str>, wait_for: WaitFor<&str>, extra: impl IntoIterator<Item = &'a str>, ) -> Result<(), Box<dyn Error>>

Wait for a set of resources in a specified namespace to achieve wait_for state. Use extra to pass additional arguments to kubectl.

source

pub async fn wait_all_namespaces<'a>( &self, resources: impl IntoIterator<Item = &'a str>, wait_for: WaitFor<&str>, extra: impl IntoIterator<Item = &'a str>, ) -> Result<(), Box<dyn Error>>

Wait for a set of resources in any namespace to achieve wait_for state. Use extra to pass additional arguments to kubectl.

source

pub async fn wait_for_rollout<'a>( &self, namespace: &str, resource: &str, extra: impl IntoIterator<Item = &'a str>, ) -> Result<(), Box<dyn Error>>

Wait for a rollout of a resource to complete. Use extra to pass additional arguments to kubectl.

source

pub async fn restart_rollout<'a>( &self, namespace: &str, resources: &str, extra: impl IntoIterator<Item = &'a str>, ) -> Result<(), Box<dyn Error>>

Trigger a restart for a rollout of a resource. Use `extr

source

pub async fn label_nodes(&self, label: &str) -> Result<String, Box<dyn Error>>

Sets a label on all nodes.

source

pub async fn get_vector_pod_with_pod( &self, pod_namespace: &str, pod_name: &str, vector_pod_namespace: &str, vector_pod_name: &str, ) -> Result<String, Box<dyn Error>>

Return the Vector pod that is deployed on the same node as the given pod. We want to make sure we are scanning the Vector instance that is deployed with the test pod.

Trait Implementations§

source§

impl Debug for Framework

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.