-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Create new branch from branch selection dropdown #2130
Merged
lafriks
merged 4 commits into
go-gitea:master
from
lafriks-fork:feature/create_new_branch
Oct 15, 2017
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
// Copyright 2017 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package integrations | ||
|
||
import ( | ||
"net/http" | ||
"path" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/Unknwon/i18n" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func testCreateBranch(t *testing.T, session *TestSession, user, repo, oldRefName, newBranchName string, expectedStatus int) string { | ||
var csrf string | ||
if expectedStatus == http.StatusNotFound { | ||
csrf = GetCSRF(t, session, path.Join(user, repo, "src/master")) | ||
} else { | ||
csrf = GetCSRF(t, session, path.Join(user, repo, "src", oldRefName)) | ||
} | ||
req := NewRequestWithValues(t, "POST", path.Join(user, repo, "branches/_new", oldRefName), map[string]string{ | ||
"_csrf": csrf, | ||
"new_branch_name": newBranchName, | ||
}) | ||
resp := session.MakeRequest(t, req, expectedStatus) | ||
if expectedStatus != http.StatusFound { | ||
return "" | ||
} | ||
return RedirectURL(t, resp) | ||
} | ||
|
||
func TestCreateBranch(t *testing.T) { | ||
tests := []struct { | ||
OldBranchOrCommit string | ||
NewBranch string | ||
CreateRelease string | ||
FlashMessage string | ||
ExpectedStatus int | ||
}{ | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "feature/test1", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.create_success", "feature/test1"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "form.NewBranchName") + i18n.Tr("en", "form.require_error"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "feature=test1", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "form.NewBranchName") + i18n.Tr("en", "form.git_ref_name_error"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: strings.Repeat("b", 101), | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "form.NewBranchName") + i18n.Tr("en", "form.max_size_error", "100"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "master", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.branch_already_exists", "master"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "master/test", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.branch_name_conflict", "master/test", "master"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "acd1d892867872cb47f3993468605b8aa59aa2e0", | ||
NewBranch: "feature/test2", | ||
ExpectedStatus: http.StatusNotFound, | ||
}, | ||
{ | ||
OldBranchOrCommit: "65f1bf27bc3bf70f64657658635e66094edbcb4d", | ||
NewBranch: "feature/test3", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.create_success", "feature/test3"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "master", | ||
NewBranch: "v1.0.0", | ||
CreateRelease: "v1.0.0", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.tag_collision", "v1.0.0"), | ||
}, | ||
{ | ||
OldBranchOrCommit: "v1.0.0", | ||
NewBranch: "feature/test4", | ||
CreateRelease: "v1.0.0", | ||
ExpectedStatus: http.StatusFound, | ||
FlashMessage: i18n.Tr("en", "repo.branch.create_success", "feature/test4"), | ||
}, | ||
} | ||
for _, test := range tests { | ||
prepareTestEnv(t) | ||
session := loginUser(t, "user2") | ||
if test.CreateRelease != "" { | ||
createNewRelease(t, session, "/user2/repo1", test.CreateRelease, test.CreateRelease, false, false) | ||
} | ||
redirectURL := testCreateBranch(t, session, "user2", "repo1", test.OldBranchOrCommit, test.NewBranch, test.ExpectedStatus) | ||
if test.ExpectedStatus == http.StatusFound { | ||
req := NewRequest(t, "GET", redirectURL) | ||
resp := session.MakeRequest(t, req, http.StatusOK) | ||
htmlDoc := NewHTMLParser(t, resp.Body) | ||
assert.Equal(t, | ||
test.FlashMessage, | ||
strings.TrimSpace(htmlDoc.doc.Find(".ui.message").Text()), | ||
) | ||
} | ||
} | ||
} | ||
|
||
func TestCreateBranchInvalidCSRF(t *testing.T) { | ||
prepareTestEnv(t) | ||
session := loginUser(t, "user2") | ||
req := NewRequestWithValues(t, "POST", "user2/repo1/branches/_new/master", map[string]string{ | ||
"_csrf": "fake_csrf", | ||
"new_branch_name": "test", | ||
}) | ||
session.MakeRequest(t, req, http.StatusBadRequest) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright 2017 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package auth | ||
|
||
import ( | ||
"github.com/go-macaron/binding" | ||
macaron "gopkg.in/macaron.v1" | ||
) | ||
|
||
// NewBranchForm form for creating a new branch | ||
type NewBranchForm struct { | ||
NewBranchName string `binding:"Required;MaxSize(100);GitRefName"` | ||
} | ||
|
||
// Validate validates the fields | ||
func (f *NewBranchForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||
return validate(errs, ctx.Data, f, ctx.Locale) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of doing this, how about something like this that scales to thousands of branches?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not the same (if
name
isfeat
and there already exists branchfeat/test
) this code won't return errorThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One option is to just try the
git branch ...
command, and see if it succeeds or not. I assume that internally git has an efficient way to check for naming conflicts.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that
gitRepo.CreateBranch
will throw a collision error no?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But then
CheckBranchName
will only provide part of validation (as I understand that that was an initial request to create it at first place to reuse it in other places later). Also currently GetBranches is called on every repo page load (in ctxRepoAssignment
) so it's usage here anyway won't be that big deal