mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
[BUG] Detect protected branch on branch rename
- If a branch cannot be renamed due to a protected branch rule, show this error in the UI instead of throwing an internal server error. - Add integration test (also simplify the existing one). - Resolves #2751
This commit is contained in:
parent
fa6b3edf99
commit
611610c3c4
3 changed files with 61 additions and 23 deletions
|
@ -2424,6 +2424,7 @@ settings.lfs_pointers.inRepo=In Repo
|
||||||
settings.lfs_pointers.exists=Exists in store
|
settings.lfs_pointers.exists=Exists in store
|
||||||
settings.lfs_pointers.accessible=Accessible to User
|
settings.lfs_pointers.accessible=Accessible to User
|
||||||
settings.lfs_pointers.associateAccessible=Associate accessible %d OIDs
|
settings.lfs_pointers.associateAccessible=Associate accessible %d OIDs
|
||||||
|
settings.rename_branch_failed_protected=Cannot rename branch %s because it is a protected branch.
|
||||||
settings.rename_branch_failed_exist=Cannot rename branch because target branch %s exists.
|
settings.rename_branch_failed_exist=Cannot rename branch because target branch %s exists.
|
||||||
settings.rename_branch_failed_not_exist=Cannot rename branch %s because it does not exist.
|
settings.rename_branch_failed_not_exist=Cannot rename branch %s because it does not exist.
|
||||||
settings.rename_branch_success =Branch %s was successfully renamed to %s.
|
settings.rename_branch_success =Branch %s was successfully renamed to %s.
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
package setting
|
package setting
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
@ -312,7 +313,12 @@ func RenameBranchPost(ctx *context.Context) {
|
||||||
|
|
||||||
msg, err := repository.RenameBranch(ctx, ctx.Repo.Repository, ctx.Doer, ctx.Repo.GitRepo, form.From, form.To)
|
msg, err := repository.RenameBranch(ctx, ctx.Repo.Repository, ctx.Doer, ctx.Repo.GitRepo, form.From, form.To)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if errors.Is(err, git_model.ErrBranchIsProtected) {
|
||||||
|
ctx.Flash.Error(ctx.Tr("repo.settings.rename_branch_failed_protected", form.To))
|
||||||
|
ctx.Redirect(fmt.Sprintf("%s/branches", ctx.Repo.RepoLink))
|
||||||
|
} else {
|
||||||
ctx.ServerError("RenameBranch", err)
|
ctx.ServerError("RenameBranch", err)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import (
|
||||||
git_model "code.gitea.io/gitea/models/git"
|
git_model "code.gitea.io/gitea/models/git"
|
||||||
repo_model "code.gitea.io/gitea/models/repo"
|
repo_model "code.gitea.io/gitea/models/repo"
|
||||||
"code.gitea.io/gitea/models/unittest"
|
"code.gitea.io/gitea/models/unittest"
|
||||||
|
gitea_context "code.gitea.io/gitea/modules/context"
|
||||||
"code.gitea.io/gitea/tests"
|
"code.gitea.io/gitea/tests"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
@ -18,33 +19,63 @@ import (
|
||||||
func TestRenameBranch(t *testing.T) {
|
func TestRenameBranch(t *testing.T) {
|
||||||
defer tests.PrepareTestEnv(t)()
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
|
||||||
unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: 1, Name: "master"})
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
||||||
|
unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo.ID, Name: "master"})
|
||||||
|
|
||||||
// get branch setting page
|
// get branch setting page
|
||||||
session := loginUser(t, "user2")
|
session := loginUser(t, "user2")
|
||||||
req := NewRequest(t, "GET", "/user2/repo1/settings/branches")
|
t.Run("Normal", func(t *testing.T) {
|
||||||
resp := session.MakeRequest(t, req, http.StatusOK)
|
defer tests.PrintCurrentTest(t)()
|
||||||
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
||||||
|
|
||||||
postData := map[string]string{
|
req := NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", map[string]string{
|
||||||
"_csrf": htmlDoc.GetCSRF(),
|
"_csrf": GetCSRF(t, session, "/user2/repo1/settings/branches"),
|
||||||
"from": "master",
|
"from": "master",
|
||||||
"to": "main",
|
"to": "main",
|
||||||
}
|
})
|
||||||
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", postData)
|
|
||||||
session.MakeRequest(t, req, http.StatusSeeOther)
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
||||||
|
|
||||||
// check new branch link
|
// check new branch link
|
||||||
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/main/README.md", postData)
|
req = NewRequest(t, "GET", "/user2/repo1/src/branch/main/README.md")
|
||||||
session.MakeRequest(t, req, http.StatusOK)
|
session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
|
||||||
// check old branch link
|
// check old branch link
|
||||||
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/master/README.md", postData)
|
req = NewRequest(t, "GET", "/user2/repo1/src/branch/master/README.md")
|
||||||
resp = session.MakeRequest(t, req, http.StatusSeeOther)
|
resp := session.MakeRequest(t, req, http.StatusSeeOther)
|
||||||
location := resp.Header().Get("Location")
|
location := resp.Header().Get("Location")
|
||||||
assert.Equal(t, "/user2/repo1/src/branch/main/README.md", location)
|
assert.Equal(t, "/user2/repo1/src/branch/main/README.md", location)
|
||||||
|
|
||||||
// check db
|
// check db
|
||||||
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
||||||
assert.Equal(t, "main", repo1.DefaultBranch)
|
assert.Equal(t, "main", repo1.DefaultBranch)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("Protected branch", func(t *testing.T) {
|
||||||
|
defer tests.PrintCurrentTest(t)()
|
||||||
|
|
||||||
|
// Add protected branch
|
||||||
|
req := NewRequestWithValues(t, "POST", "/user2/repo1/settings/branches/edit", map[string]string{
|
||||||
|
"_csrf": GetCSRF(t, session, "/user2/repo1/settings/branches/edit"),
|
||||||
|
"rule_name": "*",
|
||||||
|
"enable_push": "true",
|
||||||
|
})
|
||||||
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
||||||
|
|
||||||
|
// Verify it was added.
|
||||||
|
unittest.AssertExistsIf(t, true, &git_model.ProtectedBranch{RuleName: "*", RepoID: repo.ID})
|
||||||
|
|
||||||
|
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", map[string]string{
|
||||||
|
"_csrf": GetCSRF(t, session, "/user2/repo1/settings/branches"),
|
||||||
|
"from": "main",
|
||||||
|
"to": "main2",
|
||||||
|
})
|
||||||
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
||||||
|
|
||||||
|
flashCookie := session.GetCookie(gitea_context.CookieNameFlash)
|
||||||
|
assert.NotNil(t, flashCookie)
|
||||||
|
assert.EqualValues(t, "error%3DCannot%2Brename%2Bbranch%2Bmain2%2Bbecause%2Bit%2Bis%2Ba%2Bprotected%2Bbranch.", flashCookie.Value)
|
||||||
|
|
||||||
|
// Verify it didn't change.
|
||||||
|
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
||||||
|
assert.Equal(t, "main", repo1.DefaultBranch)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue