mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-20 08:01:46 +03:00
130 lines
3.6 KiB
Rust
130 lines
3.6 KiB
Rust
use gitbutler_branch::{Branch, BranchCreateRequest, BranchUpdateRequest};
|
|
use gitbutler_branch_actions::VirtualBranch;
|
|
use gitbutler_id::id::Id;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn should_lock_updated_hunks() {
|
|
let Test {
|
|
project,
|
|
repository,
|
|
..
|
|
} = &Test::default();
|
|
|
|
gitbutler_branch_actions::set_base_branch(
|
|
project,
|
|
&"refs/remotes/origin/master".parse().unwrap(),
|
|
)
|
|
.unwrap();
|
|
|
|
let branch_id =
|
|
gitbutler_branch_actions::create_virtual_branch(project, &BranchCreateRequest::default())
|
|
.unwrap();
|
|
|
|
{
|
|
// by default, hunks are not locked
|
|
repository.write_file("file.txt", &["content".to_string()]);
|
|
|
|
let branch = get_virtual_branch(project, branch_id);
|
|
assert_eq!(branch.files.len(), 1);
|
|
assert_eq!(branch.files[0].path.display().to_string(), "file.txt");
|
|
assert_eq!(branch.files[0].hunks.len(), 1);
|
|
assert!(!branch.files[0].hunks[0].locked);
|
|
}
|
|
|
|
gitbutler_branch_actions::create_commit(project, branch_id, "test", None, false).unwrap();
|
|
|
|
{
|
|
// change in the committed hunks leads to hunk locking
|
|
repository.write_file("file.txt", &["updated content".to_string()]);
|
|
|
|
let branch = gitbutler_branch_actions::list_virtual_branches(project)
|
|
.unwrap()
|
|
.0
|
|
.into_iter()
|
|
.find(|b| b.id == branch_id)
|
|
.unwrap();
|
|
assert_eq!(branch.files.len(), 1);
|
|
assert_eq!(branch.files[0].path.display().to_string(), "file.txt");
|
|
assert_eq!(branch.files[0].hunks.len(), 1);
|
|
assert!(branch.files[0].hunks[0].locked);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn should_reset_into_same_branch() {
|
|
let Test {
|
|
project,
|
|
repository,
|
|
..
|
|
} = &Test::default();
|
|
|
|
let mut lines = repository.gen_file("file.txt", 7);
|
|
commit_and_push_initial(repository);
|
|
|
|
let base_branch = gitbutler_branch_actions::set_base_branch(
|
|
project,
|
|
&"refs/remotes/origin/master".parse().unwrap(),
|
|
)
|
|
.unwrap();
|
|
|
|
gitbutler_branch_actions::create_virtual_branch(project, &BranchCreateRequest::default())
|
|
.unwrap();
|
|
|
|
let branch_2_id = gitbutler_branch_actions::create_virtual_branch(
|
|
project,
|
|
&BranchCreateRequest {
|
|
selected_for_changes: Some(true),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
lines[0] = "change 1".to_string();
|
|
repository.write_file("file.txt", &lines);
|
|
|
|
gitbutler_branch_actions::create_commit(
|
|
project,
|
|
branch_2_id,
|
|
"commit to branch 2",
|
|
None,
|
|
false,
|
|
)
|
|
.unwrap();
|
|
|
|
let files = get_virtual_branch(project, branch_2_id).files;
|
|
assert_eq!(files.len(), 0);
|
|
|
|
// Set target to branch 1 and verify the file resets into branch 2.
|
|
gitbutler_branch_actions::update_virtual_branch(
|
|
project,
|
|
BranchUpdateRequest {
|
|
id: branch_2_id,
|
|
selected_for_changes: Some(true),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
gitbutler_branch_actions::reset_virtual_branch(project, branch_2_id, base_branch.base_sha)
|
|
.unwrap();
|
|
|
|
let files = get_virtual_branch(project, branch_2_id).files;
|
|
assert_eq!(files.len(), 1);
|
|
}
|
|
|
|
fn commit_and_push_initial(repository: &TestProject) {
|
|
repository.commit_all("initial commit");
|
|
repository.push();
|
|
}
|
|
|
|
fn get_virtual_branch(project: &Project, branch_id: Id<Branch>) -> VirtualBranch {
|
|
gitbutler_branch_actions::list_virtual_branches(project)
|
|
.unwrap()
|
|
.0
|
|
.into_iter()
|
|
.find(|b| b.id == branch_id)
|
|
.unwrap()
|
|
}
|