mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 23:02:31 +03:00
b60d49f752
This also rewrites some other checks in preference of opening the git directory in isolation. Doing so is very fast, and the only way to know for certain if a repository is bare. In future, once the repository is more separated from the worktree (in terms of mindset) it should be possible to handle bare repos with worktrees as well.
117 lines
3.5 KiB
Rust
117 lines
3.5 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);
|
|
(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()
|
|
}
|
|
}
|
|
}
|