2019-03-09 22:38:15 -08:00
|
|
|
use actix_web::{middleware, web, App, HttpRequest, HttpServer};
|
2018-04-13 09:18:42 +08:00
|
|
|
|
2019-12-07 23:59:24 +06:00
|
|
|
async fn index(req: HttpRequest) -> &'static str {
|
2022-06-07 22:53:38 -04:00
|
|
|
println!("REQ: {req:?}");
|
2018-04-13 09:18:42 +08:00
|
|
|
"Hello world!"
|
|
|
|
}
|
|
|
|
|
2020-09-12 16:49:45 +01:00
|
|
|
#[actix_web::main]
|
2019-12-07 23:59:24 +06:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2023-03-14 03:11:49 +00:00
|
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
|
|
|
|
|
|
|
log::info!("starting HTTP server at http://localhost:8080");
|
2018-04-13 09:18:42 +08:00
|
|
|
|
2019-03-09 22:38:15 -08:00
|
|
|
HttpServer::new(|| {
|
2018-05-08 11:08:43 -07:00
|
|
|
App::new()
|
2018-04-13 09:18:42 +08:00
|
|
|
// enable logger
|
2019-03-26 04:29:00 +01:00
|
|
|
.wrap(middleware::Logger::default())
|
2019-12-07 23:59:24 +06:00
|
|
|
.service(web::resource("/index.html").to(|| async { "Hello world!" }))
|
2019-03-09 22:38:15 -08:00
|
|
|
.service(web::resource("/").to(index))
|
2019-03-09 18:03:09 -08:00
|
|
|
})
|
2022-02-17 20:22:36 +00:00
|
|
|
.bind(("127.0.0.1", 8080))?
|
2019-12-25 20:48:33 +04:00
|
|
|
.run()
|
2019-12-07 23:59:24 +06:00
|
|
|
.await
|
2018-04-13 09:18:42 +08:00
|
|
|
}
|
2019-11-13 18:20:24 +01:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2024-02-20 03:29:10 +00:00
|
|
|
use actix_web::{body::to_bytes, dev::Service, http, test, Error};
|
2019-11-13 18:20:24 +01:00
|
|
|
|
2022-07-09 21:08:11 +01:00
|
|
|
use super::*;
|
|
|
|
|
2022-01-30 17:17:18 +01:00
|
|
|
#[actix_web::test]
|
2019-12-07 23:59:24 +06:00
|
|
|
async fn test_index() -> Result<(), Error> {
|
2019-11-13 18:20:24 +01:00
|
|
|
let app = App::new().route("/", web::get().to(index));
|
2022-01-30 17:17:18 +01:00
|
|
|
let app = test::init_service(app).await;
|
2019-11-13 18:20:24 +01:00
|
|
|
|
2019-12-07 23:59:24 +06:00
|
|
|
let req = test::TestRequest::get().uri("/").to_request();
|
2022-06-24 17:17:52 +00:00
|
|
|
let resp = app.call(req).await?;
|
2019-11-13 18:20:24 +01:00
|
|
|
|
|
|
|
assert_eq!(resp.status(), http::StatusCode::OK);
|
|
|
|
|
2022-01-30 17:17:18 +01:00
|
|
|
let response_body = resp.into_body();
|
2022-06-24 17:17:52 +00:00
|
|
|
assert_eq!(to_bytes(response_body).await?, r##"Hello world!"##);
|
2019-11-13 18:20:24 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|