#test-containers #axum #service #testing #testkit #test-kit #charted

charted-testkit

📦🦋 TestKit is a testing library for Axum services with testcontainers support

2 releases

0.1.1 Aug 20, 2024
0.1.0 Jun 23, 2024

#919 in Rust patterns

Download history 104/week @ 2024-06-20 15/week @ 2024-06-27 1/week @ 2024-07-25 153/week @ 2024-08-15 35/week @ 2024-08-22

188 downloads per month
Used in charted-testkit-macros

MIT license

22KB
239 lines

Noel (Trans Heart)

📦🦋 charted TestKit

charted TestKit is a testing library for Axum, which extends libtest with its own test macro. The library can also be used for only Testcontainers as well.

TestKit was built to make integration testing easier for Axum services with Testcontainers support and additional macros to help build assertions based off Responses.

Example

use charted_testkit::{test, TestContext, assert_successful, consume_body};
use axum::{body::Bytes, routing, Router};
use hyper::Method;

async fn hello() -> &'static str {
    "Hello, world!"
}

fn router() -> Router {
    Router::new().route("/", routing::get(hello))
}

#[test(router)]
async fn mytest(ctx: TestContext) {
    let res = ctx
        .request("/", Method::GET, None::<axum::body::Bytes>, |_| {})
        .await
        .expect("unable to send request");

    assert_successful!(res);

    let body = consume_body!(res);
    assert_eq!(body, Bytes::from_static(b"Hello, world!"));
}

License

TestKit is released under the MIT License with love and care by Noelware, LLC.! 🐻‍❄️🦋

Please read the LICENSE file in the canonical repository for more information on what you can do with the source code.

Dependencies

~7–19MB
~274K SLoC