mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 10:19:11 +01:00
Fix SQL bug in models.PullRequests
This commit is contained in:
parent
3c0705ecf3
commit
eae9154811
2 changed files with 32 additions and 2 deletions
31
integrations/api_pull_test.go
Normal file
31
integrations/api_pull_test.go
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
// 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"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/models"
|
||||||
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAPIViewPulls(t *testing.T) {
|
||||||
|
prepareTestEnv(t)
|
||||||
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository)
|
||||||
|
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User)
|
||||||
|
|
||||||
|
session := loginUser(t, "user2")
|
||||||
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/%s/pulls?state=all", owner.Name, repo.Name)
|
||||||
|
resp := session.MakeRequest(t, req)
|
||||||
|
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
|
||||||
|
|
||||||
|
var pulls []*api.PullRequest
|
||||||
|
DecodeJSON(t, resp, &pulls)
|
||||||
|
expectedLen := models.GetCount(t, &models.Issue{RepoID: repo.ID}, models.Cond("is_pull = ?", true))
|
||||||
|
assert.Len(t, pulls, expectedLen)
|
||||||
|
}
|
|
@ -688,8 +688,6 @@ func listPullRequestStatement(baseRepoID int64, opts *PullRequestsOptions) (*xor
|
||||||
sess.And("issue.is_closed=?", opts.State == "closed")
|
sess.And("issue.is_closed=?", opts.State == "closed")
|
||||||
}
|
}
|
||||||
|
|
||||||
sortIssuesSession(sess, opts.SortType)
|
|
||||||
|
|
||||||
if labelIDs, err := base.StringsToInt64s(opts.Labels); err != nil {
|
if labelIDs, err := base.StringsToInt64s(opts.Labels); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else if len(labelIDs) > 0 {
|
} else if len(labelIDs) > 0 {
|
||||||
|
@ -723,6 +721,7 @@ func PullRequests(baseRepoID int64, opts *PullRequestsOptions) ([]*PullRequest,
|
||||||
|
|
||||||
prs := make([]*PullRequest, 0, ItemsPerPage)
|
prs := make([]*PullRequest, 0, ItemsPerPage)
|
||||||
findSession, err := listPullRequestStatement(baseRepoID, opts)
|
findSession, err := listPullRequestStatement(baseRepoID, opts)
|
||||||
|
sortIssuesSession(findSession, opts.SortType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(4, "listPullRequestStatement", err)
|
log.Error(4, "listPullRequestStatement", err)
|
||||||
return nil, maxResults, err
|
return nil, maxResults, err
|
||||||
|
|
Loading…
Reference in a new issue