]> source.dussan.org Git - gitea.git/commitdiff
Fix the logic of finding the latest pull review commit ID (#32139)
authorZettat123 <zettat123@gmail.com>
Tue, 1 Oct 2024 01:58:55 +0000 (09:58 +0800)
committerGitHub <noreply@github.com>
Tue, 1 Oct 2024 01:58:55 +0000 (01:58 +0000)
Fix #31423

models/fixtures/comment.yml
models/fixtures/review.yml
models/issues/pull.go
models/issues/review.go
models/issues/review_list.go
models/issues/review_test.go
routers/api/v1/repo/pull_review.go
services/pull/pull.go
services/pull/review.go
tests/integration/api_pull_review_test.go
tests/integration/pull_commit_test.go [new file with mode: 0644]

index 74fc716180d1de83e35cdd8bc77f9d735761e031..8fde386e226d4eea3947618f722594a300b83414 100644 (file)
   issue_id: 2 # in repo_id 1
   review_id: 20
   created_unix: 946684810
+
+-
+  id: 10
+  type: 22 # review
+  poster_id: 5
+  issue_id: 3 # in repo_id 1
+  content: "reviewed by user5"
+  review_id: 21
+  created_unix: 946684816
+
+-
+  id: 11
+  type: 27 # review request
+  poster_id: 2
+  issue_id: 3 # in repo_id 1
+  content: "review request for user5"
+  review_id: 22
+  assignee_id: 5
+  created_unix: 946684817
index ac97e24c2be0c3025018b2be973a2363e8ec0538..0438ceadae2892b133b50e739967c8ca24f9557d 100644 (file)
   content: "Review Comment"
   updated_unix: 946684810
   created_unix: 946684810
+
+-
+  id: 21
+  type: 2
+  reviewer_id: 5
+  issue_id: 3
+  content: "reviewed by user5"
+  commit_id: 4a357436d925b5c974181ff12a994538ddc5a269
+  updated_unix: 946684816
+  created_unix: 946684816
+
+-
+  id: 22
+  type: 4
+  reviewer_id: 5
+  issue_id: 3
+  content: "review request for user5"
+  updated_unix: 946684817
+  created_unix: 946684817
index 4a5782f836c896250608a4c1c3206badd03f93d0..b327ebc625c737fd84cc05656d91cb802e9fea62 100644 (file)
@@ -414,7 +414,7 @@ func (pr *PullRequest) getReviewedByLines(ctx context.Context, writer io.Writer)
 
        // Note: This doesn't page as we only expect a very limited number of reviews
        reviews, err := FindLatestReviews(ctx, FindReviewOptions{
-               Type:         ReviewTypeApprove,
+               Types:        []ReviewType{ReviewTypeApprove},
                IssueID:      pr.IssueID,
                OfficialOnly: setting.Repository.PullRequest.DefaultMergeMessageOfficialApproversOnly,
        })
index 9fb6d7573a8bcf357d90268c2f92746549bda947..8b345e5fd8002a1965b90c04bd454d18bb8dc6b6 100644 (file)
@@ -389,7 +389,7 @@ func GetCurrentReview(ctx context.Context, reviewer *user_model.User, issue *Iss
                return nil, nil
        }
        reviews, err := FindReviews(ctx, FindReviewOptions{
-               Type:       ReviewTypePending,
+               Types:      []ReviewType{ReviewTypePending},
                IssueID:    issue.ID,
                ReviewerID: reviewer.ID,
        })
index 0ee28874ec98a9098986ab63868abd1e046b7dcb..a5ceb2179116cd1277512a36a07843b19ef13735 100644 (file)
@@ -92,7 +92,7 @@ func (reviews ReviewList) LoadIssues(ctx context.Context) error {
 // FindReviewOptions represent possible filters to find reviews
 type FindReviewOptions struct {
        db.ListOptions
-       Type         ReviewType
+       Types        []ReviewType
        IssueID      int64
        ReviewerID   int64
        OfficialOnly bool
@@ -107,8 +107,8 @@ func (opts *FindReviewOptions) toCond() builder.Cond {
        if opts.ReviewerID > 0 {
                cond = cond.And(builder.Eq{"reviewer_id": opts.ReviewerID})
        }
-       if opts.Type != ReviewTypeUnknown {
-               cond = cond.And(builder.Eq{"type": opts.Type})
+       if len(opts.Types) > 0 {
+               cond = cond.And(builder.In("type", opts.Types))
        }
        if opts.OfficialOnly {
                cond = cond.And(builder.Eq{"official": true})
index ac1b84adebcc2ed06919b5acae5e23e9ef49fdc7..942121fd8f25721e58fb2296a08f69e52c540026 100644 (file)
@@ -63,7 +63,7 @@ func TestReviewType_Icon(t *testing.T) {
 func TestFindReviews(t *testing.T) {
        assert.NoError(t, unittest.PrepareTestDatabase())
        reviews, err := issues_model.FindReviews(db.DefaultContext, issues_model.FindReviewOptions{
-               Type:       issues_model.ReviewTypeApprove,
+               Types:      []issues_model.ReviewType{issues_model.ReviewTypeApprove},
                IssueID:    2,
                ReviewerID: 1,
        })
@@ -75,7 +75,7 @@ func TestFindReviews(t *testing.T) {
 func TestFindLatestReviews(t *testing.T) {
        assert.NoError(t, unittest.PrepareTestDatabase())
        reviews, err := issues_model.FindLatestReviews(db.DefaultContext, issues_model.FindReviewOptions{
-               Type:    issues_model.ReviewTypeApprove,
+               Types:   []issues_model.ReviewType{issues_model.ReviewTypeApprove},
                IssueID: 11,
        })
        assert.NoError(t, err)
index c2e4966498315dea01f9c73533151397db16603e..34bbaf560008fe1ba6afbe31ce435f52ad119ebf 100644 (file)
@@ -83,7 +83,6 @@ func ListPullReviews(ctx *context.APIContext) {
 
        opts := issues_model.FindReviewOptions{
                ListOptions: utils.GetListOptions(ctx),
-               Type:        issues_model.ReviewTypeUnknown,
                IssueID:     pr.IssueID,
        }
 
index 154ff6c5c6851c9754a94c09d226b627ac1d6934..bab4e49998e150e538753b933421b3ea8a243c9f 100644 (file)
@@ -995,6 +995,8 @@ type CommitInfo struct {
 }
 
 // GetPullCommits returns all commits on given pull request and the last review commit sha
+// Attention: The last review commit sha must be from the latest review whose commit id is not empty.
+// So the type of the latest review cannot be "ReviewTypeRequest".
 func GetPullCommits(ctx *gitea_context.Context, issue *issues_model.Issue) ([]CommitInfo, string, error) {
        pull := issue.PullRequest
 
@@ -1040,7 +1042,11 @@ func GetPullCommits(ctx *gitea_context.Context, issue *issues_model.Issue) ([]Co
                lastreview, err := issues_model.FindLatestReviews(ctx, issues_model.FindReviewOptions{
                        IssueID:    issue.ID,
                        ReviewerID: ctx.Doer.ID,
-                       Type:       issues_model.ReviewTypeUnknown,
+                       Types: []issues_model.ReviewType{
+                               issues_model.ReviewTypeApprove,
+                               issues_model.ReviewTypeComment,
+                               issues_model.ReviewTypeReject,
+                       },
                })
 
                if err != nil && !issues_model.IsErrReviewNotExist(err) {
index 3d5eca779f8e97d855010038979b821676b054af..78723a58ae3052a3dfd165ded11ca0d751ba7bd8 100644 (file)
@@ -348,7 +348,7 @@ func DismissApprovalReviews(ctx context.Context, doer *user_model.User, pull *is
        reviews, err := issues_model.FindReviews(ctx, issues_model.FindReviewOptions{
                ListOptions: db.ListOptionsAll,
                IssueID:     pull.IssueID,
-               Type:        issues_model.ReviewTypeApprove,
+               Types:       []issues_model.ReviewType{issues_model.ReviewTypeApprove},
                Dismissed:   optional.Some(false),
        })
        if err != nil {
index bc544a30b53197a632ef78cf343fb3f1cf093f72..cadb0765c341eab0cc7a7ab8afc99a74ad41861f 100644 (file)
@@ -38,7 +38,7 @@ func TestAPIPullReview(t *testing.T) {
 
        var reviews []*api.PullReview
        DecodeJSON(t, resp, &reviews)
-       if !assert.Len(t, reviews, 6) {
+       if !assert.Len(t, reviews, 8) {
                return
        }
        for _, r := range reviews {
diff --git a/tests/integration/pull_commit_test.go b/tests/integration/pull_commit_test.go
new file mode 100644 (file)
index 0000000..477f017
--- /dev/null
@@ -0,0 +1,34 @@
+// Copyright 2024 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package integration
+
+import (
+       "net/http"
+       "net/url"
+       "testing"
+
+       pull_service "code.gitea.io/gitea/services/pull"
+
+       "github.com/stretchr/testify/assert"
+)
+
+func TestListPullCommits(t *testing.T) {
+       onGiteaRun(t, func(t *testing.T, u *url.URL) {
+               session := loginUser(t, "user5")
+               req := NewRequest(t, "GET", "/user2/repo1/pulls/3/commits/list")
+               resp := session.MakeRequest(t, req, http.StatusOK)
+
+               var pullCommitList struct {
+                       Commits             []pull_service.CommitInfo `json:"commits"`
+                       LastReviewCommitSha string                    `json:"last_review_commit_sha"`
+               }
+               DecodeJSON(t, resp, &pullCommitList)
+
+               if assert.Len(t, pullCommitList.Commits, 2) {
+                       assert.Equal(t, "5f22f7d0d95d614d25a5b68592adb345a4b5c7fd", pullCommitList.Commits[0].ID)
+                       assert.Equal(t, "4a357436d925b5c974181ff12a994538ddc5a269", pullCommitList.Commits[1].ID)
+               }
+               assert.Equal(t, "4a357436d925b5c974181ff12a994538ddc5a269", pullCommitList.LastReviewCommitSha)
+       })
+}