mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
894d9b2836
Since `modules/context` has to depend on `models` and many other packages, it should be moved from `modules/context` to `services/context` according to design principles. There is no logic code change on this PR, only move packages. - Move `code.gitea.io/gitea/modules/context` to `code.gitea.io/gitea/services/context` - Move `code.gitea.io/gitea/modules/contexttest` to `code.gitea.io/gitea/services/contexttest` because of depending on context - Move `code.gitea.io/gitea/modules/upload` to `code.gitea.io/gitea/services/context/upload` because of depending on context (cherry picked from commit 29f149bd9f517225a3c9f1ca3fb0a7b5325af696) Conflicts: routers/api/packages/alpine/alpine.go routers/api/v1/repo/issue_reaction.go routers/install/install.go routers/web/admin/config.go routers/web/passkey.go routers/web/repo/search.go routers/web/repo/setting/default_branch.go routers/web/user/home.go routers/web/user/profile.go tests/integration/editor_test.go tests/integration/integration_test.go tests/integration/mirror_push_test.go trivial context conflicts also modified all other occurrences in Forgejo specific files
172 lines
5.2 KiB
Go
172 lines
5.2 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
"testing"
|
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/modules/repository"
|
|
"code.gitea.io/gitea/modules/test"
|
|
"code.gitea.io/gitea/modules/web"
|
|
"code.gitea.io/gitea/services/contexttest"
|
|
"code.gitea.io/gitea/services/forms"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func int64SliceToCommaSeparated(a []int64) string {
|
|
s := ""
|
|
for i, n := range a {
|
|
if i > 0 {
|
|
s += ","
|
|
}
|
|
s += strconv.Itoa(int(n))
|
|
}
|
|
return s
|
|
}
|
|
|
|
func TestInitializeLabels(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
assert.NoError(t, repository.LoadRepoConfig())
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/labels/initialize")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 2)
|
|
web.SetForm(ctx, &forms.InitializeLabelsForm{TemplateName: "Default"})
|
|
InitializeLabels(ctx)
|
|
assert.EqualValues(t, http.StatusSeeOther, ctx.Resp.Status())
|
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Label{
|
|
RepoID: 2,
|
|
Name: "enhancement",
|
|
Color: "#84b6eb",
|
|
})
|
|
assert.Equal(t, "/user2/repo2/labels", test.RedirectURL(ctx.Resp))
|
|
}
|
|
|
|
func TestRetrieveLabels(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
for _, testCase := range []struct {
|
|
RepoID int64
|
|
Sort string
|
|
ExpectedLabelIDs []int64
|
|
}{
|
|
{1, "", []int64{1, 2}},
|
|
{1, "leastissues", []int64{2, 1}},
|
|
{2, "", []int64{}},
|
|
} {
|
|
ctx, _ := contexttest.MockContext(t, "user/repo/issues")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, testCase.RepoID)
|
|
ctx.Req.Form.Set("sort", testCase.Sort)
|
|
RetrieveLabels(ctx)
|
|
assert.False(t, ctx.Written())
|
|
labels, ok := ctx.Data["Labels"].([]*issues_model.Label)
|
|
assert.True(t, ok)
|
|
if assert.Len(t, labels, len(testCase.ExpectedLabelIDs)) {
|
|
for i, label := range labels {
|
|
assert.EqualValues(t, testCase.ExpectedLabelIDs[i], label.ID)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestNewLabel(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/labels/edit")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
web.SetForm(ctx, &forms.CreateLabelForm{
|
|
Title: "newlabel",
|
|
Color: "#abcdef",
|
|
})
|
|
NewLabel(ctx)
|
|
assert.EqualValues(t, http.StatusSeeOther, ctx.Resp.Status())
|
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Label{
|
|
Name: "newlabel",
|
|
Color: "#abcdef",
|
|
})
|
|
assert.Equal(t, "/user2/repo1/labels", test.RedirectURL(ctx.Resp))
|
|
}
|
|
|
|
func TestUpdateLabel(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/labels/edit")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
web.SetForm(ctx, &forms.CreateLabelForm{
|
|
ID: 2,
|
|
Title: "newnameforlabel",
|
|
Color: "#abcdef",
|
|
IsArchived: true,
|
|
})
|
|
UpdateLabel(ctx)
|
|
assert.EqualValues(t, http.StatusSeeOther, ctx.Resp.Status())
|
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Label{
|
|
ID: 2,
|
|
Name: "newnameforlabel",
|
|
Color: "#abcdef",
|
|
})
|
|
assert.Equal(t, "/user2/repo1/labels", test.RedirectURL(ctx.Resp))
|
|
}
|
|
|
|
func TestDeleteLabel(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/labels/delete")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
ctx.Req.Form.Set("id", "2")
|
|
DeleteLabel(ctx)
|
|
assert.EqualValues(t, http.StatusOK, ctx.Resp.Status())
|
|
unittest.AssertNotExistsBean(t, &issues_model.Label{ID: 2})
|
|
unittest.AssertNotExistsBean(t, &issues_model.IssueLabel{LabelID: 2})
|
|
assert.EqualValues(t, ctx.Tr("repo.issues.label_deletion_success"), ctx.Flash.SuccessMsg)
|
|
}
|
|
|
|
func TestUpdateIssueLabel_Clear(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/issues/labels")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
ctx.Req.Form.Set("issue_ids", "1,3")
|
|
ctx.Req.Form.Set("action", "clear")
|
|
UpdateIssueLabel(ctx)
|
|
assert.EqualValues(t, http.StatusOK, ctx.Resp.Status())
|
|
unittest.AssertNotExistsBean(t, &issues_model.IssueLabel{IssueID: 1})
|
|
unittest.AssertNotExistsBean(t, &issues_model.IssueLabel{IssueID: 3})
|
|
unittest.CheckConsistencyFor(t, &issues_model.Label{})
|
|
}
|
|
|
|
func TestUpdateIssueLabel_Toggle(t *testing.T) {
|
|
for _, testCase := range []struct {
|
|
Action string
|
|
IssueIDs []int64
|
|
LabelID int64
|
|
ExpectedAdd bool // whether we expect the label to be added to the issues
|
|
}{
|
|
{"attach", []int64{1, 3}, 1, true},
|
|
{"detach", []int64{1, 3}, 1, false},
|
|
{"toggle", []int64{1, 3}, 1, false},
|
|
{"toggle", []int64{1, 2}, 2, true},
|
|
} {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/issues/labels")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
ctx.Req.Form.Set("issue_ids", int64SliceToCommaSeparated(testCase.IssueIDs))
|
|
ctx.Req.Form.Set("action", testCase.Action)
|
|
ctx.Req.Form.Set("id", strconv.Itoa(int(testCase.LabelID)))
|
|
UpdateIssueLabel(ctx)
|
|
assert.EqualValues(t, http.StatusOK, ctx.Resp.Status())
|
|
for _, issueID := range testCase.IssueIDs {
|
|
unittest.AssertExistsIf(t, testCase.ExpectedAdd, &issues_model.IssueLabel{
|
|
IssueID: issueID,
|
|
LabelID: testCase.LabelID,
|
|
})
|
|
}
|
|
unittest.CheckConsistencyFor(t, &issues_model.Label{})
|
|
}
|
|
}
|