mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-26 11:08:38 +03:00
bc2fff968c
This allows the tauri-specific parts to remain in the `app` crate, which will help to eventually release a `cli` crate as well.
178 lines
5.0 KiB
Rust
178 lines
5.0 KiB
Rust
use super::*;
|
|
|
|
#[tokio::test]
|
|
async fn unapply_with_data() {
|
|
let Test {
|
|
project_id,
|
|
controller,
|
|
repository,
|
|
..
|
|
} = &Test::default();
|
|
|
|
controller
|
|
.set_base_branch(project_id, &"refs/remotes/origin/master".parse().unwrap())
|
|
.await
|
|
.unwrap();
|
|
|
|
std::fs::write(repository.path().join("file.txt"), "content").unwrap();
|
|
|
|
let (branches, _, _) = controller.list_virtual_branches(project_id).await.unwrap();
|
|
assert_eq!(branches.len(), 1);
|
|
|
|
controller
|
|
.unapply_virtual_branch(project_id, &branches[0].id)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert!(!repository.path().join("file.txt").exists());
|
|
|
|
let (branches, _, _) = controller.list_virtual_branches(project_id).await.unwrap();
|
|
assert_eq!(branches.len(), 1);
|
|
assert!(!branches[0].active);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn conflicting() {
|
|
let Test {
|
|
project_id,
|
|
controller,
|
|
repository,
|
|
..
|
|
} = &Test::default();
|
|
|
|
// make sure we have an undiscovered commit in the remote branch
|
|
{
|
|
fs::write(repository.path().join("file.txt"), "first").unwrap();
|
|
let first_commit_oid = repository.commit_all("first");
|
|
fs::write(repository.path().join("file.txt"), "second").unwrap();
|
|
repository.commit_all("second");
|
|
repository.push();
|
|
repository.reset_hard(Some(first_commit_oid));
|
|
}
|
|
|
|
controller
|
|
.set_base_branch(project_id, &"refs/remotes/origin/master".parse().unwrap())
|
|
.await
|
|
.unwrap();
|
|
|
|
let branch_id = {
|
|
// make a conflicting branch, and stash it
|
|
|
|
std::fs::write(repository.path().join("file.txt"), "conflict").unwrap();
|
|
|
|
let (branches, _, _) = controller.list_virtual_branches(project_id).await.unwrap();
|
|
assert_eq!(branches.len(), 1);
|
|
assert!(branches[0].base_current);
|
|
assert!(branches[0].active);
|
|
assert_eq!(branches[0].files[0].hunks[0].diff, "@@ -1 +1 @@\n-first\n\\ No newline at end of file\n+conflict\n\\ No newline at end of file\n");
|
|
|
|
controller
|
|
.unapply_virtual_branch(project_id, &branches[0].id)
|
|
.await
|
|
.unwrap();
|
|
|
|
branches[0].id
|
|
};
|
|
|
|
{
|
|
// update base branch, causing conflict
|
|
controller.update_base_branch(project_id).await.unwrap();
|
|
|
|
assert_eq!(
|
|
std::fs::read_to_string(repository.path().join("file.txt")).unwrap(),
|
|
"second"
|
|
);
|
|
|
|
let branch = controller
|
|
.list_virtual_branches(project_id)
|
|
.await
|
|
.unwrap()
|
|
.0
|
|
.into_iter()
|
|
.find(|branch| branch.id == branch_id)
|
|
.unwrap();
|
|
assert!(!branch.base_current);
|
|
assert!(!branch.active);
|
|
}
|
|
|
|
{
|
|
// apply branch, it should conflict
|
|
controller
|
|
.apply_virtual_branch(project_id, &branch_id)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
std::fs::read_to_string(repository.path().join("file.txt")).unwrap(),
|
|
"<<<<<<< ours\nconflict\n=======\nsecond\n>>>>>>> theirs\n"
|
|
);
|
|
|
|
let branch = controller
|
|
.list_virtual_branches(project_id)
|
|
.await
|
|
.unwrap()
|
|
.0
|
|
.into_iter()
|
|
.find(|b| b.id == branch_id)
|
|
.unwrap();
|
|
assert!(branch.base_current);
|
|
assert!(branch.conflicted);
|
|
assert_eq!(branch.files[0].hunks[0].diff, "@@ -1 +1,5 @@\n-first\n\\ No newline at end of file\n+<<<<<<< ours\n+conflict\n+=======\n+second\n+>>>>>>> theirs\n");
|
|
}
|
|
|
|
{
|
|
controller
|
|
.unapply_virtual_branch(project_id, &branch_id)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
std::fs::read_to_string(repository.path().join("file.txt")).unwrap(),
|
|
"second"
|
|
);
|
|
|
|
let branch = controller
|
|
.list_virtual_branches(project_id)
|
|
.await
|
|
.unwrap()
|
|
.0
|
|
.into_iter()
|
|
.find(|b| b.id == branch_id)
|
|
.unwrap();
|
|
assert!(!branch.active);
|
|
assert!(!branch.base_current);
|
|
assert!(!branch.conflicted);
|
|
assert_eq!(branch.files[0].hunks[0].diff, "@@ -1 +1 @@\n-first\n\\ No newline at end of file\n+conflict\n\\ No newline at end of file\n");
|
|
}
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn delete_if_empty() {
|
|
let Test {
|
|
project_id,
|
|
controller,
|
|
..
|
|
} = &Test::default();
|
|
|
|
controller
|
|
.set_base_branch(project_id, &"refs/remotes/origin/master".parse().unwrap())
|
|
.await
|
|
.unwrap();
|
|
|
|
controller
|
|
.create_virtual_branch(project_id, &branch::BranchCreateRequest::default())
|
|
.await
|
|
.unwrap();
|
|
|
|
let (branches, _, _) = controller.list_virtual_branches(project_id).await.unwrap();
|
|
assert_eq!(branches.len(), 1);
|
|
|
|
controller
|
|
.unapply_virtual_branch(project_id, &branches[0].id)
|
|
.await
|
|
.unwrap();
|
|
|
|
let (branches, _, _) = controller.list_virtual_branches(project_id).await.unwrap();
|
|
assert_eq!(branches.len(), 0);
|
|
}
|