mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-19 07:32:22 +03:00
6665bc9289
This will prevent half-written content on disk in case the write is interrupted. Lock files are *not* used as the assumption is that a lock is held centrally.
117 lines
3.6 KiB
Rust
117 lines
3.6 KiB
Rust
use gitbutler_core::projects::Controller;
|
|
use tempfile::TempDir;
|
|
|
|
use gitbutler_testsupport::{self, paths};
|
|
|
|
pub fn new() -> (Controller, TempDir) {
|
|
let data_dir = paths::data_dir();
|
|
let controller = Controller::from_path(data_dir.path());
|
|
(controller, data_dir)
|
|
}
|
|
|
|
mod add {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn success() {
|
|
let (controller, _tmp) = new();
|
|
let repository = gitbutler_testsupport::TestProject::default();
|
|
let path = repository.path();
|
|
let project = controller.add(path).unwrap();
|
|
assert_eq!(project.path, path);
|
|
assert_eq!(project.title, path.iter().last().unwrap().to_str().unwrap());
|
|
}
|
|
|
|
mod error {
|
|
use gitbutler_core::projects::AddError;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn missing() {
|
|
let (controller, _tmp) = new();
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
assert!(matches!(
|
|
controller.add(tmp.path().join("missing")),
|
|
Err(AddError::PathNotFound)
|
|
));
|
|
}
|
|
|
|
#[test]
|
|
fn not_git() {
|
|
let (controller, _tmp) = new();
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
let path = tmp.path();
|
|
std::fs::write(path.join("file.txt"), "hello world").unwrap();
|
|
assert!(matches!(
|
|
controller.add(path),
|
|
Err(AddError::NotAGitRepository(_))
|
|
));
|
|
}
|
|
|
|
#[test]
|
|
fn empty() {
|
|
let (controller, _tmp) = new();
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
assert!(matches!(
|
|
controller.add(tmp.path()),
|
|
Err(AddError::NotAGitRepository(_))
|
|
));
|
|
}
|
|
|
|
#[test]
|
|
fn twice() {
|
|
let (controller, _tmp) = new();
|
|
let repository = gitbutler_testsupport::TestProject::default();
|
|
let path = repository.path();
|
|
controller.add(path).unwrap();
|
|
assert!(matches!(controller.add(path), Err(AddError::AlreadyExists)));
|
|
}
|
|
|
|
#[test]
|
|
fn bare() {
|
|
let (controller, _tmp) = new();
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
let repo_dir = tmp.path().join("bare");
|
|
|
|
let repo = git2::Repository::init_bare(&repo_dir).unwrap();
|
|
create_initial_commit(&repo);
|
|
|
|
let err = controller.add(repo_dir).unwrap_err();
|
|
assert!(matches!(err, AddError::BareUnsupported));
|
|
}
|
|
|
|
#[test]
|
|
fn worktree() {
|
|
let (controller, _tmp) = new();
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
let main_worktree_dir = tmp.path().join("main");
|
|
let worktree_dir = tmp.path().join("worktree");
|
|
|
|
let repo = git2::Repository::init(main_worktree_dir).unwrap();
|
|
create_initial_commit(&repo);
|
|
|
|
let worktree = repo.worktree("feature", &worktree_dir, None).unwrap();
|
|
let err = controller.add(worktree.path()).unwrap_err();
|
|
assert_eq!(err.to_string(), "worktrees unsupported");
|
|
}
|
|
|
|
fn create_initial_commit(repo: &git2::Repository) -> git2::Oid {
|
|
let signature = git2::Signature::now("test", "test@email.com").unwrap();
|
|
|
|
let mut index = repo.index().unwrap();
|
|
let oid = index.write_tree().unwrap();
|
|
|
|
repo.commit(
|
|
Some("HEAD"),
|
|
&signature,
|
|
&signature,
|
|
"initial commit",
|
|
&repo.find_tree(oid).unwrap(),
|
|
&[],
|
|
)
|
|
.unwrap()
|
|
}
|
|
}
|
|
}
|