mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-02 07:53:55 +03:00
Merge pull request #1999 from gitbutlerapp/test-forcepush-allowed
Test forcepush allowed
This commit is contained in:
commit
8027727ab6
@ -3379,6 +3379,72 @@ mod amend {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn forcepush_allowed() {
|
||||||
|
let Test {
|
||||||
|
repository,
|
||||||
|
project_id,
|
||||||
|
controller,
|
||||||
|
projects,
|
||||||
|
..
|
||||||
|
} = Test::default();
|
||||||
|
|
||||||
|
controller
|
||||||
|
.set_base_branch(&project_id, &"refs/remotes/origin/master".parse().unwrap())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
projects
|
||||||
|
.update(&projects::UpdateRequest {
|
||||||
|
id: project_id,
|
||||||
|
ok_with_force_push: Some(true),
|
||||||
|
..Default::default()
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let branch_id = controller
|
||||||
|
.create_virtual_branch(&project_id, &branch::BranchCreateRequest::default())
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
{
|
||||||
|
// create commit
|
||||||
|
fs::write(repository.path().join("file.txt"), "content").unwrap();
|
||||||
|
controller
|
||||||
|
.create_commit(&project_id, &branch_id, "commit one", None)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
};
|
||||||
|
|
||||||
|
controller
|
||||||
|
.push_virtual_branch(&project_id, &branch_id, false)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
{
|
||||||
|
// amend another hunk
|
||||||
|
fs::write(repository.path().join("file2.txt"), "content2").unwrap();
|
||||||
|
let to_amend: branch::Ownership = "file2.txt:1-2".parse().unwrap();
|
||||||
|
controller
|
||||||
|
.amend(&project_id, &branch_id, &to_amend)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let branch = controller
|
||||||
|
.list_virtual_branches(&project_id)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.into_iter()
|
||||||
|
.find(|b| b.id == branch_id)
|
||||||
|
.unwrap();
|
||||||
|
assert!(branch.requires_force);
|
||||||
|
assert_eq!(branch.commits.len(), 1);
|
||||||
|
assert_eq!(branch.files.len(), 0);
|
||||||
|
assert_eq!(branch.commits[0].files.len(), 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn forcepush_forbidden() {
|
async fn forcepush_forbidden() {
|
||||||
let Test {
|
let Test {
|
||||||
|
Loading…
Reference in New Issue
Block a user