mirror of
https://github.com/go-gitea/gitea
synced 2024-11-21 21:23:36 +01:00
Make the name
PATCH field required
This commit is contained in:
parent
e4f7307511
commit
4445c70698
4 changed files with 19 additions and 44 deletions
|
@ -283,8 +283,9 @@ type CreateBranchRepoOption struct {
|
||||||
type UpdateBranchRepoOption struct {
|
type UpdateBranchRepoOption struct {
|
||||||
// New branch name
|
// New branch name
|
||||||
//
|
//
|
||||||
|
// required: true
|
||||||
// unique: true
|
// unique: true
|
||||||
Name string `json:"name" binding:"GitRefName;MaxSize(100)"`
|
Name string `json:"name" binding:"Required;GitRefName;MaxSize(100)"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// TransferRepoOption options when transfer a repository's ownership
|
// TransferRepoOption options when transfer a repository's ownership
|
||||||
|
|
|
@ -450,9 +450,7 @@ func UpdateBranch(ctx *context.APIContext) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
branchName := opt.Name
|
msg, err := repo_service.RenameBranch(ctx, repo, ctx.Doer, ctx.Repo.GitRepo, oldName, opt.Name)
|
||||||
if branchName != "" {
|
|
||||||
msg, err := repo_service.RenameBranch(ctx, repo, ctx.Doer, ctx.Repo.GitRepo, oldName, branchName)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "RenameBranch", err)
|
ctx.Error(http.StatusInternalServerError, "RenameBranch", err)
|
||||||
return
|
return
|
||||||
|
@ -465,18 +463,9 @@ func UpdateBranch(ctx *context.APIContext) {
|
||||||
ctx.Error(http.StatusNotFound, "", "Branch doesn't exist.")
|
ctx.Error(http.StatusNotFound, "", "Branch doesn't exist.")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
branchName = oldName
|
|
||||||
}
|
|
||||||
|
|
||||||
branch, err := ctx.Repo.GitRepo.GetBranch(branchName)
|
branch, err := ctx.Repo.GitRepo.GetBranch(opt.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if git.IsErrBranchNotExist(err) {
|
|
||||||
// This could occur if the client passes a non-existent branch and we
|
|
||||||
// skip executing the branch that contains the RenameBranch() call.
|
|
||||||
ctx.Error(http.StatusNotFound, "", "Branch doesn't exist.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
ctx.Error(http.StatusInternalServerError, "GetBranch", err)
|
ctx.Error(http.StatusInternalServerError, "GetBranch", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -495,7 +484,7 @@ func UpdateBranch(ctx *context.APIContext) {
|
||||||
|
|
||||||
br, err := convert.ToBranch(ctx, repo, branch.Name, commit, pb, ctx.Doer, ctx.Repo.IsAdmin())
|
br, err := convert.ToBranch(ctx, repo, branch.Name, commit, pb, ctx.Doer, ctx.Repo.IsAdmin())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "convert.ToBranch", err)
|
ctx.Error(http.StatusInternalServerError, "ToBranch", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
3
templates/swagger/v1_json.tmpl
generated
3
templates/swagger/v1_json.tmpl
generated
|
@ -24946,6 +24946,9 @@
|
||||||
"UpdateBranchRepoOption": {
|
"UpdateBranchRepoOption": {
|
||||||
"description": "UpdateBranchRepoOption options when updating a branch in a repository",
|
"description": "UpdateBranchRepoOption options when updating a branch in a repository",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"name"
|
||||||
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": {
|
"name": {
|
||||||
"description": "New branch name",
|
"description": "New branch name",
|
||||||
|
|
|
@ -7,7 +7,6 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"net/url"
|
"net/url"
|
||||||
"slices"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
auth_model "code.gitea.io/gitea/models/auth"
|
auth_model "code.gitea.io/gitea/models/auth"
|
||||||
|
@ -204,23 +203,6 @@ func TestAPIUpdateBranch(t *testing.T) {
|
||||||
resp := testAPIUpdateBranch(t, "user2", "repo1", "i-dont-exist", "new-branch-name", http.StatusNotFound)
|
resp := testAPIUpdateBranch(t, "user2", "repo1", "i-dont-exist", "new-branch-name", http.StatusNotFound)
|
||||||
assert.Contains(t, resp.Body.String(), "Branch doesn't exist.")
|
assert.Contains(t, resp.Body.String(), "Branch doesn't exist.")
|
||||||
})
|
})
|
||||||
t.Run("UpdateBranchWithEmptyStringAsNewName", func(t *testing.T) {
|
|
||||||
resp := testAPIUpdateBranch(t, "user13", "repo11", "master", "", http.StatusOK)
|
|
||||||
var branch api.Branch
|
|
||||||
DecodeJSON(t, resp, &branch)
|
|
||||||
assert.EqualValues(t, "master", branch.Name)
|
|
||||||
|
|
||||||
// Make sure the branch name did not change in the db.
|
|
||||||
branches, err := db.Find[git_model.Branch](db.DefaultContext, git_model.FindBranchOptions{
|
|
||||||
RepoID: 11,
|
|
||||||
})
|
|
||||||
assert.NoError(t, err)
|
|
||||||
branchWasUnchanged := slices.ContainsFunc(branches, func(b *git_model.Branch) bool { return b.Name == "master" })
|
|
||||||
assert.True(t, branchWasUnchanged, "master branch shouldn't have been renamed")
|
|
||||||
})
|
|
||||||
t.Run("UpdateBranchWithNonExistentBranchAndNewNameIsTheEmptyString", func(t *testing.T) {
|
|
||||||
testAPIUpdateBranch(t, "user2", "repo1", "i-dont-exist", "", http.StatusNotFound)
|
|
||||||
})
|
|
||||||
t.Run("RenameBranchNormalScenario", func(t *testing.T) {
|
t.Run("RenameBranchNormalScenario", func(t *testing.T) {
|
||||||
resp := testAPIUpdateBranch(t, "user2", "repo1", "branch2", "new-branch-name", http.StatusOK)
|
resp := testAPIUpdateBranch(t, "user2", "repo1", "branch2", "new-branch-name", http.StatusOK)
|
||||||
var branch api.Branch
|
var branch api.Branch
|
||||||
|
|
Loading…
Reference in a new issue