c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package issues_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/db"
|
|
issues_model "git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/issues"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/unittest"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreateOrUpdateIssueWatch(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
assert.NoError(t, issues_model.CreateOrUpdateIssueWatch(t.Context(), 3, 1, true))
|
|
iw := unittest.AssertExistsAndLoadBean(t, &issues_model.IssueWatch{UserID: 3, IssueID: 1})
|
|
assert.True(t, iw.IsWatching)
|
|
|
|
assert.NoError(t, issues_model.CreateOrUpdateIssueWatch(t.Context(), 1, 1, false))
|
|
iw = unittest.AssertExistsAndLoadBean(t, &issues_model.IssueWatch{UserID: 1, IssueID: 1})
|
|
assert.False(t, iw.IsWatching)
|
|
}
|
|
|
|
func TestGetIssueWatch(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
_, exists, err := issues_model.GetIssueWatch(t.Context(), 9, 1)
|
|
assert.True(t, exists)
|
|
assert.NoError(t, err)
|
|
|
|
iw, exists, err := issues_model.GetIssueWatch(t.Context(), 2, 2)
|
|
assert.True(t, exists)
|
|
assert.NoError(t, err)
|
|
assert.False(t, iw.IsWatching)
|
|
|
|
_, exists, err = issues_model.GetIssueWatch(t.Context(), 3, 1)
|
|
assert.False(t, exists)
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
func TestGetIssueWatchers(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
iws, err := issues_model.GetIssueWatchers(t.Context(), 1, db.ListOptions{})
|
|
assert.NoError(t, err)
|
|
// Watcher is inactive, thus 0
|
|
assert.Empty(t, iws)
|
|
|
|
iws, err = issues_model.GetIssueWatchers(t.Context(), 2, db.ListOptions{})
|
|
assert.NoError(t, err)
|
|
// Watcher is explicit not watching
|
|
assert.Empty(t, iws)
|
|
|
|
iws, err = issues_model.GetIssueWatchers(t.Context(), 5, db.ListOptions{})
|
|
assert.NoError(t, err)
|
|
// Issue has no Watchers
|
|
assert.Empty(t, iws)
|
|
|
|
iws, err = issues_model.GetIssueWatchers(t.Context(), 7, db.ListOptions{})
|
|
assert.NoError(t, err)
|
|
// Issue has one watcher
|
|
assert.Len(t, iws, 1)
|
|
}
|