#[cfg(not(test))]
use std::fs;
use std::io::Error;
use std::path::{Path, PathBuf};
use glob::glob;
pub fn get_entries(paths: Vec<String>) -> Vec<PathBuf> {
let mut tmp: Vec<glob::Paths> = vec![];
for path in paths {
tmp.push(glob(&path).expect("failed to read path pattern"));
}
let mut buf: Vec<PathBuf> = vec![];
for t in tmp {
for e in t.filter_map(Result::ok) {
if !e.is_absolute() {
buf.push(e);
}
}
}
buf
}
pub fn rem_results(path: &str) -> Result<(), Error> {
let results = glob(path).expect("failed to read glob pattern");
for f in results.filter_map(std::result::Result::ok) {
#[cfg(test)]
test::dummy_remove_file(f)?;
#[cfg(not(test))]
fs::remove_file(f)?;
}
Ok(())
}
pub fn to_child_str_path(path: &Path) -> String {
let mut prts = path.components();
prts.next();
let _path = prts.fold(PathBuf::new(), |mut acc, p| {
acc.push(p);
acc
});
_path.to_string_lossy().into_owned()
}
#[cfg(test)]
mod test {
use std::path::{Path, PathBuf};
use super::*;
pub fn dummy_remove_file(_: PathBuf) -> std::io::Result<()> {
Ok(())
}
#[test]
fn test_get_entries_with_single_file_pattern() {
let src = vec!["src/fs.rs".to_string()];
let ret = get_entries(src);
let buf = ret.get(0).expect("next");
assert_eq!(Path::new("src/fs.rs"), buf.as_path());
}
#[test]
fn test_get_entries_with_glob_pattern() {
let path = Path::new("src").join("fs.*");
let src = vec![path.as_os_str().to_string_lossy().into_owned()];
let ret = get_entries(src);
let buf = ret.get(0).expect("next");
assert_eq!(Path::new("src/fs.rs"), buf.as_path());
}
#[test]
fn test_rem_results() {
let path = file!();
assert!(rem_results(path).is_ok());
}
#[test]
fn test_to_child_str_path() {
let path = Path::new("foo/bar/baz");
assert_eq!(to_child_str_path(&path), "bar/baz");
let path = Path::new("foo/bar/baz/qux");
assert_eq!(to_child_str_path(&path), "bar/baz/qux");
let path = Path::new("/foo/bar/baz/qux");
assert_eq!(to_child_str_path(&path), "foo/bar/baz/qux");
}
}