1
0
mirror of https://github.com/actix/actix-website synced 2024-11-30 19:14:36 +01:00
actix-website/examples/testing/src/main.rs

42 lines
1.0 KiB
Rust
Raw Normal View History

2019-06-24 23:43:31 +02:00
pub mod integration_one;
pub mod integration_two;
pub mod stream_response;
use actix_web::{http, web, App, HttpRequest, HttpResponse};
2019-06-17 21:39:58 +02:00
fn index(req: HttpRequest) -> HttpResponse {
if let Some(hdr) = req.headers().get(http::header::CONTENT_TYPE) {
if let Ok(_s) = hdr.to_str() {
return HttpResponse::Ok().into();
}
}
HttpResponse::BadRequest().into()
}
fn main() {
2019-06-24 23:43:31 +02:00
App::new().route("/", web::get().to(index));
}
// <unit-tests>
#[cfg(test)]
mod tests {
use super::*;
use actix_web::test;
2019-06-17 21:39:58 +02:00
2019-06-24 23:43:31 +02:00
#[test]
fn test_index_ok() {
let req = test::TestRequest::with_header("content-type", "text/plain")
.to_http_request();
2019-06-17 21:39:58 +02:00
2019-06-24 23:43:31 +02:00
let resp = test::block_on(index(req)).unwrap();
assert_eq!(resp.status(), http::StatusCode::OK);
}
#[test]
fn test_index_not_ok() {
let req = test::TestRequest::default().to_http_request();
let resp = test::block_on(index(req)).unwrap();
assert_eq!(resp.status(), http::StatusCode::BAD_REQUEST);
}
2019-06-17 21:39:58 +02:00
}
// </unit-tests>