[][src]Struct actix_http_test::TestServerRuntime

pub struct TestServerRuntime { /* fields omitted */ }

Test server controller

Methods

impl TestServerRuntime[src]

pub fn block_on<F, I, E>(&mut self, fut: F) -> Result<I, E> where
    F: Future<Item = I, Error = E>, 
[src]

Execute future on current core

pub fn block_on_fn<F, R>(&mut self, f: F) -> Result<R::Item, R::Error> where
    F: FnOnce() -> R,
    R: Future
[src]

Execute future on current core

pub fn execute<F, R>(&mut self, fut: F) -> R where
    F: FnOnce() -> R, 
[src]

Execute function on current core

pub fn addr(&self) -> SocketAddr[src]

Construct test server url

pub fn url(&self, uri: &str) -> String[src]

Construct test server url

pub fn surl(&self, uri: &str) -> String[src]

Construct test https server url

pub fn get<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create GET request

pub fn sget<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https GET request

pub fn post<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create POST request

pub fn spost<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https POST request

pub fn head<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create HEAD request

pub fn shead<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https HEAD request

pub fn put<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create PUT request

pub fn sput<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https PUT request

pub fn patch<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create PATCH request

pub fn spatch<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https PATCH request

pub fn delete<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create DELETE request

pub fn sdelete<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https DELETE request

pub fn options<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create OPTIONS request

pub fn soptions<S: AsRef<str>>(&self, path: S) -> ClientRequest[src]

Create https OPTIONS request

pub fn request<S: AsRef<str>>(&self, method: Method, path: S) -> ClientRequest[src]

Connect to test http server

pub fn load_body<S>(
    &mut self,
    response: ClientResponse<S>
) -> Result<Bytes, PayloadError> where
    S: Stream<Item = Bytes, Error = PayloadError> + 'static, 
[src]

pub fn ws_at(
    &mut self,
    path: &str
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>
[src]

Connect to websocket server at a given path

pub fn ws(
    &mut self
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>
[src]

Connect to a websocket server

Trait Implementations

impl Drop for TestServerRuntime[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,