use failure::*; use std::path::PathBuf; use proxmox_backup::backup::*; const TESTDIR: &str = "./tests/prune_data/simple1"; fn get_prune_list( list: Vec, keep_last: Option, keep_daily: Option, keep_weekly: Option, keep_monthly: Option, keep_yearly: Option, ) -> Vec { let remove_list = BackupGroup::compute_prune_list( list, keep_last, keep_daily, keep_weekly, keep_monthly, keep_yearly).unwrap(); remove_list .iter() .map(|d| d.backup_dir.relative_path()) .collect() } #[test] fn test_prune_simple() -> Result<(), Error> { let orig_list = BackupInfo::list_backups(std::path::Path::new(TESTDIR))?; // keep-last tests let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(4), None, None, None, None); let expect: Vec = Vec::new(); assert_eq!(remove_list, expect); let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(3), None, None, None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), ]; assert_eq!(remove_list, expect); let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(2), None, None, None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), ]; assert_eq!(remove_list, expect); let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(1), None, None, None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(0), None, None, None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T12:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-last, keep-daily mixed let list = orig_list.clone(); let remove_list = get_prune_list(list, Some(2), Some(2), None, None, None); let expect: Vec = vec![]; assert_eq!(remove_list, expect); // keep-daily test let list = orig_list.clone(); let remove_list = get_prune_list(list, None, Some(3), None, None, None); let expect: Vec = vec![PathBuf::from("host/elsa/2019-12-04T11:59:15Z")]; assert_eq!(remove_list, expect); // keep-daily test let list = orig_list.clone(); let remove_list = get_prune_list(list, None, Some(2), None, None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-weekly let list = orig_list.clone(); let remove_list = get_prune_list(list, None, None, Some(5), None, None); // all backup are within the same week, so we only keep a single file let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-daily + keep-weekly let list = orig_list.clone(); let remove_list = get_prune_list(list, None, Some(1), Some(5), None, None); let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-monthly let list = orig_list.clone(); let remove_list = get_prune_list(list, None, None, None, Some(6), None); // all backup are within the same month, so we only keep a single file let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-yearly let list = orig_list.clone(); let remove_list = get_prune_list(list, None, None, None, None, Some(7)); // all backup are within the same year, so we only keep a single file let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); // keep-weekly + keep-monthly + keep-yearly let list = orig_list.clone(); let remove_list = get_prune_list(list, None, None, Some(5), Some(6), Some(7)); // all backup are within one week, so we only keep a single file let expect: Vec = vec![ PathBuf::from("host/elsa/2019-12-02T11:59:15Z"), PathBuf::from("host/elsa/2019-12-03T11:59:15Z"), PathBuf::from("host/elsa/2019-12-04T11:59:15Z"), ]; assert_eq!(remove_list, expect); Ok(()) }