This is a project to make it easier to test applications built using Axum. Using full E2E tests.
Some of the design decisions behind this are very opinionated, to encourage one to write good tests.
This is for spinning up an Axum service, that you can then query directly. This is primarily for testing Axum services.
```rust use ::axum::Router; use ::axum::routing::get;
use ::axumtestserver::TestServer;
async fn get_ping() -> &'static str { "pong!" }
#[tokio::test] async fn itsoundget() { // Build an application with a route. let app = Router::new() .route("/ping", get(getping)) .intomake_service();
// Run the server on a random address.
let server = TestServer::new(app).unwrap();
// Get the request.
let response = server
.get("/ping")
.await;
assert_eq!(response.contents, "pong!");
} ```
When you start the server, you can spin it up on a random port. It allows multiple E2E tests to run in parallel, each on their own webserver.
This behaviour can be changed in the TestServerConfig
, by selecting a custom ip or port to always use.
It is common in E2E tests that step 1 is to login, and step 2 is the main request. To make this easier cookies returned from the server will be preserved, and then included into the next request. Like a web browser.
By default; all requests will panic if the server fails to return a 200. This can be switched to panic when the server doesn't return a 200.
This is a very opinionated design choice, and is done to help test writers fail fast when writing tests.