1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-20 18:40:08 +00:00
actix-web/actix-test
2024-07-07 03:54:00 +01:00
..
src chore: move deny lints to manifests 2024-07-07 03:54:00 +01:00
Cargo.toml chore: move deny lints to manifests 2024-07-07 03:54:00 +01:00
CHANGES.md chore(actix-test): prepare release 0.1.5 2024-06-10 00:01:17 +01:00
LICENSE-APACHE migrate integration testing to new crate (#2112) 2021-04-02 08:26:59 +01:00
LICENSE-MIT migrate integration testing to new crate (#2112) 2021-04-02 08:26:59 +01:00
README.md docs(test): intrgrate cargo-rdme 2024-06-10 23:23:38 +01:00

actix-test

crates.io Documentation Version MIT or Apache 2.0 licensed
dependency status Download Chat on Discord

Integration testing tools for Actix Web applications.

The main integration testing tool is [TestServer]. It spawns a real HTTP server on an unused port and provides methods that use a real HTTP client. Therefore, it is much closer to real-world cases than using init_service, which skips HTTP encoding and decoding.

Examples

use actix_web::{get, web, test, App, HttpResponse, Error, Responder};

#[get("/")]
async fn my_handler() -> Result<impl Responder, Error> {
    Ok(HttpResponse::Ok())
}

#[actix_rt::test]
async fn test_example() {
    let srv = actix_test::start(||
        App::new().service(my_handler)
    );

    let req = srv.get("/");
    let res = req.send().await.unwrap();

    assert!(res.status().is_success());
}