mirror of
https://github.com/actix/examples
synced 2024-12-01 01:24:35 +01:00
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
use actix_web::{middleware, web, App, HttpRequest, HttpServer};
|
|
|
|
async fn index(req: HttpRequest) -> &'static str {
|
|
println!("REQ: {req:?}");
|
|
"Hello world!"
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
|
|
|
log::info!("starting HTTP server at http://localhost:8080");
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
// enable logger
|
|
.wrap(middleware::Logger::default())
|
|
.service(web::resource("/index.html").to(|| async { "Hello world!" }))
|
|
.service(web::resource("/").to(index))
|
|
})
|
|
.bind(("127.0.0.1", 8080))?
|
|
.run()
|
|
.await
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use actix_web::{body::to_bytes, dev::Service, http, test, Error};
|
|
|
|
use super::*;
|
|
|
|
#[actix_web::test]
|
|
async fn test_index() -> Result<(), Error> {
|
|
let app = App::new().route("/", web::get().to(index));
|
|
let app = test::init_service(app).await;
|
|
|
|
let req = test::TestRequest::get().uri("/").to_request();
|
|
let resp = app.call(req).await?;
|
|
|
|
assert_eq!(resp.status(), http::StatusCode::OK);
|
|
|
|
let response_body = resp.into_body();
|
|
assert_eq!(to_bytes(response_body).await?, r##"Hello world!"##);
|
|
|
|
Ok(())
|
|
}
|
|
}
|