2017-02-04 07:37:26 -05:00
|
|
|
// Copyright 2017 The Gogs 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 models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_newIssueUsers(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
|
|
|
|
repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
|
|
|
newIssue := &Issue{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
PosterID: 4,
|
2020-01-17 01:03:40 -05:00
|
|
|
Index: 6,
|
2017-02-04 07:37:26 -05:00
|
|
|
Title: "newTestIssueTitle",
|
|
|
|
Content: "newTestIssueContent",
|
|
|
|
}
|
|
|
|
|
|
|
|
// artificially insert new issue
|
|
|
|
AssertSuccessfulInsert(t, newIssue)
|
|
|
|
|
|
|
|
assert.NoError(t, newIssueUsers(x, repo, newIssue))
|
|
|
|
|
|
|
|
// issue_user table should now have entries for new issue
|
|
|
|
AssertExistsAndLoadBean(t, &IssueUser{IssueID: newIssue.ID, UID: newIssue.PosterID})
|
|
|
|
AssertExistsAndLoadBean(t, &IssueUser{IssueID: newIssue.ID, UID: repo.OwnerID})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssueUserByRead(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
issue := AssertExistsAndLoadBean(t, &Issue{ID: 1}).(*Issue)
|
|
|
|
|
|
|
|
assert.NoError(t, UpdateIssueUserByRead(4, issue.ID))
|
|
|
|
AssertExistsAndLoadBean(t, &IssueUser{IssueID: issue.ID, UID: 4}, "is_read=1")
|
|
|
|
|
|
|
|
assert.NoError(t, UpdateIssueUserByRead(4, issue.ID))
|
|
|
|
AssertExistsAndLoadBean(t, &IssueUser{IssueID: issue.ID, UID: 4}, "is_read=1")
|
|
|
|
|
|
|
|
assert.NoError(t, UpdateIssueUserByRead(NonexistentID, NonexistentID))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateIssueUsersByMentions(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
issue := AssertExistsAndLoadBean(t, &Issue{ID: 1}).(*Issue)
|
|
|
|
|
|
|
|
uids := []int64{2, 5}
|
2019-09-24 01:02:49 -04:00
|
|
|
assert.NoError(t, UpdateIssueUsersByMentions(DefaultDBContext(), issue.ID, uids))
|
2017-02-04 07:37:26 -05:00
|
|
|
for _, uid := range uids {
|
|
|
|
AssertExistsAndLoadBean(t, &IssueUser{IssueID: issue.ID, UID: uid}, "is_mentioned=1")
|
|
|
|
}
|
|
|
|
}
|