aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/actix_web.rs
diff options
context:
space:
mode:
authorLibravatar Ryan McGrath <ryan@rymc.io>2018-07-21 19:10:48 +0000
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-07-22 14:47:29 +0100
commited98793b506c66723c713991f40c0065557a35d5 (patch)
tree6ab23bf2dab25d63f276de96504f7cb28cb3d9cb /testing/tests/actix_web.rs
parentc860bee5d5934fba6d57cbf815894a5cc8599ad9 (diff)
downloadaskama-ed98793b506c66723c713991f40c0065557a35d5.tar.gz
askama-ed98793b506c66723c713991f40c0065557a35d5.tar.bz2
askama-ed98793b506c66723c713991f40c0065557a35d5.zip
Tests for actix_web
Diffstat (limited to 'testing/tests/actix_web.rs')
-rw-r--r--testing/tests/actix_web.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/tests/actix_web.rs b/testing/tests/actix_web.rs
new file mode 100644
index 0000000..12724d9
--- /dev/null
+++ b/testing/tests/actix_web.rs
@@ -0,0 +1,29 @@
+#[macro_use]
+extern crate askama;
+extern crate actix_web;
+extern crate bytes;
+
+use actix_web::http::header::CONTENT_TYPE;
+use actix_web::test;
+use actix_web::HttpMessage;
+use askama::Template;
+use bytes::Bytes;
+
+#[derive(Template)]
+#[template(path = "hello.html")]
+struct HelloTemplate<'a> {
+ name: &'a str,
+}
+
+#[test]
+fn test_actix_web() {
+ let mut srv = test::TestServer::new(|app| app.handler(|_| HelloTemplate { name: "world" }));
+
+ let request = srv.get().finish().unwrap();
+ let response = srv.execute(request.send()).unwrap();
+ assert!(response.status().is_success());
+ assert_eq!(response.headers().get(CONTENT_TYPE).unwrap(), "text/html");
+
+ let bytes = srv.execute(response.body()).unwrap();
+ assert_eq!(bytes, Bytes::from_static("Hello, world!".as_ref()));
+}