2019-07-30 03:59:10 +02:00
|
|
|
// Copyright 2019 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 repofiles
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
2020-01-10 10:34:21 +01:00
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2019-07-30 03:59:10 +02:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2019-12-26 12:29:45 +01:00
|
|
|
func testCorrectRepoAction(t *testing.T, opts *CommitRepoActionOptions, actionBean *models.Action) {
|
2019-07-30 03:59:10 +02:00
|
|
|
models.AssertNotExistsBean(t, actionBean)
|
|
|
|
assert.NoError(t, CommitRepoAction(opts))
|
|
|
|
models.AssertExistsAndLoadBean(t, actionBean)
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCommitRepoAction(t *testing.T) {
|
|
|
|
samples := []struct {
|
|
|
|
userID int64
|
|
|
|
repositoryID int64
|
|
|
|
commitRepoActionOptions CommitRepoActionOptions
|
|
|
|
action models.Action
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
userID: 2,
|
2019-08-21 07:16:22 +02:00
|
|
|
repositoryID: 16,
|
2019-07-30 03:59:10 +02:00
|
|
|
commitRepoActionOptions: CommitRepoActionOptions{
|
2020-02-02 21:27:34 +01:00
|
|
|
PushUpdateOptions: PushUpdateOptions{
|
|
|
|
RefFullName: "refName",
|
|
|
|
OldCommitID: "oldCommitID",
|
|
|
|
NewCommitID: "newCommitID",
|
|
|
|
},
|
2020-01-10 10:34:21 +01:00
|
|
|
Commits: &repository.PushCommits{
|
|
|
|
Commits: []*repository.PushCommit{
|
2019-07-30 03:59:10 +02:00
|
|
|
{
|
2019-08-21 07:16:22 +02:00
|
|
|
Sha1: "69554a6",
|
2019-07-30 03:59:10 +02:00
|
|
|
CommitterEmail: "user2@example.com",
|
2019-08-21 07:16:22 +02:00
|
|
|
CommitterName: "User2",
|
|
|
|
AuthorEmail: "user2@example.com",
|
|
|
|
AuthorName: "User2",
|
|
|
|
Message: "not signed commit",
|
2019-07-30 03:59:10 +02:00
|
|
|
},
|
|
|
|
{
|
2019-08-21 07:16:22 +02:00
|
|
|
Sha1: "27566bd",
|
2019-07-30 03:59:10 +02:00
|
|
|
CommitterEmail: "user2@example.com",
|
2019-08-21 07:16:22 +02:00
|
|
|
CommitterName: "User2",
|
2019-07-30 03:59:10 +02:00
|
|
|
AuthorEmail: "user2@example.com",
|
2019-08-21 07:16:22 +02:00
|
|
|
AuthorName: "User2",
|
|
|
|
Message: "good signed commit (with not yet validated email)",
|
2019-07-30 03:59:10 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Len: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
action: models.Action{
|
|
|
|
OpType: models.ActionCommitRepo,
|
|
|
|
RefName: "refName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userID: 2,
|
|
|
|
repositoryID: 1,
|
|
|
|
commitRepoActionOptions: CommitRepoActionOptions{
|
2020-02-02 21:27:34 +01:00
|
|
|
PushUpdateOptions: PushUpdateOptions{
|
|
|
|
RefFullName: git.TagPrefix + "v1.1",
|
|
|
|
OldCommitID: git.EmptySHA,
|
|
|
|
NewCommitID: "newCommitID",
|
|
|
|
},
|
|
|
|
Commits: &repository.PushCommits{},
|
2019-07-30 03:59:10 +02:00
|
|
|
},
|
|
|
|
action: models.Action{
|
|
|
|
OpType: models.ActionPushTag,
|
|
|
|
RefName: "v1.1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userID: 2,
|
|
|
|
repositoryID: 1,
|
|
|
|
commitRepoActionOptions: CommitRepoActionOptions{
|
2020-02-02 21:27:34 +01:00
|
|
|
PushUpdateOptions: PushUpdateOptions{
|
|
|
|
RefFullName: git.TagPrefix + "v1.1",
|
|
|
|
OldCommitID: "oldCommitID",
|
|
|
|
NewCommitID: git.EmptySHA,
|
|
|
|
},
|
|
|
|
Commits: &repository.PushCommits{},
|
2019-07-30 03:59:10 +02:00
|
|
|
},
|
|
|
|
action: models.Action{
|
|
|
|
OpType: models.ActionDeleteTag,
|
|
|
|
RefName: "v1.1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userID: 2,
|
|
|
|
repositoryID: 1,
|
|
|
|
commitRepoActionOptions: CommitRepoActionOptions{
|
2020-02-02 21:27:34 +01:00
|
|
|
PushUpdateOptions: PushUpdateOptions{
|
|
|
|
RefFullName: git.BranchPrefix + "feature/1",
|
|
|
|
OldCommitID: "oldCommitID",
|
|
|
|
NewCommitID: git.EmptySHA,
|
|
|
|
},
|
|
|
|
Commits: &repository.PushCommits{},
|
2019-07-30 03:59:10 +02:00
|
|
|
},
|
|
|
|
action: models.Action{
|
|
|
|
OpType: models.ActionDeleteBranch,
|
|
|
|
RefName: "feature/1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range samples {
|
|
|
|
models.PrepareTestEnv(t)
|
|
|
|
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: s.userID}).(*models.User)
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: s.repositoryID, OwnerID: user.ID}).(*models.Repository)
|
|
|
|
repo.Owner = user
|
|
|
|
|
|
|
|
s.commitRepoActionOptions.PusherName = user.Name
|
|
|
|
s.commitRepoActionOptions.RepoOwnerID = user.ID
|
|
|
|
s.commitRepoActionOptions.RepoName = repo.Name
|
|
|
|
|
|
|
|
s.action.ActUserID = user.ID
|
|
|
|
s.action.RepoID = repo.ID
|
|
|
|
s.action.Repo = repo
|
|
|
|
s.action.IsPrivate = repo.IsPrivate
|
|
|
|
|
2019-12-26 12:29:45 +01:00
|
|
|
testCorrectRepoAction(t, &s.commitRepoActionOptions, &s.action)
|
2019-07-30 03:59:10 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-07 16:52:36 +01:00
|
|
|
|
|
|
|
func TestUpdateIssuesCommit(t *testing.T) {
|
|
|
|
assert.NoError(t, models.PrepareTestDatabase())
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits := []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef1",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user4@example.com",
|
|
|
|
AuthorName: "User Four",
|
|
|
|
Message: "start working on #FST-1, #1",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Sha1: "abcdef2",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user2@example.com",
|
|
|
|
AuthorName: "User Two",
|
|
|
|
Message: "a plain message",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Sha1: "abcdef2",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user2@example.com",
|
|
|
|
AuthorName: "User Two",
|
|
|
|
Message: "close #2",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository)
|
|
|
|
repo.Owner = user
|
|
|
|
|
|
|
|
commentBean := &models.Comment{
|
|
|
|
Type: models.CommentTypeCommitRef,
|
|
|
|
CommitSHA: "abcdef1",
|
|
|
|
PosterID: user.ID,
|
|
|
|
IssueID: 1,
|
|
|
|
}
|
|
|
|
issueBean := &models.Issue{RepoID: repo.ID, Index: 4}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, &models.Issue{RepoID: repo.ID, Index: 2}, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, repo.DefaultBranch))
|
|
|
|
models.AssertExistsAndLoadBean(t, commentBean)
|
|
|
|
models.AssertExistsAndLoadBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
|
|
|
|
// Test that push to a non-default branch closes no issue.
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits = []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef1",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user4@example.com",
|
|
|
|
AuthorName: "User Four",
|
|
|
|
Message: "close #1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
repo = models.AssertExistsAndLoadBean(t, &models.Repository{ID: 3}).(*models.Repository)
|
|
|
|
commentBean = &models.Comment{
|
|
|
|
Type: models.CommentTypeCommitRef,
|
|
|
|
CommitSHA: "abcdef1",
|
|
|
|
PosterID: user.ID,
|
|
|
|
IssueID: 6,
|
|
|
|
}
|
|
|
|
issueBean = &models.Issue{RepoID: repo.ID, Index: 1}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, &models.Issue{RepoID: repo.ID, Index: 1}, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, "non-existing-branch"))
|
|
|
|
models.AssertExistsAndLoadBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssuesCommit_Colon(t *testing.T) {
|
|
|
|
assert.NoError(t, models.PrepareTestDatabase())
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits := []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef2",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user2@example.com",
|
|
|
|
AuthorName: "User Two",
|
|
|
|
Message: "close: #2",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository)
|
|
|
|
repo.Owner = user
|
|
|
|
|
|
|
|
issueBean := &models.Issue{RepoID: repo.ID, Index: 4}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, &models.Issue{RepoID: repo.ID, Index: 2}, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, repo.DefaultBranch))
|
|
|
|
models.AssertExistsAndLoadBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssuesCommit_Issue5957(t *testing.T) {
|
|
|
|
assert.NoError(t, models.PrepareTestDatabase())
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
|
|
|
|
|
|
|
|
// Test that push to a non-default branch closes an issue.
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits := []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef1",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user4@example.com",
|
|
|
|
AuthorName: "User Four",
|
|
|
|
Message: "close #2",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 2}).(*models.Repository)
|
|
|
|
commentBean := &models.Comment{
|
|
|
|
Type: models.CommentTypeCommitRef,
|
|
|
|
CommitSHA: "abcdef1",
|
|
|
|
PosterID: user.ID,
|
|
|
|
IssueID: 7,
|
|
|
|
}
|
|
|
|
|
|
|
|
issueBean := &models.Issue{RepoID: repo.ID, Index: 2, ID: 7}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, issueBean, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, "non-existing-branch"))
|
|
|
|
models.AssertExistsAndLoadBean(t, commentBean)
|
|
|
|
models.AssertExistsAndLoadBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssuesCommit_AnotherRepo(t *testing.T) {
|
|
|
|
assert.NoError(t, models.PrepareTestDatabase())
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
|
|
|
|
|
|
|
|
// Test that a push to default branch closes issue in another repo
|
|
|
|
// If the user also has push permissions to that repo
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits := []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef1",
|
|
|
|
CommitterEmail: "user2@example.com",
|
|
|
|
CommitterName: "User Two",
|
|
|
|
AuthorEmail: "user2@example.com",
|
|
|
|
AuthorName: "User Two",
|
|
|
|
Message: "close user2/repo1#1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 2}).(*models.Repository)
|
|
|
|
commentBean := &models.Comment{
|
|
|
|
Type: models.CommentTypeCommitRef,
|
|
|
|
CommitSHA: "abcdef1",
|
|
|
|
PosterID: user.ID,
|
|
|
|
IssueID: 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
issueBean := &models.Issue{RepoID: 1, Index: 1, ID: 1}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, issueBean, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, repo.DefaultBranch))
|
|
|
|
models.AssertExistsAndLoadBean(t, commentBean)
|
|
|
|
models.AssertExistsAndLoadBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssuesCommit_AnotherRepoNoPermission(t *testing.T) {
|
|
|
|
assert.NoError(t, models.PrepareTestDatabase())
|
|
|
|
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 10}).(*models.User)
|
|
|
|
|
|
|
|
// Test that a push with close reference *can not* close issue
|
|
|
|
// If the commiter doesn't have push rights in that repo
|
2020-01-10 10:34:21 +01:00
|
|
|
pushCommits := []*repository.PushCommit{
|
2019-12-07 16:52:36 +01:00
|
|
|
{
|
|
|
|
Sha1: "abcdef3",
|
|
|
|
CommitterEmail: "user10@example.com",
|
|
|
|
CommitterName: "User Ten",
|
|
|
|
AuthorEmail: "user10@example.com",
|
|
|
|
AuthorName: "User Ten",
|
|
|
|
Message: "close user3/repo3#1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 6}).(*models.Repository)
|
|
|
|
commentBean := &models.Comment{
|
|
|
|
Type: models.CommentTypeCommitRef,
|
|
|
|
CommitSHA: "abcdef3",
|
|
|
|
PosterID: user.ID,
|
|
|
|
IssueID: 6,
|
|
|
|
}
|
|
|
|
|
|
|
|
issueBean := &models.Issue{RepoID: 3, Index: 1, ID: 6}
|
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, issueBean, "is_closed=1")
|
|
|
|
assert.NoError(t, UpdateIssuesCommit(user, repo, pushCommits, repo.DefaultBranch))
|
|
|
|
models.AssertNotExistsBean(t, commentBean)
|
|
|
|
models.AssertNotExistsBean(t, issueBean, "is_closed=1")
|
|
|
|
models.CheckConsistencyFor(t, &models.Action{})
|
|
|
|
}
|