2019-07-30 04:59:10 +03: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"
2021-09-19 14:49:59 +03:00
"code.gitea.io/gitea/models/db"
2020-01-10 12:34:21 +03:00
"code.gitea.io/gitea/modules/repository"
2020-08-06 22:20:05 +03:00
"code.gitea.io/gitea/modules/setting"
2019-07-30 04:59:10 +03:00
"github.com/stretchr/testify/assert"
)
2019-12-07 18:52:36 +03:00
func TestUpdateIssuesCommit ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
2020-01-10 12:34:21 +03:00
pushCommits := [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03: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" ,
} ,
}
2021-09-19 14:49:59 +03:00
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 2 } ) . ( * models . User )
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 1 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
repo . Owner = user
commentBean := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef1" ,
PosterID : user . ID ,
IssueID : 1 ,
}
issueBean := & models . Issue { RepoID : repo . ID , Index : 4 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , & models . Issue { RepoID : repo . ID , Index : 2 } , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
// Test that push to a non-default branch closes no issue.
2020-01-10 12:34:21 +03:00
pushCommits = [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03:00
{
Sha1 : "abcdef1" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user4@example.com" ,
AuthorName : "User Four" ,
Message : "close #1" ,
} ,
}
2021-09-19 14:49:59 +03:00
repo = db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 3 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
commentBean = & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef1" ,
PosterID : user . ID ,
IssueID : 6 ,
}
issueBean = & models . Issue { RepoID : repo . ID , Index : 1 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , & models . Issue { RepoID : repo . ID , Index : 1 } , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , "non-existing-branch" ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
2020-08-06 22:20:05 +03:00
pushCommits = [ ] * repository . PushCommit {
{
Sha1 : "abcdef3" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user2@example.com" ,
AuthorName : "User Two" ,
Message : "close " + setting . AppURL + repo . FullName ( ) + "/pulls/1" ,
} ,
}
2021-09-19 14:49:59 +03:00
repo = db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 3 } ) . ( * models . Repository )
2020-08-06 22:20:05 +03:00
commentBean = & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef3" ,
PosterID : user . ID ,
IssueID : 6 ,
}
issueBean = & models . Issue { RepoID : repo . ID , Index : 1 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , & models . Issue { RepoID : repo . ID , Index : 1 } , "is_closed=1" )
2020-08-06 22:20:05 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2020-08-06 22:20:05 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
2019-12-07 18:52:36 +03:00
}
func TestUpdateIssuesCommit_Colon ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
2020-01-10 12:34:21 +03:00
pushCommits := [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03:00
{
Sha1 : "abcdef2" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user2@example.com" ,
AuthorName : "User Two" ,
Message : "close: #2" ,
} ,
}
2021-09-19 14:49:59 +03:00
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 2 } ) . ( * models . User )
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 1 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
repo . Owner = user
issueBean := & models . Issue { RepoID : repo . ID , Index : 4 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , & models . Issue { RepoID : repo . ID , Index : 2 } , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
}
func TestUpdateIssuesCommit_Issue5957 ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 2 } ) . ( * models . User )
2019-12-07 18:52:36 +03:00
// Test that push to a non-default branch closes an issue.
2020-01-10 12:34:21 +03:00
pushCommits := [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03:00
{
Sha1 : "abcdef1" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user4@example.com" ,
AuthorName : "User Four" ,
Message : "close #2" ,
} ,
}
2021-09-19 14:49:59 +03:00
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 2 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
commentBean := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef1" ,
PosterID : user . ID ,
IssueID : 7 ,
}
issueBean := & models . Issue { RepoID : repo . ID , Index : 2 , ID : 7 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , "non-existing-branch" ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
}
func TestUpdateIssuesCommit_AnotherRepo ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 2 } ) . ( * models . User )
2019-12-07 18:52:36 +03:00
// 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 12:34:21 +03:00
pushCommits := [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03:00
{
Sha1 : "abcdef1" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user2@example.com" ,
AuthorName : "User Two" ,
Message : "close user2/repo1#1" ,
} ,
}
2021-09-19 14:49:59 +03:00
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 2 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
commentBean := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef1" ,
PosterID : user . ID ,
IssueID : 1 ,
}
issueBean := & models . Issue { RepoID : 1 , Index : 1 , ID : 1 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
}
2020-08-06 22:20:05 +03:00
func TestUpdateIssuesCommit_AnotherRepo_FullAddress ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 2 } ) . ( * models . User )
2020-08-06 22:20:05 +03:00
// Test that a push to default branch closes issue in another repo
// If the user also has push permissions to that repo
pushCommits := [ ] * repository . PushCommit {
{
Sha1 : "abcdef1" ,
CommitterEmail : "user2@example.com" ,
CommitterName : "User Two" ,
AuthorEmail : "user2@example.com" ,
AuthorName : "User Two" ,
Message : "close " + setting . AppURL + "user2/repo1/issues/1" ,
} ,
}
2021-09-19 14:49:59 +03:00
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 2 } ) . ( * models . Repository )
2020-08-06 22:20:05 +03:00
commentBean := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef1" ,
PosterID : user . ID ,
IssueID : 1 ,
}
issueBean := & models . Issue { RepoID : 1 , Index : 1 , ID : 1 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2020-08-06 22:20:05 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertExistsAndLoadBean ( t , commentBean )
db . AssertExistsAndLoadBean ( t , issueBean , "is_closed=1" )
2020-08-06 22:20:05 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
}
2019-12-07 18:52:36 +03:00
func TestUpdateIssuesCommit_AnotherRepoNoPermission ( t * testing . T ) {
2021-09-19 14:49:59 +03:00
assert . NoError ( t , db . PrepareTestDatabase ( ) )
user := db . AssertExistsAndLoadBean ( t , & models . User { ID : 10 } ) . ( * models . User )
2019-12-07 18:52:36 +03:00
// Test that a push with close reference *can not* close issue
2021-07-08 14:38:13 +03:00
// If the committer doesn't have push rights in that repo
2020-01-10 12:34:21 +03:00
pushCommits := [ ] * repository . PushCommit {
2019-12-07 18:52:36 +03:00
{
Sha1 : "abcdef3" ,
CommitterEmail : "user10@example.com" ,
CommitterName : "User Ten" ,
AuthorEmail : "user10@example.com" ,
AuthorName : "User Ten" ,
Message : "close user3/repo3#1" ,
} ,
2020-08-06 22:20:05 +03:00
{
Sha1 : "abcdef4" ,
CommitterEmail : "user10@example.com" ,
CommitterName : "User Ten" ,
AuthorEmail : "user10@example.com" ,
AuthorName : "User Ten" ,
Message : "close " + setting . AppURL + "user3/repo3/issues/1" ,
} ,
2019-12-07 18:52:36 +03:00
}
2021-09-19 14:49:59 +03:00
repo := db . AssertExistsAndLoadBean ( t , & models . Repository { ID : 6 } ) . ( * models . Repository )
2019-12-07 18:52:36 +03:00
commentBean := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef3" ,
PosterID : user . ID ,
IssueID : 6 ,
}
2020-08-06 22:20:05 +03:00
commentBean2 := & models . Comment {
Type : models . CommentTypeCommitRef ,
CommitSHA : "abcdef4" ,
PosterID : user . ID ,
IssueID : 6 ,
}
2019-12-07 18:52:36 +03:00
issueBean := & models . Issue { RepoID : 3 , Index : 1 , ID : 6 }
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , commentBean2 )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
assert . NoError ( t , UpdateIssuesCommit ( user , repo , pushCommits , repo . DefaultBranch ) )
2021-09-19 14:49:59 +03:00
db . AssertNotExistsBean ( t , commentBean )
db . AssertNotExistsBean ( t , commentBean2 )
db . AssertNotExistsBean ( t , issueBean , "is_closed=1" )
2019-12-07 18:52:36 +03:00
models . CheckConsistencyFor ( t , & models . Action { } )
}