#test #dir #file #directory #temp

dev test_dir

Easy creation of temporary file structure for test purpose

2 unstable releases

0.2.0 Apr 5, 2022
0.1.0 Oct 9, 2019

#205 in Testing

Download history 224/week @ 2023-08-01 253/week @ 2023-08-08 505/week @ 2023-08-15 446/week @ 2023-08-22 345/week @ 2023-08-29 531/week @ 2023-09-05 568/week @ 2023-09-12 338/week @ 2023-09-19 416/week @ 2023-09-26 376/week @ 2023-10-03 306/week @ 2023-10-10 453/week @ 2023-10-17 545/week @ 2023-10-24 319/week @ 2023-10-31 506/week @ 2023-11-07 487/week @ 2023-11-14

1,990 downloads per month
Used in 7 crates

MIT license

14KB
285 lines

TestDir

Fast creation of file structure for testing purpose.

Getting Started

Add the following dependency to Cargo manifest:

[dependencies]
test_dir = "0.1.0"

Example

use test_dir::{TestDir,FileType,DirBuilder};

{
  let temp = TestDir::temp()
      .create("test/dir", FileType::Dir)
      .create("test/file", FileType::EmptyFile)
      .create("test/random_file", FileType::RandomFile(100))
      .create("otherdir/zero_file", FileType::ZeroFile(100));

  let path: PathBuf = temp.path("test/random_file");
  assert!(path.exists());
}

// temp out-of-scope -> temp dir deleted

License

Licensed under MIT license, (LICENSE)


lib.rs:

test_dir

TestDir is a temporary directory builder. The target is to define a file structure for test purpose. It is not recommended to use in non-test environment.

use std::path::PathBuf;
use test_dir::{TestDir,FileType,DirBuilder};

let temp = TestDir::temp()
    .create("test/dir", FileType::Dir)
    .create("test/file", FileType::EmptyFile)
    .create("test/random_file", FileType::RandomFile(100))
    .create("otherdir/zero_file", FileType::ZeroFile(100));

let path: PathBuf = temp.path("test/random_file");
assert!(path.exists());

Dependencies

~305KB