extern crate actix; extern crate actix_web; extern crate bytes; extern crate futures; extern crate h2; extern crate http; extern crate tokio_core; #[macro_use] extern crate serde_derive; extern crate serde_json; use std::io; use std::time::Duration; use actix::*; use actix_web::*; use bytes::Bytes; use futures::Future; use http::StatusCode; use serde_json::Value; use tokio_core::reactor::Timeout; #[derive(Deserialize)] struct PParam { username: String, } #[test] fn test_path_extractor() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.with(|p: Path| format!("Welcome {}!", p.username)) }); }); // client request let request = srv.get().uri(srv.url("/test/index.html")).finish().unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test!")); } #[test] fn test_query_extractor() { let mut srv = test::TestServer::new(|app| { app.resource("/index.html", |r| { r.with(|p: Query| format!("Welcome {}!", p.username)) }); }); // client request let request = srv .get() .uri(srv.url("/index.html?username=test")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test!")); // client request let request = srv.get().uri(srv.url("/index.html")).finish().unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[test] fn test_async_extractor_async() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with(|data: Json| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| Ok(format!("{}", data.0))) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"{\"test\":1}")); } #[test] fn test_path_and_query_extractor() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with2(|p: Path, q: Query| { format!("Welcome {} - {}!", p.username, q.username) }) }); }); // client request let request = srv .get() .uri(srv.url("/test1/index.html?username=test2")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - test2!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[test] fn test_path_and_query_extractor2() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route() .with3(|_: HttpRequest, p: Path, q: Query| { format!("Welcome {} - {}!", p.username, q.username) }) }); }); // client request let request = srv .get() .uri(srv.url("/test1/index.html?username=test2")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - test2!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[test] fn test_path_and_query_extractor2_async() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route() .with3(|p: Path, _: Query, data: Json| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", p.username, data.0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - {\"test\":1}!")); } #[test] fn test_path_and_query_extractor3_async() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with2(|p: Path, data: Json| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", p.username, data.0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); } #[test] fn test_path_and_query_extractor4_async() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with2(|data: Json, p: Path| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", p.username, data.0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); } #[test] fn test_path_and_query_extractor2_async2() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route() .with3(|p: Path, data: Json, _: Query| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", p.username, data.0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - {\"test\":1}!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[test] fn test_path_and_query_extractor2_async3() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route() .with3(|data: Json, p: Path, _: Query| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", p.username, data.0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - {\"test\":1}!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[test] fn test_path_and_query_extractor2_async4() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route() .with(|data: (Json, Path, Query)| { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| { Ok(format!("Welcome {} - {}!", data.1.username, (data.0).0)) }) .responder() }) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - {\"test\":1}!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[cfg(actix_impl_trait)] fn test_impl_trait( data: (Json, Path, Query), ) -> impl Future { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| Ok(format!("Welcome {} - {}!", data.1.username, (data.0).0))) } #[cfg(actix_impl_trait)] fn test_impl_trait_err( _data: (Json, Path, Query), ) -> impl Future { Timeout::new(Duration::from_millis(10), &Arbiter::handle()) .unwrap() .and_then(move |_| Err(io::Error::new(io::ErrorKind::Other, "other"))) } #[cfg(actix_impl_trait)] #[test] fn test_path_and_query_extractor2_async4_impl_trait() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with_async(test_impl_trait) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"Welcome test1 - {\"test\":1}!")); // client request let request = srv .get() .uri(srv.url("/test1/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::BAD_REQUEST); } #[cfg(actix_impl_trait)] #[test] fn test_path_and_query_extractor2_async4_impl_trait_err() { let mut srv = test::TestServer::new(|app| { app.resource("/{username}/index.html", |r| { r.route().with_async(test_impl_trait_err) }); }); // client request let request = srv .post() .uri(srv.url("/test1/index.html?username=test2")) .header("content-type", "application/json") .body("{\"test\": 1}") .unwrap(); let response = srv.execute(request.send()).unwrap(); assert_eq!(response.status(), StatusCode::INTERNAL_SERVER_ERROR); } #[test] fn test_non_ascii_route() { let mut srv = test::TestServer::new(|app| { app.resource("/中文/index.html", |r| r.f(|_| "success")); }); // client request let request = srv .get() .uri(srv.url("/中文/index.html")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!(bytes, Bytes::from_static(b"success")); } #[test] fn test_unsafe_path_route() { let mut srv = test::TestServer::new(|app| { app.resource("/test/{url}", |r| { r.f(|r| format!("success: {}", &r.match_info()["url"])) }); }); // client request let request = srv .get() .uri(srv.url("/test/http%3A%2F%2Fexample.com")) .finish() .unwrap(); let response = srv.execute(request.send()).unwrap(); assert!(response.status().is_success()); // read response let bytes = srv.execute(response.body()).unwrap(); assert_eq!( bytes, Bytes::from_static(b"success: http:%2F%2Fexample.com") ); }