mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 14:31:30 +03:00
104 lines
3.1 KiB
Rust
104 lines
3.1 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 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()
|
|
}
|
|
}
|
|
}
|