16 releases (8 breaking)

0.9.1 Dec 14, 2023
0.9.0 Nov 27, 2023
0.8.1 Oct 4, 2023
0.8.0 Jun 27, 2023
0.4.0 Dec 29, 2020

#198 in Filesystem

Download history 989/week @ 2023-12-18 307/week @ 2023-12-25 491/week @ 2024-01-01 676/week @ 2024-01-08 685/week @ 2024-01-15 853/week @ 2024-01-22 788/week @ 2024-01-29 844/week @ 2024-02-05 912/week @ 2024-02-12 797/week @ 2024-02-19 973/week @ 2024-02-26 1005/week @ 2024-03-04 1380/week @ 2024-03-11 1884/week @ 2024-03-18 1156/week @ 2024-03-25 2060/week @ 2024-04-01

6,543 downloads per month
Used in 14 crates

MIT/Apache

44KB
609 lines

Semi-persistent, scoped test directories

This crate aims to make it easier to use temporary directories in tests, primarily by calling the testdir!() macro somewhere in a test function. The direcetories are structured per-scope and per-test and will be available for inspection after the test has finished. On subsequent test runs older generations of test directories will be cleaned up.

If you've ever used pytest's tmp_path or tmpdir fixtures this pattern should be similar.

By default test directories are created in cargo's target directory:

target/testdir-$N/module/path/test_name

Here $N is an integer generation number increasing with each cargo test invocation. Generations older than the 8 most recent ones are removed on the next cargo test run.

There is also a symlink pointing to the most recent generation:

target/testdir-current -> testdir-$N`

Note however that on windows sometimes this can not be updated due to permissions, this symlink is a best-effort on windows.

Example

Even when executing this with cargo test --jobs=1 these tests will pass as each gets their own unique directory:

// E.g. in lib.rs

mod tests {
    use std::path::PathBuf;
    use testdir::testdir;

    #[test]
    fn test_write() {
        let dir: PathBuf = testdir!();
        let path = dir.join("hello.txt");
        std::fs::write(&path, "hi there").ok();
        assert!(path.exists());
    }
    
    #[test]
    fn test_read() {
        let dir: PathBuf = testdir!();
        let path = dir.join("hello.txt");
        assert!(!path.exists());
    }
}

Afterwards you can inspect the directories and they should look something like this:

$ tree target/
target/
+- testdir-0
|    +- cratename
|         +- tests
|              +- test_read
|              +- test_write
|                   +- hello.txt
+- testdir-current -> testdir-0

Feedback and contributing

The code lives in a git repository at https://github.com/flub/testdir from which you can create issues, clone the repository and create pull requests.

Dependencies

~4–6.5MB
~133K SLoC