mithril_aggregator/tools/file_archiver/
mod.rs1mod api;
2pub mod appender;
3mod entities;
4
5pub use api::*;
6pub use entities::*;
7
8#[cfg(test)]
9pub(crate) mod test_tools {
10 use std::fs::File;
11 use std::path::{Path, PathBuf};
12
13 use mithril_common::test_utils::TempDir;
14
15 pub fn get_test_directory(dir_name: &str) -> PathBuf {
16 TempDir::create("file_archiver", dir_name)
17 }
18
19 pub fn create_file(root: &Path, filename: &str) -> PathBuf {
23 let file_path = PathBuf::from(filename);
24 File::create(root.join(file_path.clone())).unwrap();
25 file_path
26 }
27
28 pub fn create_dir(root: &Path, dirname: &str) -> PathBuf {
32 let dir_path = PathBuf::from(dirname);
33 std::fs::create_dir(root.join(dir_path.clone())).unwrap();
34 dir_path
35 }
36}