mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-17 00:00:16 +02:00
- Static vs dynamic paths are now supported meaning `/foo` and `/:key` are not considered to overlap. - A bug we hit regarding trailing slashes is fixed.
666 lines
18 KiB
Rust
666 lines
18 KiB
Rust
#![allow(clippy::blacklisted_name)]
|
|
|
|
use crate::error_handling::HandleErrorLayer;
|
|
use crate::extract::MatchedPath;
|
|
use crate::BoxError;
|
|
use crate::{
|
|
extract::{self, Path},
|
|
handler::Handler,
|
|
response::IntoResponse,
|
|
routing::{any, delete, get, on, patch, post, service_method_router as service, MethodFilter},
|
|
Json, Router,
|
|
};
|
|
use bytes::Bytes;
|
|
use http::{
|
|
header::{HeaderMap, AUTHORIZATION},
|
|
Request, Response, StatusCode, Uri,
|
|
};
|
|
use hyper::Body;
|
|
use serde::Deserialize;
|
|
use serde_json::{json, Value};
|
|
use std::future::Ready;
|
|
use std::{
|
|
collections::HashMap,
|
|
convert::Infallible,
|
|
future::ready,
|
|
task::{Context, Poll},
|
|
time::Duration,
|
|
};
|
|
use tower::{service_fn, timeout::TimeoutLayer, ServiceBuilder};
|
|
use tower_http::auth::RequireAuthorizationLayer;
|
|
use tower_http::trace::TraceLayer;
|
|
use tower_service::Service;
|
|
|
|
pub(crate) use helpers::*;
|
|
|
|
mod fallback;
|
|
mod get_to_head;
|
|
mod handle_error;
|
|
mod helpers;
|
|
mod merge;
|
|
mod nest;
|
|
|
|
#[tokio::test]
|
|
async fn hello_world() {
|
|
async fn root(_: Request<Body>) -> &'static str {
|
|
"Hello, World!"
|
|
}
|
|
|
|
async fn foo(_: Request<Body>) -> &'static str {
|
|
"foo"
|
|
}
|
|
|
|
async fn users_create(_: Request<Body>) -> &'static str {
|
|
"users#create"
|
|
}
|
|
|
|
let app = Router::new()
|
|
.route("/", get(root).post(foo))
|
|
.route("/users", post(users_create));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
let body = res.text().await;
|
|
assert_eq!(body, "Hello, World!");
|
|
|
|
let res = client.post("/").send().await;
|
|
let body = res.text().await;
|
|
assert_eq!(body, "foo");
|
|
|
|
let res = client.post("/users").send().await;
|
|
let body = res.text().await;
|
|
assert_eq!(body, "users#create");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn consume_body() {
|
|
let app = Router::new().route("/", get(|body: String| async { body }));
|
|
|
|
let client = TestClient::new(app);
|
|
let res = client.get("/").body("foo").send().await;
|
|
let body = res.text().await;
|
|
|
|
assert_eq!(body, "foo");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn deserialize_body() {
|
|
#[derive(Debug, Deserialize)]
|
|
struct Input {
|
|
foo: String,
|
|
}
|
|
|
|
let app = Router::new().route(
|
|
"/",
|
|
post(|input: extract::Json<Input>| async { input.0.foo }),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
let res = client.post("/").json(&json!({ "foo": "bar" })).send().await;
|
|
let body = res.text().await;
|
|
|
|
assert_eq!(body, "bar");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn consume_body_to_json_requires_json_content_type() {
|
|
#[derive(Debug, Deserialize)]
|
|
struct Input {
|
|
foo: String,
|
|
}
|
|
|
|
let app = Router::new().route(
|
|
"/",
|
|
post(|input: extract::Json<Input>| async { input.0.foo }),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
let res = client.post("/").body(r#"{ "foo": "bar" }"#).send().await;
|
|
|
|
let status = res.status();
|
|
dbg!(res.text().await);
|
|
|
|
assert_eq!(status, StatusCode::BAD_REQUEST);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn body_with_length_limit() {
|
|
use std::iter::repeat;
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
struct Input {
|
|
foo: String,
|
|
}
|
|
|
|
const LIMIT: u64 = 8;
|
|
|
|
let app = Router::new().route(
|
|
"/",
|
|
post(|_body: extract::ContentLengthLimit<Bytes, LIMIT>| async {}),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
let res = client
|
|
.post("/")
|
|
.body(repeat(0_u8).take((LIMIT - 1) as usize).collect::<Vec<_>>())
|
|
.send()
|
|
.await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client
|
|
.post("/")
|
|
.body(repeat(0_u8).take(LIMIT as usize).collect::<Vec<_>>())
|
|
.send()
|
|
.await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client
|
|
.post("/")
|
|
.body(repeat(0_u8).take((LIMIT + 1) as usize).collect::<Vec<_>>())
|
|
.send()
|
|
.await;
|
|
assert_eq!(res.status(), StatusCode::PAYLOAD_TOO_LARGE);
|
|
|
|
let res = client
|
|
.post("/")
|
|
.body(reqwest::Body::wrap_stream(futures_util::stream::iter(
|
|
vec![Ok::<_, std::io::Error>(bytes::Bytes::new())],
|
|
)))
|
|
.send()
|
|
.await;
|
|
assert_eq!(res.status(), StatusCode::LENGTH_REQUIRED);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn routing() {
|
|
let app = Router::new()
|
|
.route(
|
|
"/users",
|
|
get(|_: Request<Body>| async { "users#index" })
|
|
.post(|_: Request<Body>| async { "users#create" }),
|
|
)
|
|
.route("/users/:id", get(|_: Request<Body>| async { "users#show" }))
|
|
.route(
|
|
"/users/:id/action",
|
|
get(|_: Request<Body>| async { "users#action" }),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::NOT_FOUND);
|
|
|
|
let res = client.get("/users").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "users#index");
|
|
|
|
let res = client.post("/users").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "users#create");
|
|
|
|
let res = client.get("/users/1").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "users#show");
|
|
|
|
let res = client.get("/users/1/action").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "users#action");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn extracting_url_params() {
|
|
let app = Router::new().route(
|
|
"/users/:id",
|
|
get(|Path(id): Path<i32>| async move {
|
|
assert_eq!(id, 42);
|
|
})
|
|
.post(|Path(params_map): Path<HashMap<String, i32>>| async move {
|
|
assert_eq!(params_map.get("id").unwrap(), &1337);
|
|
}),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/users/42").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client.post("/users/1337").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn extracting_url_params_multiple_times() {
|
|
let app = Router::new().route(
|
|
"/users/:id",
|
|
get(|_: extract::Path<i32>, _: extract::Path<String>| async {}),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/users/42").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn boxing() {
|
|
let app = Router::new()
|
|
.route(
|
|
"/",
|
|
on(MethodFilter::GET, |_: Request<Body>| async {
|
|
"hi from GET"
|
|
})
|
|
.on(MethodFilter::POST, |_: Request<Body>| async {
|
|
"hi from POST"
|
|
}),
|
|
)
|
|
.layer(tower_http::compression::CompressionLayer::new());
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "hi from GET");
|
|
|
|
let res = client.post("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "hi from POST");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn routing_between_services() {
|
|
use std::convert::Infallible;
|
|
use tower::service_fn;
|
|
|
|
async fn handle(_: Request<Body>) -> &'static str {
|
|
"handler"
|
|
}
|
|
|
|
let app = Router::new()
|
|
.route(
|
|
"/one",
|
|
service::get(service_fn(|_: Request<Body>| async {
|
|
Ok::<_, Infallible>(Response::new(Body::from("one get")))
|
|
}))
|
|
.post(service_fn(|_: Request<Body>| async {
|
|
Ok::<_, Infallible>(Response::new(Body::from("one post")))
|
|
}))
|
|
.on(
|
|
MethodFilter::PUT,
|
|
service_fn(|_: Request<Body>| async {
|
|
Ok::<_, Infallible>(Response::new(Body::from("one put")))
|
|
}),
|
|
),
|
|
)
|
|
.route("/two", service::on(MethodFilter::GET, any(handle)));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/one").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "one get");
|
|
|
|
let res = client.post("/one").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "one post");
|
|
|
|
let res = client.put("/one").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "one put");
|
|
|
|
let res = client.get("/two").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "handler");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn middleware_on_single_route() {
|
|
use tower::ServiceBuilder;
|
|
use tower_http::{compression::CompressionLayer, trace::TraceLayer};
|
|
|
|
async fn handle(_: Request<Body>) -> &'static str {
|
|
"Hello, World!"
|
|
}
|
|
|
|
let app = Router::new().route(
|
|
"/",
|
|
get(handle.layer(
|
|
ServiceBuilder::new()
|
|
.layer(TraceLayer::new_for_http())
|
|
.layer(CompressionLayer::new())
|
|
.into_inner(),
|
|
)),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
let body = res.text().await;
|
|
|
|
assert_eq!(body, "Hello, World!");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn service_in_bottom() {
|
|
async fn handler(_req: Request<Body>) -> Result<Response<Body>, Infallible> {
|
|
Ok(Response::new(hyper::Body::empty()))
|
|
}
|
|
|
|
let app = Router::new().route("/", service::get(service_fn(handler)));
|
|
|
|
TestClient::new(app);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_extractor_middleware() {
|
|
struct RequireAuth;
|
|
|
|
#[async_trait::async_trait]
|
|
impl<B> extract::FromRequest<B> for RequireAuth
|
|
where
|
|
B: Send,
|
|
{
|
|
type Rejection = StatusCode;
|
|
|
|
async fn from_request(req: &mut extract::RequestParts<B>) -> Result<Self, Self::Rejection> {
|
|
if let Some(auth) = req
|
|
.headers()
|
|
.expect("headers already extracted")
|
|
.get("authorization")
|
|
.and_then(|v| v.to_str().ok())
|
|
{
|
|
if auth == "secret" {
|
|
return Ok(Self);
|
|
}
|
|
}
|
|
|
|
Err(StatusCode::UNAUTHORIZED)
|
|
}
|
|
}
|
|
|
|
async fn handler() {}
|
|
|
|
let app = Router::new().route(
|
|
"/",
|
|
get(handler.layer(extract::extractor_middleware::<RequireAuth>())),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::UNAUTHORIZED);
|
|
|
|
let res = client.get("/").header(AUTHORIZATION, "secret").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn wrong_method_handler() {
|
|
let app = Router::new()
|
|
.route("/", get(|| async {}).post(|| async {}))
|
|
.route("/foo", patch(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.patch("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
let res = client.patch("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client.post("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
let res = client.get("/bar").send().await;
|
|
assert_eq!(res.status(), StatusCode::NOT_FOUND);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn wrong_method_service() {
|
|
#[derive(Clone)]
|
|
struct Svc;
|
|
|
|
impl<R> Service<R> for Svc {
|
|
type Response = Response<http_body::Empty<Bytes>>;
|
|
type Error = Infallible;
|
|
type Future = Ready<Result<Self::Response, Self::Error>>;
|
|
|
|
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
Poll::Ready(Ok(()))
|
|
}
|
|
|
|
fn call(&mut self, _req: R) -> Self::Future {
|
|
ready(Ok(Response::new(http_body::Empty::new())))
|
|
}
|
|
}
|
|
|
|
let app = Router::new()
|
|
.route("/", service::get(Svc).post(Svc))
|
|
.route("/foo", service::patch(Svc));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.patch("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
let res = client.patch("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client.post("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
let res = client.get("/bar").send().await;
|
|
assert_eq!(res.status(), StatusCode::NOT_FOUND);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn multiple_methods_for_one_handler() {
|
|
async fn root(_: Request<Body>) -> &'static str {
|
|
"Hello, World!"
|
|
}
|
|
|
|
let app = Router::new().route("/", on(MethodFilter::GET | MethodFilter::POST, root));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
let res = client.post("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn handler_into_service() {
|
|
async fn handle(body: String) -> impl IntoResponse {
|
|
format!("you said: {}", body)
|
|
}
|
|
|
|
let client = TestClient::new(handle.into_service());
|
|
|
|
let res = client.post("/").body("hi there!").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "you said: hi there!");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn captures_dont_match_empty_segments() {
|
|
let app = Router::new().route("/:key", get(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/").send().await;
|
|
assert_eq!(res.status(), StatusCode::NOT_FOUND);
|
|
|
|
let res = client.get("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn json_content_types() {
|
|
async fn valid_json_content_type(content_type: &str) -> bool {
|
|
println!("testing {:?}", content_type);
|
|
|
|
let app = Router::new().route("/", post(|Json(_): Json<Value>| async {}));
|
|
|
|
let res = TestClient::new(app)
|
|
.post("/")
|
|
.header("content-type", content_type)
|
|
.body("{}")
|
|
.send()
|
|
.await;
|
|
|
|
res.status() == StatusCode::OK
|
|
}
|
|
|
|
assert!(valid_json_content_type("application/json").await);
|
|
assert!(valid_json_content_type("application/json; charset=utf-8").await);
|
|
assert!(valid_json_content_type("application/json;charset=utf-8").await);
|
|
assert!(valid_json_content_type("application/cloudevents+json").await);
|
|
assert!(!valid_json_content_type("text/json").await);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn wildcard_sees_whole_url() {
|
|
let app = Router::new().route("/api/*rest", get(|uri: Uri| async move { uri.to_string() }));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/api/foo/bar").send().await;
|
|
assert_eq!(res.text().await, "/api/foo/bar");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn middleware_applies_to_routes_above() {
|
|
let app = Router::new()
|
|
.route("/one", get(std::future::pending::<()>))
|
|
.layer(
|
|
ServiceBuilder::new()
|
|
.layer(HandleErrorLayer::new(|_: BoxError| {
|
|
StatusCode::REQUEST_TIMEOUT
|
|
}))
|
|
.layer(TimeoutLayer::new(Duration::new(0, 0))),
|
|
)
|
|
.route("/two", get(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/one").send().await;
|
|
assert_eq!(res.status(), StatusCode::REQUEST_TIMEOUT);
|
|
|
|
let res = client.get("/two").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn middleware_that_return_early() {
|
|
let app = Router::new()
|
|
.route("/", get(|| async {}))
|
|
.layer(RequireAuthorizationLayer::bearer("password"))
|
|
.route("/public", get(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
assert_eq!(
|
|
client.get("/").send().await.status(),
|
|
StatusCode::UNAUTHORIZED
|
|
);
|
|
assert_eq!(
|
|
client
|
|
.get("/")
|
|
.header("authorization", "Bearer password")
|
|
.send()
|
|
.await
|
|
.status(),
|
|
StatusCode::OK
|
|
);
|
|
assert_eq!(
|
|
client.get("/doesnt-exist").send().await.status(),
|
|
StatusCode::NOT_FOUND
|
|
);
|
|
assert_eq!(client.get("/public").send().await.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn with_trailing_slash() {
|
|
let app = Router::new().route("/foo", get(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
// `TestClient` automatically follows redirects
|
|
let res = client.get("/foo/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn without_trailing_slash() {
|
|
let app = Router::new().route("/foo/", get(|| async {}));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
// `TestClient` automatically follows redirects
|
|
let res = client.get("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn with_and_without_trailing_slash() {
|
|
let app = Router::new()
|
|
.route("/foo", get(|| async { "without tsr" }))
|
|
.route("/foo/", get(|| async { "with tsr" }));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/foo/").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "with tsr");
|
|
|
|
let res = client.get("/foo").send().await;
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
assert_eq!(res.text().await, "without tsr");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn access_matched_path() {
|
|
let app = Router::new()
|
|
.route(
|
|
"/:key",
|
|
get(|path: MatchedPath| async move { path.as_str().to_string() }),
|
|
)
|
|
.layer(
|
|
TraceLayer::new_for_http().make_span_with(|req: &Request<_>| {
|
|
let path = req.extensions().get::<MatchedPath>().unwrap().as_str();
|
|
tracing::info_span!("http-request", %path)
|
|
}),
|
|
);
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/foo").send().await;
|
|
assert_eq!(res.text().await, "/:key");
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn static_and_dynamic_paths() {
|
|
let app = Router::new()
|
|
.route(
|
|
"/:key",
|
|
get(|Path(key): Path<String>| async move { format!("dynamic: {}", key) }),
|
|
)
|
|
.route("/foo", get(|| async { "static" }));
|
|
|
|
let client = TestClient::new(app);
|
|
|
|
let res = client.get("/bar").send().await;
|
|
assert_eq!(res.text().await, "dynamic: bar");
|
|
|
|
let res = client.get("/foo").send().await;
|
|
assert_eq!(res.text().await, "static");
|
|
}
|
|
|
|
pub(crate) fn assert_send<T: Send>() {}
|
|
pub(crate) fn assert_sync<T: Sync>() {}
|
|
pub(crate) fn assert_unpin<T: Unpin>() {}
|
|
|
|
pub(crate) struct NotSendSync(*const ());
|