Files

100 lines
2.4 KiB
Rust
Raw Permalink Normal View History

2021-08-02 23:09:09 +02:00
//! Run with
//!
//! ```not_rust
//! cargo run -p example-templates
2021-08-02 23:09:09 +02:00
//! ```
2021-06-13 13:58:12 +02:00
use askama::Template;
2021-08-18 00:04:15 +02:00
use axum::{
extract,
http::StatusCode,
response::{Html, IntoResponse, Response},
routing::get,
Router,
2021-08-18 00:04:15 +02:00
};
2022-03-06 12:37:00 +01:00
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
2021-06-13 13:58:12 +02:00
#[tokio::main]
async fn main() {
2022-03-06 12:37:00 +01:00
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env()
.unwrap_or_else(|_| format!("{}=debug", env!("CARGO_CRATE_NAME")).into()),
)
2022-03-06 12:37:00 +01:00
.with(tracing_subscriber::fmt::layer())
.init();
2021-06-13 13:58:12 +02:00
// build our application with some routes
2025-03-17 14:29:27 +02:00
let app = app();
2021-06-13 13:58:12 +02:00
// run it
let listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
2021-06-19 12:50:33 +02:00
.await
.unwrap();
tracing::debug!("listening on {}", listener.local_addr().unwrap());
axum::serve(listener, app).await.unwrap();
2021-06-13 13:58:12 +02:00
}
2025-03-17 14:29:27 +02:00
fn app() -> Router {
Router::new().route("/greet/{name}", get(greet))
}
2021-08-06 16:17:57 +08:00
async fn greet(extract::Path(name): extract::Path<String>) -> impl IntoResponse {
2021-06-13 13:58:12 +02:00
let template = HelloTemplate { name };
HtmlTemplate(template)
}
#[derive(Template)]
#[template(path = "hello.html")]
struct HelloTemplate {
name: String,
}
struct HtmlTemplate<T>(T);
impl<T> IntoResponse for HtmlTemplate<T>
where
T: Template,
{
fn into_response(self) -> Response {
2021-06-13 13:58:12 +02:00
match self.0.render() {
2021-08-18 00:04:15 +02:00
Ok(html) => Html(html).into_response(),
2022-03-01 00:04:33 +01:00
Err(err) => (
StatusCode::INTERNAL_SERVER_ERROR,
2023-09-19 02:51:57 -04:00
format!("Failed to render template. Error: {err}"),
2022-03-01 00:04:33 +01:00
)
.into_response(),
2021-06-13 13:58:12 +02:00
}
}
}
2025-03-17 14:29:27 +02:00
#[cfg(test)]
mod tests {
use super::*;
use axum::{
body::Body,
http::{Request, StatusCode},
};
use http_body_util::BodyExt;
use tower::ServiceExt;
#[tokio::test]
async fn test_main() {
let response = app()
.oneshot(
Request::builder()
.uri("/greet/Foo")
.body(Body::empty())
.unwrap(),
)
.await
.unwrap();
assert_eq!(response.status(), StatusCode::OK);
let body = response.into_body();
let bytes = body.collect().await.unwrap().to_bytes();
let html = String::from_utf8(bytes.to_vec()).unwrap();
assert_eq!(html, "<h1>Hello, Foo!</h1>");
}
}