1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package integration
import (
"net/http"
"path"
"testing"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/test"
"code.gitea.io/gitea/tests"
"github.com/stretchr/testify/assert"
)
func TestRepoPaginations(t *testing.T) {
defer tests.PrepareTestEnv(t)()
t.Run("Fork", func(t *testing.T) {
// Make forks of user2/repo1
session := loginUser(t, "user2")
testRepoFork(t, session, "user2", "repo1", "org3", "repo1")
session = loginUser(t, "user5")
testRepoFork(t, session, "user2", "repo1", "org6", "repo1")
unittest.AssertCount(t, &repo_model.Repository{ForkID: 1}, 2)
testRepoPagination(t, session, "user2/repo1", "forks", &setting.MaxForksPerPage)
})
t.Run("Stars", func(t *testing.T) {
// Add stars to user2/repo1.
session := loginUser(t, "user2")
req := NewRequestWithValues(t, "POST", "/user2/repo1/action/star", map[string]string{
"_csrf": GetCSRF(t, session, "/user2/repo1"),
})
session.MakeRequest(t, req, http.StatusOK)
session = loginUser(t, "user1")
req = NewRequestWithValues(t, "POST", "/user2/repo1/action/star", map[string]string{
"_csrf": GetCSRF(t, session, "/user2/repo1"),
})
session.MakeRequest(t, req, http.StatusOK)
testRepoPagination(t, session, "user2/repo1", "stars", &setting.MaxUserCardsPerPage)
})
t.Run("Watcher", func(t *testing.T) {
// user2/repo2 is watched by its creator user2. Watch it by user1 to make it watched by 2 users.
session := loginUser(t, "user1")
req := NewRequestWithValues(t, "POST", "/user2/repo2/action/watch", map[string]string{
"_csrf": GetCSRF(t, session, "/user2/repo2"),
})
session.MakeRequest(t, req, http.StatusOK)
testRepoPagination(t, session, "user2/repo2", "watchers", &setting.MaxUserCardsPerPage)
})
}
func testRepoPagination(t *testing.T, session *TestSession, repo, kind string, mockableVar *int) {
t.Run("Should paginate", func(t *testing.T) {
defer tests.PrintCurrentTest(t)()
defer test.MockVariableValue(mockableVar, 1)()
req := NewRequest(t, "GET", "/"+path.Join(repo, kind))
resp := session.MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body)
paginationButton := htmlDoc.Find(".item.navigation[href='/" + path.Join(repo, kind) + "?page=2']")
// Next and Last button.
assert.Equal(t, 2, paginationButton.Length())
})
t.Run("Shouldn't paginate", func(t *testing.T) {
defer tests.PrintCurrentTest(t)()
defer test.MockVariableValue(mockableVar, 2)()
req := NewRequest(t, "GET", "/"+path.Join(repo, kind))
resp := session.MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body)
htmlDoc.AssertElement(t, ".item.navigation[href='/"+path.Join(repo, kind)+"?page=2']", false)
})
}
|