aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/actix_web.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-28 21:26:13 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-29 09:25:59 +0100
commitb56c11639f9ea5ef1354a1e91ca98541a16bca9b (patch)
tree11933ea82d131d0b1efe64aed64ce1705f6f7d0a /testing/tests/actix_web.rs
parent9026f616e620426535bf095848fe355e25911d62 (diff)
downloadaskama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.tar.gz
askama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.tar.bz2
askama-b56c11639f9ea5ef1354a1e91ca98541a16bca9b.zip
Move Actix-Web integration into separate askama_actix crate
Diffstat (limited to 'testing/tests/actix_web.rs')
-rw-r--r--testing/tests/actix_web.rs54
1 files changed, 0 insertions, 54 deletions
diff --git a/testing/tests/actix_web.rs b/testing/tests/actix_web.rs
deleted file mode 100644
index 8beef3d..0000000
--- a/testing/tests/actix_web.rs
+++ /dev/null
@@ -1,54 +0,0 @@
-#![cfg(feature = "actix")]
-use actix_web::http::header::CONTENT_TYPE;
-use actix_web::test;
-use actix_web::web;
-use askama::{actix_web::TemplateIntoResponse, Template};
-use bytes::Bytes;
-
-#[derive(Template)]
-#[template(path = "hello.html")]
-struct HelloTemplate<'a> {
- name: &'a str,
-}
-
-#[actix_rt::test]
-async fn test_actix_web() {
- let srv = test::start(|| {
- actix_web::App::new()
- .service(web::resource("/").to(|| async { HelloTemplate { name: "world" } }))
- });
-
- let request = srv.get("/");
- let mut response = request.send().await.unwrap();
- assert!(response.status().is_success());
- assert_eq!(
- response.headers().get(CONTENT_TYPE).unwrap(),
- "text/html; charset=utf-8"
- );
-
- let bytes = response.body().await.unwrap();
- assert_eq!(bytes, Bytes::from_static("Hello, world!".as_ref()));
-}
-
-#[actix_rt::test]
-async fn test_actix_web_responder() {
- let srv = test::start(|| {
- actix_web::App::new().service(web::resource("/").to(|| {
- async {
- let name = "world".to_owned();
- HelloTemplate { name: &name }.into_response()
- }
- }))
- });
-
- let request = srv.get("/");
- let mut response = request.send().await.unwrap();
- assert!(response.status().is_success());
- assert_eq!(
- response.headers().get(CONTENT_TYPE).unwrap(),
- "text/html; charset=utf-8"
- );
-
- let bytes = response.body().await.unwrap();
- assert_eq!(bytes, Bytes::from_static("Hello, world!".as_ref()));
-}