c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package org_test
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/unittest"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/web"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/routers/web/org"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/services/contexttest"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/services/forms"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCheckProjectColumnChangePermissions(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user2/-/projects/4/4")
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
ctx.ContextUser = ctx.Doer // user2
|
|
ctx.SetPathParam("id", "4")
|
|
ctx.SetPathParam("columnID", "4")
|
|
|
|
project, column := org.CheckProjectColumnChangePermissions(ctx)
|
|
assert.NotNil(t, project)
|
|
assert.NotNil(t, column)
|
|
assert.False(t, ctx.Written())
|
|
}
|
|
|
|
func TestChangeProjectStatusRejectsForeignProjects(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
// project 4 is owned by user2 not user1
|
|
ctx, _ := contexttest.MockContext(t, "user1/-/projects/4/close")
|
|
contexttest.LoadUser(t, ctx, 1)
|
|
ctx.ContextUser = ctx.Doer
|
|
ctx.SetPathParam("action", "close")
|
|
ctx.SetPathParam("id", "4")
|
|
|
|
org.ChangeProjectStatus(ctx)
|
|
|
|
assert.Equal(t, http.StatusNotFound, ctx.Resp.WrittenStatus())
|
|
}
|
|
|
|
func TestAddColumnToProjectPostRejectsForeignProjects(t *testing.T) {
|
|
unittest.PrepareTestEnv(t)
|
|
ctx, _ := contexttest.MockContext(t, "user1/-/projects/4/columns/new")
|
|
contexttest.LoadUser(t, ctx, 1)
|
|
ctx.ContextUser = ctx.Doer
|
|
ctx.SetPathParam("id", "4")
|
|
web.SetForm(ctx, &forms.EditProjectColumnForm{Title: "foreign"})
|
|
|
|
org.AddColumnToProjectPost(ctx)
|
|
|
|
assert.Equal(t, http.StatusNotFound, ctx.Resp.WrittenStatus())
|
|
}
|