Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rename branch 500 when the target branch is deleted but exist in database (#30430) #30437

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 25 additions & 6 deletions models/git/branch.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ func RenameBranch(ctx context.Context, repo *repo_model.Repository, from, to str

sess := db.GetEngine(ctx)

// check whether from branch exist
var branch Branch
exist, err := db.GetEngine(ctx).Where("repo_id=? AND name=?", repo.ID, from).Get(&branch)
if err != nil {
Expand All @@ -303,6 +304,24 @@ func RenameBranch(ctx context.Context, repo *repo_model.Repository, from, to str
}
}

// check whether to branch exist or is_deleted
var dstBranch Branch
exist, err = db.GetEngine(ctx).Where("repo_id=? AND name=?", repo.ID, to).Get(&dstBranch)
if err != nil {
return err
}
if exist {
if !dstBranch.IsDeleted {
return ErrBranchAlreadyExists{
BranchName: to,
}
}

if _, err := db.GetEngine(ctx).ID(dstBranch.ID).NoAutoCondition().Delete(&dstBranch); err != nil {
return err
}
}

// 1. update branch in database
if n, err := sess.Where("repo_id=? AND name=?", repo.ID, from).Update(&Branch{
Name: to,
Expand Down Expand Up @@ -357,12 +376,7 @@ func RenameBranch(ctx context.Context, repo *repo_model.Repository, from, to str
return err
}

// 5. do git action
if err = gitAction(ctx, isDefault); err != nil {
return err
}

// 6. insert renamed branch record
// 5. insert renamed branch record
renamedBranch := &RenamedBranch{
RepoID: repo.ID,
From: from,
Expand All @@ -373,6 +387,11 @@ func RenameBranch(ctx context.Context, repo *repo_model.Repository, from, to str
return err
}

// 6. do git action
if err = gitAction(ctx, isDefault); err != nil {
return err
}

return committer.Commit()
}

Expand Down
8 changes: 7 additions & 1 deletion routers/web/repo/setting/protected_branch.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,13 @@ func RenameBranchPost(ctx *context.Context) {

msg, err := repository.RenameBranch(ctx, ctx.Repo.Repository, ctx.Doer, ctx.Repo.GitRepo, form.From, form.To)
if err != nil {
ctx.ServerError("RenameBranch", err)
switch {
case git_model.IsErrBranchAlreadyExists(err):
ctx.Flash.Error(ctx.Tr("repo.branch.branch_already_exists", form.To))
ctx.Redirect(fmt.Sprintf("%s/branches", ctx.Repo.RepoLink))
default:
ctx.ServerError("RenameBranch", err)
}
return
}

Expand Down
80 changes: 75 additions & 5 deletions tests/integration/rename_branch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,23 @@

import (
"net/http"
"net/url"
"testing"

git_model "code.gitea.io/gitea/models/git"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
gitea_context "code.gitea.io/gitea/services/context"
"code.gitea.io/gitea/tests"

"github.com/stretchr/testify/assert"
)

func TestRenameBranch(t *testing.T) {
onGiteaRun(t, testRenameBranch)
}

func testRenameBranch(t *testing.T, u *url.URL) {
defer tests.PrepareTestEnv(t)()

unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: 1, Name: "master"})
Expand All @@ -26,25 +32,89 @@
resp := session.MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body)

postData := map[string]string{
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", map[string]string{
"_csrf": htmlDoc.GetCSRF(),
"from": "master",
"to": "main",
}
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", postData)
})
session.MakeRequest(t, req, http.StatusSeeOther)

// check new branch link
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/main/README.md", postData)
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/main/README.md", nil)
session.MakeRequest(t, req, http.StatusOK)

// check old branch link
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/master/README.md", postData)
req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/master/README.md", nil)
resp = session.MakeRequest(t, req, http.StatusSeeOther)
location := resp.Header().Get("Location")
assert.Equal(t, "/user2/repo1/src/branch/main/README.md", location)

// check db
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
assert.Equal(t, "main", repo1.DefaultBranch)

// create branch1
csrf := GetCSRF(t, session, "/user2/repo1/src/branch/main")

req = NewRequestWithValues(t, "POST", "/user2/repo1/branches/_new/branch/main", map[string]string{
"_csrf": csrf,
"new_branch_name": "branch1",
})
session.MakeRequest(t, req, http.StatusSeeOther)

branch1 := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch1"})
assert.Equal(t, "branch1", branch1.Name)

// create branch2
req = NewRequestWithValues(t, "POST", "/user2/repo1/branches/_new/branch/main", map[string]string{
"_csrf": csrf,
"new_branch_name": "branch2",
})
session.MakeRequest(t, req, http.StatusSeeOther)

branch2 := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch2"})
assert.Equal(t, "branch2", branch2.Name)

// rename branch2 to branch1
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", map[string]string{
"_csrf": htmlDoc.GetCSRF(),
"from": "branch2",
"to": "branch1",
})
session.MakeRequest(t, req, http.StatusSeeOther)
flashCookie := session.GetCookie(gitea_context.CookieNameFlash)

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mysql5

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mysql8

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

undefined: gitea_context.CookieNameFlash

Check failure on line 85 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

undefined: gitea_context.CookieNameFlash
assert.NotNil(t, flashCookie)
assert.Contains(t, flashCookie.Value, "error")

branch2 = unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch2"})
assert.Equal(t, "branch2", branch2.Name)
branch1 = unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch1"})
assert.Equal(t, "branch1", branch1.Name)

// delete branch1
req = NewRequestWithValues(t, "POST", "/user2/repo1/branches/delete", map[string]string{
"_csrf": htmlDoc.GetCSRF(),
"name": "branch1",
})
session.MakeRequest(t, req, http.StatusOK)
branch2 = unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch2"})
assert.Equal(t, "branch2", branch2.Name)
branch1 = unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch1"})
assert.True(t, branch1.IsDeleted) // virtual deletion

// rename branch2 to branch1 again
req = NewRequestWithValues(t, "POST", "/user2/repo1/settings/rename_branch", map[string]string{
"_csrf": htmlDoc.GetCSRF(),
"from": "branch2",
"to": "branch1",
})
session.MakeRequest(t, req, http.StatusSeeOther)

flashCookie = session.GetCookie(gitea_context.CookieNameFlash)

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mysql5

undefined: gitea_context.CookieNameFlash

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

undefined: gitea_context.CookieNameFlash

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

undefined: gitea_context.CookieNameFlash (typecheck)

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

undefined: gitea_context.CookieNameFlash

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

undefined: gitea_context.CookieNameFlash (typecheck)

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-mysql8

undefined: gitea_context.CookieNameFlash

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

undefined: gitea_context.CookieNameFlash (typecheck)

Check failure on line 113 in tests/integration/rename_branch_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

undefined: gitea_context.CookieNameFlash
assert.NotNil(t, flashCookie)
assert.Contains(t, flashCookie.Value, "success")

unittest.AssertNotExistsBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch2"})
branch1 = unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo1.ID, Name: "branch1"})
assert.Equal(t, "branch1", branch1.Name)
}
Loading