[][src]Struct actix_test_server::TestServer

pub struct TestServer;

The TestServer type.

TestServer is very simple test server that simplify process of writing integration tests for actix-net applications.

Examples

use actix_service::{fn_service, IntoNewService};
use actix_test_server::TestServer;

fn main() {
    let srv = TestServer::with(|| fn_service(
        |sock| {
            println!("New connection: {:?}", sock);
            Ok::<_, ()>(())
        }
    ));

    println!("SOCKET: {:?}", srv.connect());
}

Methods

impl TestServer[src]

pub fn with<F: StreamServiceFactory>(factory: F) -> TestServerRuntime[src]

Start new test server with application factory

pub fn unused_addr() -> SocketAddr[src]

Get firat available unused local address

Auto Trait Implementations

impl Send for TestServer

impl Sync for TestServer

Blanket Implementations

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

impl<T> From for 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> 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T