mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 08:32:16 +00:00
Show repo count in blocked users tab (#3601)
Fixes #3595 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3601 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: JakobDev <jakobdev@gmx.de> Co-committed-by: JakobDev <jakobdev@gmx.de>
This commit is contained in:
parent
9bc866124b
commit
d50efa626a
|
@ -10,6 +10,7 @@ import (
|
||||||
|
|
||||||
"code.gitea.io/gitea/models/db"
|
"code.gitea.io/gitea/models/db"
|
||||||
user_model "code.gitea.io/gitea/models/user"
|
user_model "code.gitea.io/gitea/models/user"
|
||||||
|
shared_user "code.gitea.io/gitea/routers/web/shared/user"
|
||||||
"code.gitea.io/gitea/services/context"
|
"code.gitea.io/gitea/services/context"
|
||||||
user_service "code.gitea.io/gitea/services/user"
|
user_service "code.gitea.io/gitea/services/user"
|
||||||
)
|
)
|
||||||
|
@ -27,6 +28,12 @@ func BlockedUsers(ctx *context.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = shared_user.LoadHeaderCount(ctx)
|
||||||
|
if err != nil {
|
||||||
|
ctx.ServerError("LoadHeaderCount", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
ctx.Data["BlockedUsers"] = blockedUsers
|
ctx.Data["BlockedUsers"] = blockedUsers
|
||||||
|
|
||||||
ctx.HTML(http.StatusOK, tplBlockedUsers)
|
ctx.HTML(http.StatusOK, tplBlockedUsers)
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
{{if .RepoCount}}
|
{{if .RepoCount}}
|
||||||
<div class="ui small label">{{.RepoCount}}</div>
|
<div class="ui small label">{{.RepoCount}}</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="repository-count">{{.RepoCount}}</span>
|
||||||
</a>
|
</a>
|
||||||
{{if .CanReadProjects}}
|
{{if .CanReadProjects}}
|
||||||
<a class="{{if .PageIsViewProjects}}active {{end}}item" href="{{$.Org.HomeLink}}/-/projects">
|
<a class="{{if .PageIsViewProjects}}active {{end}}item" href="{{$.Org.HomeLink}}/-/projects">
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
{{if .ProjectCount}}
|
{{if .ProjectCount}}
|
||||||
<div class="ui small label">{{.ProjectCount}}</div>
|
<div class="ui small label">{{.ProjectCount}}</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="project-count">{{.ProjectCount}}</span>
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if and .IsPackageEnabled .CanReadPackages}}
|
{{if and .IsPackageEnabled .CanReadPackages}}
|
||||||
|
@ -31,6 +33,7 @@
|
||||||
<div class="ui small label">{{.NumMembers}}</div>
|
<div class="ui small label">{{.NumMembers}}</div>
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="member-count">{{.NumMembers}}</span>
|
||||||
{{if .IsOrganizationMember}}
|
{{if .IsOrganizationMember}}
|
||||||
<a class="{{if $.PageIsOrgTeams}}active {{end}}item" href="{{$.OrgLink}}/teams">
|
<a class="{{if $.PageIsOrgTeams}}active {{end}}item" href="{{$.OrgLink}}/teams">
|
||||||
{{svg "octicon-people"}} {{ctx.Locale.Tr "org.teams"}}
|
{{svg "octicon-people"}} {{ctx.Locale.Tr "org.teams"}}
|
||||||
|
@ -39,6 +42,7 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="team-count">{{.NumTeams}}</span>
|
||||||
{{if .IsOrganizationOwner}}
|
{{if .IsOrganizationOwner}}
|
||||||
<a id="settings-btn" class="{{if .PageIsOrgSettings}}active {{end}}right item" href="{{.OrgLink}}/settings">
|
<a id="settings-btn" class="{{if .PageIsOrgSettings}}active {{end}}right item" href="{{.OrgLink}}/settings">
|
||||||
{{svg "octicon-tools"}} {{ctx.Locale.Tr "repo.settings"}}
|
{{svg "octicon-tools"}} {{ctx.Locale.Tr "repo.settings"}}
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
{{if .RepoCount}}
|
{{if .RepoCount}}
|
||||||
<div class="ui small label">{{.RepoCount}}</div>
|
<div class="ui small label">{{.RepoCount}}</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="repository-count">{{.RepoCount}}</span>
|
||||||
</a>
|
</a>
|
||||||
{{if or .ContextUser.IsIndividual .CanReadProjects}}
|
{{if or .ContextUser.IsIndividual .CanReadProjects}}
|
||||||
<a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if .PageIsViewProjects}}active {{end}}item">
|
<a href="{{.ContextUser.HomeLink}}/-/projects" class="{{if .PageIsViewProjects}}active {{end}}item">
|
||||||
|
@ -17,6 +18,7 @@
|
||||||
{{if .ProjectCount}}
|
{{if .ProjectCount}}
|
||||||
<div class="ui small label">{{.ProjectCount}}</div>
|
<div class="ui small label">{{.ProjectCount}}</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<span hidden test-name="project-count">{{.ProjectCount}}</span>
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if and .IsPackageEnabled (or .ContextUser.IsIndividual .CanReadPackages)}}
|
{{if and .IsPackageEnabled (or .ContextUser.IsIndividual .CanReadPackages)}}
|
||||||
|
|
167
tests/integration/user_count_test.go
Normal file
167
tests/integration/user_count_test.go
Normal file
|
@ -0,0 +1,167 @@
|
||||||
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package integration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
"strconv"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/models/db"
|
||||||
|
"code.gitea.io/gitea/models/organization"
|
||||||
|
project_model "code.gitea.io/gitea/models/project"
|
||||||
|
repo_model "code.gitea.io/gitea/models/repo"
|
||||||
|
"code.gitea.io/gitea/models/unittest"
|
||||||
|
user_model "code.gitea.io/gitea/models/user"
|
||||||
|
"code.gitea.io/gitea/modules/optional"
|
||||||
|
"code.gitea.io/gitea/tests"
|
||||||
|
|
||||||
|
"github.com/PuerkitoBio/goquery"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
type userCountTest struct {
|
||||||
|
doer *user_model.User
|
||||||
|
user *user_model.User
|
||||||
|
session *TestSession
|
||||||
|
repoCount int64
|
||||||
|
projectCount int64
|
||||||
|
memberCount int64
|
||||||
|
teamCount int64
|
||||||
|
}
|
||||||
|
|
||||||
|
func (countTest *userCountTest) Init(t *testing.T, doerID, userID int64) {
|
||||||
|
countTest.doer = unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: doerID})
|
||||||
|
countTest.user = unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: userID})
|
||||||
|
countTest.session = loginUser(t, countTest.doer.Name)
|
||||||
|
|
||||||
|
var err error
|
||||||
|
|
||||||
|
countTest.repoCount, err = repo_model.CountRepository(db.DefaultContext, &repo_model.SearchRepoOptions{
|
||||||
|
Actor: countTest.doer,
|
||||||
|
OwnerID: countTest.user.ID,
|
||||||
|
Private: true,
|
||||||
|
Collaborate: optional.Some(false),
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
var projectType project_model.Type
|
||||||
|
if countTest.user.IsOrganization() {
|
||||||
|
projectType = project_model.TypeOrganization
|
||||||
|
} else {
|
||||||
|
projectType = project_model.TypeIndividual
|
||||||
|
}
|
||||||
|
countTest.projectCount, err = db.Count[project_model.Project](db.DefaultContext, project_model.SearchOptions{
|
||||||
|
OwnerID: countTest.user.ID,
|
||||||
|
IsClosed: optional.Some(false),
|
||||||
|
Type: projectType,
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
if !countTest.user.IsOrganization() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
org := (*organization.Organization)(countTest.user)
|
||||||
|
|
||||||
|
isMember, err := org.IsOrgMember(db.DefaultContext, countTest.doer.ID)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
countTest.memberCount, err = organization.CountOrgMembers(db.DefaultContext, &organization.FindOrgMembersOpts{
|
||||||
|
OrgID: org.ID,
|
||||||
|
PublicOnly: !isMember,
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
teams, err := org.LoadTeams(db.DefaultContext)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
countTest.teamCount = int64(len(teams))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (countTest *userCountTest) getCount(doc *goquery.Document, name string) (int64, error) {
|
||||||
|
selection := doc.Find(fmt.Sprintf("[test-name=\"%s\"]", name))
|
||||||
|
|
||||||
|
if selection.Length() != 1 {
|
||||||
|
return 0, fmt.Errorf("%s was not found", name)
|
||||||
|
}
|
||||||
|
|
||||||
|
return strconv.ParseInt(selection.Text(), 10, 64)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (countTest *userCountTest) TestPage(t *testing.T, page string, orgLink bool) {
|
||||||
|
t.Run(page, func(t *testing.T) {
|
||||||
|
var userLink string
|
||||||
|
|
||||||
|
if orgLink {
|
||||||
|
userLink = countTest.user.OrganisationLink()
|
||||||
|
} else {
|
||||||
|
userLink = countTest.user.HomeLink()
|
||||||
|
}
|
||||||
|
|
||||||
|
req := NewRequestf(t, "GET", "%s/%s", userLink, page)
|
||||||
|
resp := countTest.session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
||||||
|
|
||||||
|
repoCount, err := countTest.getCount(htmlDoc.doc, "repository-count")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, countTest.repoCount, repoCount)
|
||||||
|
|
||||||
|
projectCount, err := countTest.getCount(htmlDoc.doc, "project-count")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, countTest.projectCount, projectCount)
|
||||||
|
|
||||||
|
if !countTest.user.IsOrganization() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
memberCount, err := countTest.getCount(htmlDoc.doc, "member-count")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, countTest.memberCount, memberCount)
|
||||||
|
|
||||||
|
teamCount, err := countTest.getCount(htmlDoc.doc, "team-count")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, countTest.teamCount, teamCount)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFrontendHeaderCountUser(t *testing.T) {
|
||||||
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
|
||||||
|
countTest := new(userCountTest)
|
||||||
|
countTest.Init(t, 2, 2)
|
||||||
|
|
||||||
|
countTest.TestPage(t, "", false)
|
||||||
|
countTest.TestPage(t, "?tab=repositories", false)
|
||||||
|
countTest.TestPage(t, "-/projects", false)
|
||||||
|
countTest.TestPage(t, "-/packages", false)
|
||||||
|
countTest.TestPage(t, "?tab=activity", false)
|
||||||
|
countTest.TestPage(t, "?tab=stars", false)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFrontendHeaderCountOrg(t *testing.T) {
|
||||||
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
|
||||||
|
countTest := new(userCountTest)
|
||||||
|
countTest.Init(t, 15, 17)
|
||||||
|
|
||||||
|
countTest.TestPage(t, "", false)
|
||||||
|
countTest.TestPage(t, "-/projects", false)
|
||||||
|
countTest.TestPage(t, "-/packages", false)
|
||||||
|
countTest.TestPage(t, "members", true)
|
||||||
|
countTest.TestPage(t, "teams", true)
|
||||||
|
|
||||||
|
countTest.TestPage(t, "settings", true)
|
||||||
|
countTest.TestPage(t, "settings/hooks", true)
|
||||||
|
countTest.TestPage(t, "settings/labels", true)
|
||||||
|
countTest.TestPage(t, "settings/applications", true)
|
||||||
|
countTest.TestPage(t, "settings/packages", true)
|
||||||
|
countTest.TestPage(t, "settings/actions/runners", true)
|
||||||
|
countTest.TestPage(t, "settings/actions/secrets", true)
|
||||||
|
countTest.TestPage(t, "settings/actions/variables", true)
|
||||||
|
countTest.TestPage(t, "settings/blocked_users", true)
|
||||||
|
countTest.TestPage(t, "settings/delete", true)
|
||||||
|
}
|
Loading…
Reference in a new issue