aboutsummaryrefslogtreecommitdiffstats
path: root/models/issue_comment_test.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2021-09-19 19:49:59 +0800
committerGitHub <noreply@github.com>2021-09-19 19:49:59 +0800
commita4bfef265d9e512830350635a0489c2cdcd6508f (patch)
tree1e3c2ec94276dfcb2f8ba73a2ac075ba39c4a34a /models/issue_comment_test.go
parent462306e263db5a809dbe2cdf62e99307aeff28de (diff)
downloadgitea-a4bfef265d9e512830350635a0489c2cdcd6508f.tar.gz
gitea-a4bfef265d9e512830350635a0489c2cdcd6508f.zip
Move db related basic functions to models/db (#17075)
* Move db related basic functions to models/db * Fix lint * Fix lint * Fix test * Fix lint * Fix lint * revert unnecessary change * Fix test * Fix wrong replace string * Use *Context * Correct committer spelling and fix wrong replaced words Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'models/issue_comment_test.go')
-rw-r--r--models/issue_comment_test.go25
1 files changed, 13 insertions, 12 deletions
diff --git a/models/issue_comment_test.go b/models/issue_comment_test.go
index 91dd5c1732..78199881c6 100644
--- a/models/issue_comment_test.go
+++ b/models/issue_comment_test.go
@@ -8,15 +8,16 @@ import (
"testing"
"time"
+ "code.gitea.io/gitea/models/db"
"github.com/stretchr/testify/assert"
)
func TestCreateComment(t *testing.T) {
- assert.NoError(t, PrepareTestDatabase())
+ assert.NoError(t, db.PrepareTestDatabase())
- issue := AssertExistsAndLoadBean(t, &Issue{}).(*Issue)
- repo := AssertExistsAndLoadBean(t, &Repository{ID: issue.RepoID}).(*Repository)
- doer := AssertExistsAndLoadBean(t, &User{ID: repo.OwnerID}).(*User)
+ issue := db.AssertExistsAndLoadBean(t, &Issue{}).(*Issue)
+ repo := db.AssertExistsAndLoadBean(t, &Repository{ID: issue.RepoID}).(*Repository)
+ doer := db.AssertExistsAndLoadBean(t, &User{ID: repo.OwnerID}).(*User)
now := time.Now().Unix()
comment, err := CreateComment(&CreateCommentOptions{
@@ -33,18 +34,18 @@ func TestCreateComment(t *testing.T) {
assert.EqualValues(t, "Hello", comment.Content)
assert.EqualValues(t, issue.ID, comment.IssueID)
assert.EqualValues(t, doer.ID, comment.PosterID)
- AssertInt64InRange(t, now, then, int64(comment.CreatedUnix))
- AssertExistsAndLoadBean(t, comment) // assert actually added to DB
+ db.AssertInt64InRange(t, now, then, int64(comment.CreatedUnix))
+ db.AssertExistsAndLoadBean(t, comment) // assert actually added to DB
- updatedIssue := AssertExistsAndLoadBean(t, &Issue{ID: issue.ID}).(*Issue)
- AssertInt64InRange(t, now, then, int64(updatedIssue.UpdatedUnix))
+ updatedIssue := db.AssertExistsAndLoadBean(t, &Issue{ID: issue.ID}).(*Issue)
+ db.AssertInt64InRange(t, now, then, int64(updatedIssue.UpdatedUnix))
}
func TestFetchCodeComments(t *testing.T) {
- assert.NoError(t, PrepareTestDatabase())
+ assert.NoError(t, db.PrepareTestDatabase())
- issue := AssertExistsAndLoadBean(t, &Issue{ID: 2}).(*Issue)
- user := AssertExistsAndLoadBean(t, &User{ID: 1}).(*User)
+ issue := db.AssertExistsAndLoadBean(t, &Issue{ID: 2}).(*Issue)
+ user := db.AssertExistsAndLoadBean(t, &User{ID: 1}).(*User)
res, err := FetchCodeComments(issue, user)
assert.NoError(t, err)
assert.Contains(t, res, "README.md")
@@ -52,7 +53,7 @@ func TestFetchCodeComments(t *testing.T) {
assert.Len(t, res["README.md"][4], 1)
assert.Equal(t, int64(4), res["README.md"][4][0].ID)
- user2 := AssertExistsAndLoadBean(t, &User{ID: 2}).(*User)
+ user2 := db.AssertExistsAndLoadBean(t, &User{ID: 2}).(*User)
res, err = FetchCodeComments(issue, user2)
assert.NoError(t, err)
assert.Len(t, res, 1)