blob: 2a7b6e8c898c3b11610a591075dce1545763a892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
extern crate rsycle;
#[cfg(test)]
mod tests {
use rsycle::main::{build_path, empty, list, restore, rsycle};
use std::fs;
use std::path::{Component, PathBuf};
use std::ffi::OsStr;
fn gen_rsyclebin(dir_name: &str) -> PathBuf {
let mut rsyclebin = dirs::home_dir().unwrap();
rsyclebin.push(dir_name);
if !rsyclebin.exists() {
fs::create_dir(&rsyclebin).unwrap();
}
rsyclebin
}
#[test]
fn test_basics() {
test_rsycle("test_file".as_ref(), gen_rsyclebin(".test_rsyclebin"));
test_rsycle("../test_file_relative".as_ref(), gen_rsyclebin(".test_rsyclebin_relative"));
}
fn test_rsycle(filename: &OsStr, rsyclebin: PathBuf) {
let mut test_path: PathBuf = [Component::CurDir, Component::Normal(filename)]
.iter()
.collect();
assert!(!test_path.exists());
fs::File::create(test_path.clone()).unwrap();
test_path = build_path(filename.to_str().unwrap()).unwrap();
assert!(rsycle(rsyclebin.clone(), test_path.clone()).is_ok());
assert!(!test_path.exists());
assert!(list(rsyclebin.clone()).is_ok());
assert!(restore(rsyclebin.clone(), test_path.clone()).is_ok());
assert!(test_path.exists());
assert!(empty(rsyclebin.clone()).is_ok());
fs::remove_file(test_path).unwrap();
fs::remove_dir_all(rsyclebin).unwrap();
}
}
|