pub struct TestClient<A: Application> { /* private fields */ }Expand description
An in-process HTTP test client that dispatches requests directly through an
Application without opening a TCP socket.
Use this in unit and integration tests to exercise controllers and routing without starting the server.
§Example
use rust_web_server::app::App;
use rust_web_server::core::New;
use rust_web_server::test_client::TestClient;
let client = TestClient::new(App::new());
let res = client.get("/healthz").send();
assert_eq!(200, res.status());
let res = client.post("/echo")
.header("Content-Type", "text/plain")
.body_text("hello")
.send();
assert_eq!(200, res.status());Implementations§
Source§impl<A: Application> TestClient<A>
impl<A: Application> TestClient<A>
Sourcepub fn new(app: A) -> Self
pub fn new(app: A) -> Self
Create a test client wrapping app. Requests are dispatched on a
synthetic 127.0.0.1:12345 → 127.0.0.1:7878 connection.
Sourcepub fn get(&self, path: &str) -> TestRequest<'_, A>
pub fn get(&self, path: &str) -> TestRequest<'_, A>
Build a GET request to path.
Sourcepub fn post(&self, path: &str) -> TestRequest<'_, A>
pub fn post(&self, path: &str) -> TestRequest<'_, A>
Build a POST request to path.
Sourcepub fn put(&self, path: &str) -> TestRequest<'_, A>
pub fn put(&self, path: &str) -> TestRequest<'_, A>
Build a PUT request to path.
Sourcepub fn patch(&self, path: &str) -> TestRequest<'_, A>
pub fn patch(&self, path: &str) -> TestRequest<'_, A>
Build a PATCH request to path.
Sourcepub fn delete(&self, path: &str) -> TestRequest<'_, A>
pub fn delete(&self, path: &str) -> TestRequest<'_, A>
Build a DELETE request to path.
Auto Trait Implementations§
impl<A> Freeze for TestClient<A>where
A: Freeze,
impl<A> RefUnwindSafe for TestClient<A>where
A: RefUnwindSafe,
impl<A> Send for TestClient<A>where
A: Send,
impl<A> Sync for TestClient<A>where
A: Sync,
impl<A> Unpin for TestClient<A>where
A: Unpin,
impl<A> UnsafeUnpin for TestClient<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for TestClient<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more