summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGusted <gusted@noreply.codeberg.org>2024-03-11 16:53:59 +0100
committerGusted <gusted@noreply.codeberg.org>2024-03-11 16:53:59 +0100
commit4dbf2d7c1198eeba4bb97f22b4e6fd3491489246 (patch)
treeaa681b0954c6f28ea4fb6a1cfb766e1ae00d9eb1 /tests
parentMerge pull request 'Improve English names & consistency' (#2610) from 0ko/for... (diff)
parentTest pagination of repo stars, watchers and forks (diff)
downloadforgejo-4dbf2d7c1198eeba4bb97f22b4e6fd3491489246.tar.xz
forgejo-4dbf2d7c1198eeba4bb97f22b4e6fd3491489246.zip
Merge pull request 'Better number for UserCards pagination' (#2584) from 0ko/forgejo:its39 into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2584 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Reviewed-by: oliverpool <oliverpool@noreply.codeberg.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/repo_pagination_test.go83
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/integration/repo_pagination_test.go b/tests/integration/repo_pagination_test.go
new file mode 100644
index 0000000000..81cc191dce
--- /dev/null
+++ b/tests/integration/repo_pagination_test.go
@@ -0,0 +1,83 @@
+// 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)
+ })
+}