=================================================================
This library provides simple util for testing file system operations. When you test something you need some sandbox which should wipe out after testing finish. This package allow you configure temporary directory and its inner structure, perform tests and remove it when all work will done.
It can be configured to create cutomized directory structure. The main idea to create this package is write test units for progaram which should work whith file system, manipulate with directories, files and links to them. Io tests need template directory with some files on different depth of fs structure.
The random generator is using for add uniqueness for temporary directory name which contains other tested file system units.
The test directory structure can be configured by yaml or json format.
---
- directory:
name: test
content:
- file:
name: test.txt
content:
inline_bytes:
- 116
- 101
- 115
- 116
It will produce directory with name test_726537253725 and file named test.txt in this directory with content "test". Number in directory name can be differe because this is random number.
The same directory structure can be configured by json format
[
{
"directory":
{
"name": "test",
"content":
[
{
"file":
{
"name": "test.txt",
"content":
{
"inline": [116,101,115,116]
}
}
}
]
}
}
]
Directory structure can contains many nested directories. Important The first level of configuration should start from single directory. This containing directory will be sand box container with name with appended random number in its name. Other inner units: directories, files and links will not change their names and can be used in tests as it is in configuration
Directory configuration can specify name and content:
- name - string represents directory name
- content - list(array) of inner file system units (directories, files, links)
yaml:
---
- directory:
name: test
content:
- file:
name: test.txt
content: empty
- link:
name: test_link
target: test.txt
or the same in json:
{
"name": "test_dir",
"content": [
{
"file": {
"name": "test.txt",
"content": "empty"
}
},
{
"link": {
"name": "test_link",
"target": "test.txt"
}
}
]
}
When we want to test files? directories and links in created sand box we need know the exact name of outer directory. This name will be unique each time when FsTester create it. The FsTester provides us this name in closure parameter in perform_fs_test function.
use std::fs;
const YAML_DIR_WITH_TEST_FILE_FROM_CARGO_TOML: &str = "---
- directory:
name: test
content:
- file:
name: test_from_cargo.toml
content:
original_file: Cargo.toml
";
let tester = FsTester::new(YAML_DIR_WITH_TEST_FILE_FROM_CARGO_TOML, ".");
tester.perform_fs_test(|dirname| {
// ^^^^^^^ name with appended random at the end of name
let inner_file_name = format!("{}/{}", dirname, "test_from_cargo.toml");
let metadata = fs::metadata(inner_file_name)?;
assert!(metadata.len() > 0);
Ok(())
});
- create more test units