2024-03-31 00:29:45 +03:00
|
|
|
use gitbutler_core::projects::Controller;
|
2024-03-29 12:04:26 +03:00
|
|
|
use tempfile::TempDir;
|
|
|
|
|
2024-04-06 11:08:50 +03:00
|
|
|
use gitbutler_testsupport::{self, paths};
|
2024-03-29 12:04:26 +03:00
|
|
|
|
|
|
|
pub fn new() -> (Controller, TempDir) {
|
|
|
|
let data_dir = paths::data_dir();
|
2024-04-24 10:20:55 +03:00
|
|
|
let controller = Controller::from_path(data_dir.path());
|
2024-03-29 12:04:26 +03:00
|
|
|
(controller, data_dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
mod add {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn success() {
|
|
|
|
let (controller, _tmp) = new();
|
2024-04-06 11:08:50 +03:00
|
|
|
let repository = gitbutler_testsupport::TestProject::default();
|
2024-03-29 12:04:26 +03:00
|
|
|
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 {
|
2024-03-31 00:29:45 +03:00
|
|
|
use gitbutler_core::projects::AddError;
|
2024-03-29 12:04:26 +03:00
|
|
|
|
|
|
|
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),
|
2024-04-21 18:33:50 +03:00
|
|
|
Err(AddError::NotAGitRepository(_))
|
2024-03-29 12:04:26 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty() {
|
|
|
|
let (controller, _tmp) = new();
|
|
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
|
|
assert!(matches!(
|
|
|
|
controller.add(tmp.path()),
|
2024-04-21 18:33:50 +03:00
|
|
|
Err(AddError::NotAGitRepository(_))
|
2024-03-29 12:04:26 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn twice() {
|
|
|
|
let (controller, _tmp) = new();
|
2024-04-06 11:08:50 +03:00
|
|
|
let repository = gitbutler_testsupport::TestProject::default();
|
2024-03-29 12:04:26 +03:00
|
|
|
let path = repository.path();
|
|
|
|
controller.add(path).unwrap();
|
|
|
|
assert!(matches!(controller.add(path), Err(AddError::AlreadyExists)));
|
|
|
|
}
|
2024-04-17 16:28:14 +03:00
|
|
|
|
2024-04-21 18:33:50 +03:00
|
|
|
#[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));
|
|
|
|
}
|
|
|
|
|
2024-04-17 16:28:14 +03:00
|
|
|
#[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");
|
|
|
|
|
2024-04-18 16:43:58 +03:00
|
|
|
let repo = git2::Repository::init(main_worktree_dir).unwrap();
|
2024-04-17 16:28:14 +03:00
|
|
|
create_initial_commit(&repo);
|
|
|
|
|
|
|
|
let worktree = repo.worktree("feature", &worktree_dir, None).unwrap();
|
|
|
|
let err = controller.add(worktree.path()).unwrap_err();
|
2024-04-17 19:34:56 +03:00
|
|
|
assert_eq!(err.to_string(), "worktrees unsupported");
|
2024-04-17 16:28:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
2024-03-29 12:04:26 +03:00
|
|
|
}
|
|
|
|
}
|
2024-04-24 18:38:07 +03:00
|
|
|
|
|
|
|
mod delete {
|
|
|
|
use super::*;
|
|
|
|
#[tokio::test]
|
|
|
|
async fn success() {
|
|
|
|
let (controller, _tmp) = new();
|
|
|
|
let repository = gitbutler_testsupport::TestProject::default();
|
|
|
|
let path = repository.path();
|
|
|
|
let project = controller.add(path).unwrap();
|
|
|
|
assert!(controller.delete(&project.id).await.is_ok());
|
|
|
|
assert!(controller.delete(&project.id).await.is_ok()); // idempotent
|
|
|
|
assert!(controller.get(&project.id).is_err());
|
|
|
|
assert!(!project.gb_dir().exists());
|
|
|
|
assert!(!project.path.join(".gitbutler.json").exists());
|
|
|
|
}
|
|
|
|
}
|