2021-01-15 20:29:32 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-01-15 20:29:32 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/contexttest"
|
2021-01-15 20:29:32 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2024-05-27 08:59:54 +00:00
|
|
|
func TestCheckProjectColumnChangePermissions(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
unittest.PrepareTestEnv(t)
|
2023-09-01 11:26:07 +00:00
|
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/projects/1/2")
|
|
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
|
|
contexttest.LoadRepo(t, ctx, 1)
|
2024-06-18 22:32:45 +00:00
|
|
|
ctx.SetPathParam(":id", "1")
|
|
|
|
ctx.SetPathParam(":columnID", "2")
|
2021-01-15 20:29:32 +00:00
|
|
|
|
2024-05-27 08:59:54 +00:00
|
|
|
project, column := checkProjectColumnChangePermissions(ctx)
|
2021-01-15 20:29:32 +00:00
|
|
|
assert.NotNil(t, project)
|
2024-05-27 08:59:54 +00:00
|
|
|
assert.NotNil(t, column)
|
2021-01-15 20:29:32 +00:00
|
|
|
assert.False(t, ctx.Written())
|
|
|
|
}
|