[−][src]Struct actix_http_test::TestServerRuntime
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]
F: Future<Item = I, Error = E>,
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]
F: FnOnce() -> R,
R: Future,
Execute future on current core
pub fn execute<F, R>(&mut self, fut: F) -> R where
F: FnOnce() -> R, [src]
F: FnOnce() -> R,
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 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]
&mut self,
response: ClientResponse<S>
) -> Result<Bytes, PayloadError> where
S: Stream<Item = Bytes, Error = PayloadError> + 'static,
pub fn ws_at(
&mut self,
path: &str
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>[src]
&mut self,
path: &str
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>
Connect to websocket server at a given path
pub fn ws(
&mut self
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>[src]
&mut self
) -> Result<Framed<impl AsyncRead + AsyncWrite, Codec>, WsClientError>
Connect to a websocket server
Trait Implementations
impl Drop for TestServerRuntime[src]
Auto Trait Implementations
impl !Send for TestServerRuntime
impl !Sync for TestServerRuntime
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,