Test pagination of repo stars, watchers and forks

based on code suggested in https://codeberg.org/forgejo/forgejo/pulls/2584#issuecomment-1647897 and https://codeberg.org/forgejo/forgejo/pulls/2584#issuecomment-1655289

Co-authored-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
0ko 2024-03-10 17:15:59 +05:00
parent 498a3f988d
commit b2bc233517
2 changed files with 85 additions and 2 deletions

View file

@ -24,10 +24,10 @@ var RecognisedRepositoryDownloadOrCloneMethods = []string{"download-zip", "downl
// MaxUserCardsPerPage sets maximum amount of watchers and stargazers shown per page
// those pages use 2 or 3 column layout, so the value should be divisible by 2 and 3
const MaxUserCardsPerPage = 36
var MaxUserCardsPerPage = 36
// MaxForksPerPage sets maximum amount of forks shown per page
const MaxForksPerPage = 40
var MaxForksPerPage = 40
// Repository settings
var (

View file

@ -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)
})
}