]> source.dussan.org Git - gitea.git/commitdiff
Don't show non-comments in comments API (#2001)
authorEthan Koenig <etk39@cornell.edu>
Sun, 18 Jun 2017 09:06:17 +0000 (05:06 -0400)
committerLunny Xiao <xiaolunwen@gmail.com>
Sun, 18 Jun 2017 09:06:17 +0000 (17:06 +0800)
integrations/api_comment_test.go [new file with mode: 0644]
integrations/api_team_test.go
integrations/integration_test.go
integrations/version_test.go
models/issue_comment.go

diff --git a/integrations/api_comment_test.go b/integrations/api_comment_test.go
new file mode 100644 (file)
index 0000000..16ba69a
--- /dev/null
@@ -0,0 +1,39 @@
+// 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 (
+       "fmt"
+       "net/http"
+       "testing"
+
+       "code.gitea.io/gitea/models"
+       api "code.gitea.io/sdk/gitea"
+
+       "github.com/stretchr/testify/assert"
+)
+
+func TestAPIListComments(t *testing.T) {
+       prepareTestEnv(t)
+
+       comment := models.AssertExistsAndLoadBean(t, &models.Comment{},
+               models.Cond("type = ?", models.CommentTypeComment)).(*models.Comment)
+       issue := models.AssertExistsAndLoadBean(t, &models.Issue{ID: comment.IssueID}).(*models.Issue)
+       repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: issue.RepoID}).(*models.Repository)
+       repoOwner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User)
+
+       session := loginUser(t, repoOwner.Name)
+       requestUrl := fmt.Sprintf("/api/v1/repos/%s/%s/issues/%d/comments",
+               repoOwner.Name, repo.Name, issue.Index)
+       req := NewRequest(t, "GET", requestUrl)
+       resp := session.MakeRequest(t, req)
+       assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+
+       var comments []*api.Comment
+       DecodeJSON(t, resp, &comments)
+       expectedCount := models.GetCount(t, &models.Comment{IssueID: issue.ID},
+               models.Cond("type = ?", models.CommentTypeComment))
+       assert.EqualValues(t, expectedCount, len(comments))
+}
index 9103042042e3d49b9d4b64e7f4f0dd6449002d57..4b2a79a8cc20174bef492c9b0e9b806b58c6374b 100644 (file)
@@ -5,8 +5,6 @@
 package integrations
 
 import (
-       "bytes"
-       "encoding/json"
        "fmt"
        "net/http"
        "testing"
@@ -30,8 +28,7 @@ func TestAPITeam(t *testing.T) {
        assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
 
        var apiTeam api.Team
-       decoder := json.NewDecoder(bytes.NewBuffer(resp.Body))
-       assert.NoError(t, decoder.Decode(&apiTeam))
+       DecodeJSON(t, resp, &apiTeam)
        assert.EqualValues(t, team.ID, apiTeam.ID)
        assert.Equal(t, team.Name, apiTeam.Name)
 }
index 459444364747a6bf4287d4dd919cbb8383b2e121..e935d36f196c06b3e456dc067f8a3450a2cd0076 100644 (file)
@@ -252,3 +252,8 @@ func MakeRequest(req *http.Request) *TestResponse {
                Headers:    respWriter.Headers,
        }
 }
+
+func DecodeJSON(t testing.TB, resp *TestResponse, v interface{}) {
+       decoder := json.NewDecoder(bytes.NewBuffer(resp.Body))
+       assert.NoError(t, decoder.Decode(v))
+}
index b5902a20a36759311419d0ddec1420cda7a7ac4f..2234366b1d7ae6ad89f6aeae252d2c0f8244ae4b 100644 (file)
@@ -5,8 +5,6 @@
 package integrations
 
 import (
-       "bytes"
-       "encoding/json"
        "net/http"
        "testing"
 
@@ -22,11 +20,9 @@ func TestVersion(t *testing.T) {
        setting.AppVer = "1.1.0+dev"
        req := NewRequest(t, "GET", "/api/v1/version")
        resp := MakeRequest(req)
+       assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
 
        var version gitea.ServerVersion
-       decoder := json.NewDecoder(bytes.NewBuffer(resp.Body))
-       assert.NoError(t, decoder.Decode(&version))
-
-       assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+       DecodeJSON(t, resp, &version)
        assert.Equal(t, setting.AppVer, string(version.Version))
 }
index 91d8551518d33a1efe9518c641638a4b0aca0434..ead3f1bed35c99951141d63ce5624b812e47207f 100644 (file)
@@ -572,6 +572,7 @@ func getCommentsByIssueIDSince(e Engine, issueID, since int64) ([]*Comment, erro
        comments := make([]*Comment, 0, 10)
        sess := e.
                Where("issue_id = ?", issueID).
+               Where("type = ?", CommentTypeComment).
                Asc("created_unix")
        if since > 0 {
                sess.And("updated_unix >= ?", since)
@@ -582,6 +583,7 @@ func getCommentsByIssueIDSince(e Engine, issueID, since int64) ([]*Comment, erro
 func getCommentsByRepoIDSince(e Engine, repoID, since int64) ([]*Comment, error) {
        comments := make([]*Comment, 0, 10)
        sess := e.Where("issue.repo_id = ?", repoID).
+               Where("comment.type = ?", CommentTypeComment).
                Join("INNER", "issue", "issue.id = comment.issue_id").
                Asc("comment.created_unix")
        if since > 0 {