2017-02-17 09:02:11 +01: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.
|
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
package repo
|
2017-02-17 09:02:11 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 13:49:59 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2019-11-10 10:22:19 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2017-02-17 09:02:11 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIsWatching(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-17 09:02:11 +01:00
|
|
|
|
|
|
|
assert.True(t, IsWatching(1, 1))
|
|
|
|
assert.True(t, IsWatching(4, 1))
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.True(t, IsWatching(11, 1))
|
2017-02-17 09:02:11 +01:00
|
|
|
|
|
|
|
assert.False(t, IsWatching(1, 5))
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.False(t, IsWatching(8, 1))
|
2021-11-16 09:53:21 +01:00
|
|
|
assert.False(t, IsWatching(unittest.NonexistentID, unittest.NonexistentID))
|
2017-02-17 09:02:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetWatchers(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-17 09:02:11 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
|
|
|
watches, err := GetWatchers(db.DefaultContext, repo.ID)
|
2017-02-17 09:02:11 +01:00
|
|
|
assert.NoError(t, err)
|
2017-10-24 19:36:19 +02:00
|
|
|
// One watchers are inactive, thus minus 1
|
|
|
|
assert.Len(t, watches, repo.NumWatches-1)
|
2017-02-17 09:02:11 +01:00
|
|
|
for _, watch := range watches {
|
|
|
|
assert.EqualValues(t, repo.ID, watch.RepoID)
|
|
|
|
}
|
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
watches, err = GetWatchers(db.DefaultContext, unittest.NonexistentID)
|
2017-02-17 09:02:11 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watches, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepository_GetWatchers(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-17 09:02:11 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err := GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2017-02-17 09:02:11 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, repo.NumWatches)
|
|
|
|
for _, watcher := range watchers {
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &Watch{UserID: watcher.ID, RepoID: repo.ID})
|
2017-02-17 09:02:11 +01:00
|
|
|
}
|
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
repo = unittest.AssertExistsAndLoadBean(t, &Repository{ID: 9}).(*Repository)
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2017-02-17 09:02:11 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, 0)
|
|
|
|
}
|
|
|
|
|
2019-11-10 10:22:19 +01:00
|
|
|
func TestWatchIfAuto(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err := GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, repo.NumWatches)
|
|
|
|
|
|
|
|
setting.Service.AutoWatchOnChanges = false
|
|
|
|
|
|
|
|
prevCount := repo.NumWatches
|
|
|
|
|
|
|
|
// Must not add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(8, 1, true))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
|
|
|
|
// Should not add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(10, 1, true))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
|
|
|
|
setting.Service.AutoWatchOnChanges = true
|
|
|
|
|
|
|
|
// Must not add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(8, 1, true))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
|
|
|
|
// Should not add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(12, 1, false))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
|
|
|
|
// Should add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(12, 1, true))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount+1)
|
|
|
|
|
|
|
|
// Should remove watch, inhibit from adding auto
|
|
|
|
assert.NoError(t, WatchRepo(12, 1, false))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
|
|
|
|
// Must not add watch
|
|
|
|
assert.NoError(t, WatchIfAuto(12, 1, true))
|
2021-12-10 02:27:50 +01:00
|
|
|
watchers, err = GetRepoWatchers(repo.ID, db.ListOptions{Page: 1})
|
2019-11-10 10:22:19 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, watchers, prevCount)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWatchRepoMode(t *testing.T) {
|
2021-11-12 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1}, 0)
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, WatchRepoMode(12, 1, WatchModeAuto))
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1}, 1)
|
2021-12-12 16:48:20 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1, Mode: WatchModeAuto}, 1)
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, WatchRepoMode(12, 1, WatchModeNormal))
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1}, 1)
|
2021-12-12 16:48:20 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1, Mode: WatchModeNormal}, 1)
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, WatchRepoMode(12, 1, WatchModeDont))
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1}, 1)
|
2021-12-12 16:48:20 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1, Mode: WatchModeDont}, 1)
|
2019-11-10 10:22:19 +01:00
|
|
|
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, WatchRepoMode(12, 1, WatchModeNone))
|
2021-11-16 09:53:21 +01:00
|
|
|
unittest.AssertCount(t, &Watch{UserID: 12, RepoID: 1}, 0)
|
2017-02-17 09:02:11 +01:00
|
|
|
}
|