2017-06-18 12:06:17 +03:00
// 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 (
2017-07-14 01:33:26 +03:00
"fmt"
2017-06-18 12:06:17 +03:00
"net/http"
"testing"
"code.gitea.io/gitea/models"
api "code.gitea.io/sdk/gitea"
"github.com/stretchr/testify/assert"
)
2017-07-14 01:33:26 +03:00
func TestAPIListRepoComments ( 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 )
req := NewRequestf ( t , "GET" , "/api/v1/repos/%s/%s/issues/comments" ,
repoOwner . Name , repo . Name )
resp := session . MakeRequest ( t , req , http . StatusOK )
var apiComments [ ] * api . Comment
DecodeJSON ( t , resp , & apiComments )
for _ , apiComment := range apiComments {
c := & models . Comment { ID : apiComment . ID }
models . AssertExistsAndLoadBean ( t , c ,
models . Cond ( "type = ?" , models . CommentTypeComment ) )
models . AssertExistsAndLoadBean ( t , & models . Issue { ID : c . IssueID , RepoID : repo . ID } )
}
}
func TestAPIListIssueComments ( t * testing . T ) {
2017-06-18 12:06:17 +03:00
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 )
2017-06-25 03:15:42 +03:00
req := NewRequestf ( t , "GET" , "/api/v1/repos/%s/%s/issues/%d/comments" ,
2017-06-18 12:06:17 +03:00
repoOwner . Name , repo . Name , issue . Index )
2017-07-07 22:36:47 +03:00
resp := session . MakeRequest ( t , req , http . StatusOK )
2017-06-18 12:06:17 +03:00
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 ) )
}
2017-07-14 01:33:26 +03:00
func TestAPICreateComment ( t * testing . T ) {
prepareTestEnv ( t )
const commentBody = "Comment body"
issue := models . AssertExistsAndLoadBean ( t , & models . Issue { } ) . ( * 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 )
urlStr := fmt . Sprintf ( "/api/v1/repos/%s/%s/issues/%d/comments" ,
repoOwner . Name , repo . Name , issue . Index )
req := NewRequestWithValues ( t , "POST" , urlStr , map [ string ] string {
"body" : commentBody ,
} )
resp := session . MakeRequest ( t , req , http . StatusCreated )
var updatedComment api . Comment
DecodeJSON ( t , resp , & updatedComment )
assert . EqualValues ( t , commentBody , updatedComment . Body )
models . AssertExistsAndLoadBean ( t , & models . Comment { ID : updatedComment . ID , IssueID : issue . ID , Content : commentBody } )
}
func TestAPIEditComment ( t * testing . T ) {
prepareTestEnv ( t )
const newCommentBody = "This is the new comment body"
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 )
2017-11-20 10:24:07 +03:00
urlStr := fmt . Sprintf ( "/api/v1/repos/%s/%s/issues/comments/%d" ,
repoOwner . Name , repo . Name , comment . ID )
2017-07-14 01:33:26 +03:00
req := NewRequestWithValues ( t , "PATCH" , urlStr , map [ string ] string {
"body" : newCommentBody ,
} )
resp := session . MakeRequest ( t , req , http . StatusOK )
var updatedComment api . Comment
DecodeJSON ( t , resp , & updatedComment )
assert . EqualValues ( t , comment . ID , updatedComment . ID )
assert . EqualValues ( t , newCommentBody , updatedComment . Body )
models . AssertExistsAndLoadBean ( t , & models . Comment { ID : comment . ID , IssueID : issue . ID , Content : newCommentBody } )
}
func TestAPIDeleteComment ( 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 )
2017-11-20 10:24:07 +03:00
req := NewRequestf ( t , "DELETE" , "/api/v1/repos/%s/%s/issues/comments/%d" ,
repoOwner . Name , repo . Name , comment . ID )
2017-07-14 01:33:26 +03:00
session . MakeRequest ( t , req , http . StatusNoContent )
models . AssertNotExistsBean ( t , & models . Comment { ID : comment . ID } )
}