#test-harness #teardown #async-context #setup #async-test #test

test-context

A library for providing custom setup/teardown for Rust tests without needing a test harness

8 releases

0.3.0 Feb 27, 2024
0.2.0 Feb 26, 2024
0.1.6 Feb 26, 2024
0.1.4 Jul 19, 2022
0.1.1 Jan 18, 2021

#36 in Testing

Download history 9974/week @ 2024-01-22 11164/week @ 2024-01-29 13136/week @ 2024-02-05 10915/week @ 2024-02-12 6644/week @ 2024-02-19 9695/week @ 2024-02-26 11498/week @ 2024-03-04 12857/week @ 2024-03-11 13869/week @ 2024-03-18 13667/week @ 2024-03-25 14002/week @ 2024-04-01 15044/week @ 2024-04-08 16142/week @ 2024-04-15 15593/week @ 2024-04-22 17986/week @ 2024-04-29 18292/week @ 2024-05-06

68,748 downloads per month
Used in 269 crates (16 directly)

MIT license

10KB

crates.io Documentation License Github

test-context

A library for providing custom setup/teardown for Rust tests without needing a test harness.

use test_context::{test_context, TestContext};

struct MyContext {
    value: String
}

impl TestContext for MyContext {
    fn setup() -> MyContext {
        MyContext {  value: "Hello, World!".to_string() }
    }

    fn teardown(self) {
        // Perform any teardown you wish.
    }
}

#[test_context(MyContext)]
#[test]
fn test_works(ctx: &mut MyContext) {
    assert_eq!(ctx.value, "Hello, World!");
}

Alternatively, you can use async functions in your test context by using the AsyncTestContext.

use test_context::{test_context, AsyncTestContext};

struct MyAsyncContext {
    value: String
}

impl AsyncTestContext for MyAsyncContext {
    async fn setup() -> MyAsyncContext {
        MyAsyncContext { value: "Hello, World!".to_string() }
    }

    async fn teardown(self) {
        // Perform any teardown you wish.
    }
}

#[test_context(MyAsyncContext)]
fn test_works(ctx: &mut MyAsyncContext) {
    assert_eq!(ctx.value, "Hello, World!");
}

The AsyncTestContext works well with async test wrappers like actix_rt::test or tokio::test.

#[test_context(MyAsyncContext)]
#[tokio::test]
async fn test_works(ctx: &mut MyAsyncContext) {
    assert_eq!(ctx.value, "Hello, World!");
}

Skipping the teardown execution

If what you need is to take full ownership of the context and don't care about the teardown execution for a specific test, you can use the skip_teardown keyword on the macro like this:

 use test_context::{test_context, TestContext};

 struct MyContext {}

 impl TestContext for MyContext {
     fn setup() -> MyContext {
         MyContext {}
     }
 }

#[test_context(MyContext, skip_teardown)]
#[test]
fn test_without_teardown(ctx: MyContext) {
  // Perform any operations that require full ownership of your context
}

License: MIT

Dependencies

~1–1.6MB
~33K SLoC