summaryrefslogtreecommitdiffstats
path: root/src/backup.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/backup.rs')
-rw-r--r--src/backup.rs56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/backup.rs b/src/backup.rs
deleted file mode 100644
index ecdb87f..0000000
--- a/src/backup.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-use std::io;
-use std::fs;
-use chrono::Local;
-use std::path::{Path,PathBuf};
-
-use crate::defaults;
-use crate::khline::KhLine;
-
-pub fn backup(khline: &KhLine) -> io::Result<PathBuf> {
- let backupdir = defaults::get_backupdir();
- let backup_path = backupdir
- .join(format!("{}", Local::now().format("%FT%T")))
- .join(khline.get_normalized_path());
-
- if backup_path == khline.path {
- Err(io::Error::new(io::ErrorKind::Other, "backup dir same as source dir"))
- } else {
- let backup_path_parent = backup_path.parent().unwrap();
- prepare_backup_dir(&backup_path_parent)?;
- fs::copy(&khline.path, backup_path.clone())?;
- Ok(backup_path.clone())
- }
-}
-
-fn prepare_backup_dir(backupdir: &Path) -> io::Result<()> {
- if !backupdir.exists() {
- info!("Creating backup directory: {}", backupdir.to_string_lossy());
- fs::create_dir_all(&backupdir)?;
- }
-
- Ok(())
-}
-
-#[cfg(test)]
-mod tests {
- use super::*;
-
- use crate::testutils::prepare_testdir;
- use assert_fs::prelude::*;
- use predicates::prelude::*;
-
- #[test]
- fn backup_test() {
- let testdir = prepare_testdir("testdir");
-
- let khline = "twodaysacrossbuckets.ics".parse::<KhLine>().unwrap();
-
- let new_path = backup(&khline).unwrap();
-
- testdir.child(".khaleesi/cal/twodaysacrossbuckets.ics").assert(predicate::path::exists());
- testdir.child(new_path.clone()).assert(predicate::path::exists());
-
- let predicate_file = predicate::path::eq_file(testdir.child(new_path.clone()).path());
- testdir.child(".khaleesi/cal/twodaysacrossbuckets.ics").assert(predicate_file);
- }
-}