aboutsummaryrefslogtreecommitdiffstats
path: root/askama_mendes/tests/basic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'askama_mendes/tests/basic.rs')
-rw-r--r--askama_mendes/tests/basic.rs96
1 files changed, 96 insertions, 0 deletions
diff --git a/askama_mendes/tests/basic.rs b/askama_mendes/tests/basic.rs
new file mode 100644
index 0000000..2a07c13
--- /dev/null
+++ b/askama_mendes/tests/basic.rs
@@ -0,0 +1,96 @@
+use std::sync::Arc;
+
+use async_trait::async_trait;
+use hyper::body::to_bytes;
+use hyper::{Body, Request};
+use mendes::application::Responder;
+use mendes::http::request::Parts;
+use mendes::http::{Response, StatusCode};
+use mendes::{handler, route, Application, Context};
+
+use askama::Template;
+
+#[tokio::test]
+async fn test() {
+ let req = Request::builder().body(()).unwrap();
+ let rsp = App::handle(Context::new(Arc::new(App), req)).await;
+ let (rsp, body) = rsp.into_parts();
+ assert_eq!(
+ rsp.headers
+ .get("content-type")
+ .and_then(|hv| hv.to_str().ok()),
+ Some("text/plain")
+ );
+ assert_eq!(to_bytes(body).await.unwrap(), &b"Hello, world!"[..]);
+}
+
+#[handler(GET)]
+async fn hello(_: &App) -> Result<HelloTemplate<'static>, Error> {
+ Ok(HelloTemplate { name: "world" })
+}
+
+#[derive(Template)]
+#[template(path = "hello.txt")]
+struct HelloTemplate<'a> {
+ name: &'a str,
+}
+
+struct App;
+
+#[async_trait]
+impl Application for App {
+ type RequestBody = ();
+ type ResponseBody = Body;
+ type Error = Error;
+
+ async fn handle(mut cx: Context<Self>) -> Response<Body> {
+ route!(match cx.path() {
+ _ => hello,
+ })
+ }
+}
+
+#[derive(Debug)]
+enum Error {
+ Askama(askama::Error),
+ Mendes(mendes::Error),
+}
+
+impl From<askama::Error> for Error {
+ fn from(e: askama::Error) -> Error {
+ Error::Askama(e)
+ }
+}
+
+impl From<mendes::Error> for Error {
+ fn from(e: mendes::Error) -> Error {
+ Error::Mendes(e)
+ }
+}
+
+impl std::fmt::Display for Error {
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ match self {
+ Error::Askama(e) => write!(f, "{}", e),
+ Error::Mendes(e) => write!(f, "{}", e),
+ }
+ }
+}
+
+impl Responder<App> for Error {
+ fn into_response(self, _: &App, _: &Parts) -> Response<Body> {
+ Response::builder()
+ .status(StatusCode::from(&self))
+ .body(self.to_string().into())
+ .unwrap()
+ }
+}
+
+impl From<&Error> for StatusCode {
+ fn from(e: &Error) -> StatusCode {
+ match e {
+ Error::Mendes(e) => StatusCode::from(e),
+ Error::Askama(_) => StatusCode::INTERNAL_SERVER_ERROR,
+ }
+ }
+}