#![cfg(not(tarpaulin_include))]
use std::path::Path;
use tempfile::Builder;
use crate::{testutil::JAN_2021_EPOCH, Repository};
pub(crate) fn with_temporary_path<F>(callback: F)
where F: FnOnce(&Path) {
let temp_repository_directory = Builder::new().prefix("interactive-rebase-tool").tempdir().unwrap();
let path = temp_repository_directory.path();
callback(path);
temp_repository_directory.close().unwrap();
}
#[inline]
pub fn with_temp_repository<F>(callback: F)
where F: FnOnce(Repository) {
with_temporary_path(|path| {
let mut opts = git2::RepositoryInitOptions::new();
_ = opts.initial_head("main");
let repo = git2::Repository::init_opts(path, &opts).unwrap();
{
let id = repo.index().unwrap().write_tree().unwrap();
let tree = repo.find_tree(id).unwrap();
let sig = git2::Signature::new("name", "name@example.com", &git2::Time::new(JAN_2021_EPOCH, 0)).unwrap();
_ = repo
.commit(Some("HEAD"), &sig, &sig, "initial commit", &tree, &[])
.unwrap();
};
callback(Repository::from(repo));
});
}
#[inline]
#[allow(clippy::panic)]
pub fn with_temp_bare_repository<F>(callback: F)
where F: FnOnce(Repository) {
with_temporary_path(|path| {
let git2_repository = git2::Repository::init_bare(path).unwrap();
let repository = Repository::from(git2_repository);
callback(repository);
});
}