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