bakare/tests/system_tests.rs

112 lines
4.4 KiB
Rust
Raw Normal View History

#[cfg(test)]
mod must {
use anyhow::Result;
use bakare::backup;
2020-12-25 21:52:40 +00:00
use bakare::test::assertions::in_memory::*;
use bakare::{repository::Repository, test::source::TestSource};
2018-10-04 15:29:19 +01:00
#[test]
fn restore_multiple_files() -> Result<()> {
let source = TestSource::new().unwrap();
2018-10-04 15:29:19 +01:00
source.write_text_to_file("first", "some contents").unwrap();
source.write_text_to_file("second", "some contents").unwrap();
source.write_text_to_file("third", "some other contents").unwrap();
2018-10-04 15:29:19 +01:00
assert_same_after_restore(source.path())
}
2018-10-04 15:29:19 +01:00
#[test]
fn restore_files_after_reopening_repository() -> Result<()> {
2021-02-06 16:40:32 +00:00
let source = TestSource::new()?;
2020-12-25 21:52:40 +00:00
let repository_path = random_in_memory_path("repository")?;
let restore_target = random_in_memory_path("target")?;
Repository::init(&repository_path)?;
let source_file_relative_path = "some file path";
let original_contents = "some old contents";
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, original_contents)?;
restore_all_from_reloaded_repository(&repository_path, &restore_target)?;
2020-12-25 21:52:40 +00:00
let source_file_full_path = &source.file_path(source_file_relative_path)?;
assert_restored_file_contents(&repository_path, source_file_full_path, original_contents.as_bytes())
}
#[test]
fn restore_older_version_of_file() -> Result<()> {
let source = TestSource::new().unwrap();
2020-12-25 21:52:40 +00:00
let repository_path = random_in_memory_path("repository")?;
Repository::init(&repository_path)?;
2019-09-01 11:05:22 +01:00
let source_file_relative_path = "some path";
2020-12-25 21:52:40 +00:00
let source_file_full_path = source.file_path(source_file_relative_path)?;
let old_contents = "some old contents";
2018-10-04 15:29:19 +01:00
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, old_contents)?;
2019-09-07 14:42:30 +01:00
let old_item = newest_item(&repository_path, &source_file_full_path)?;
let old_id = old_item.id();
2019-09-07 14:42:30 +01:00
let new_contents = "totally new contents";
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, new_contents)?;
2019-09-07 14:42:30 +01:00
assert_restored_from_version_has_contents(&repository_path, &source_file_full_path, old_contents.as_bytes(), &old_id)
}
2019-09-23 16:30:40 +01:00
#[test]
fn newer_version_should_be_greater_than_earlier_version() -> Result<()> {
let source = TestSource::new().unwrap();
2020-12-25 21:52:40 +00:00
let repository_path = random_in_memory_path("repository")?;
Repository::init(&repository_path)?;
2019-09-23 16:30:40 +01:00
let source_file_relative_path = "some path";
2020-12-25 21:52:40 +00:00
let source_file_full_path = source.file_path(source_file_relative_path)?;
2019-09-23 16:30:40 +01:00
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "old")?;
2019-09-23 16:30:40 +01:00
let old_item = newest_item(&repository_path, &source_file_full_path)?;
let old_version = old_item.version();
2019-09-23 16:30:40 +01:00
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "new")?;
2019-09-23 16:30:40 +01:00
let new_item = newest_item(&repository_path, &source_file_full_path)?;
let new_version = new_item.version();
2019-09-23 16:30:40 +01:00
assert!(new_version > old_version);
2019-09-23 16:30:40 +01:00
Ok(())
}
2018-10-04 15:29:19 +01:00
#[test]
fn restore_latest_version_by_default() -> Result<()> {
let source = TestSource::new().unwrap();
2020-12-25 21:52:40 +00:00
let repository_path = random_in_memory_path("repository")?;
Repository::init(&repository_path)?;
2019-09-23 12:18:18 +01:00
let source_file_relative_path = "some path";
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "old contents")?;
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "newer contents")?;
backup_file_with_text_contents(&source, &repository_path, source_file_relative_path, "newest contents")?;
2019-09-23 12:18:18 +01:00
2020-12-25 21:52:40 +00:00
let source_file_full_path = &source.file_path(source_file_relative_path)?;
assert_restored_file_contents(&repository_path, source_file_full_path, b"newest contents")
}
2019-09-23 12:18:18 +01:00
#[test]
fn forbid_backup_of_paths_within_repository() -> Result<()> {
2020-12-25 21:52:40 +00:00
let repository_path = random_in_memory_path("repository")?;
Repository::init(&repository_path)?;
let mut repository = Repository::open(&repository_path)?;
let error = backup::Engine::new(&repository_path, &mut repository);
assert!(error.is_err());
Ok(())
}
// TODO: index corruption
// TODO: encryption
// TODO: resume from sleep while backup in progress
2019-09-07 15:08:47 +01:00
}