[][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 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 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 for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T