mithril_aggregator/tools/file_archiver/
mod.rs

1mod 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    /// Create a file in the root directory.
20    ///
21    /// Returns the relative path to the created file based on the root directory.
22    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    /// Create a directory in the root directory.
29    ///
30    /// Returns the relative path to the created directory based on the root directory.
31    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}