2021-01-15 13:29:32 -07:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-01-15 13:29:32 -07:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2023-09-01 05:26:07 -06:00
|
|
|
"code.gitea.io/gitea/modules/contexttest"
|
2021-01-15 13:29:32 -07:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCheckProjectBoardChangePermissions(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
unittest.PrepareTestEnv(t)
|
2023-09-01 05:26:07 -06:00
|
|
|
ctx, _ := contexttest.MockContext(t, "user2/repo1/projects/1/2")
|
|
|
|
contexttest.LoadUser(t, ctx, 2)
|
|
|
|
contexttest.LoadRepo(t, ctx, 1)
|
2021-01-15 13:29:32 -07:00
|
|
|
ctx.SetParams(":id", "1")
|
|
|
|
ctx.SetParams(":boardID", "2")
|
|
|
|
|
|
|
|
project, board := checkProjectBoardChangePermissions(ctx)
|
|
|
|
assert.NotNil(t, project)
|
|
|
|
assert.NotNil(t, board)
|
|
|
|
assert.False(t, ctx.Written())
|
|
|
|
}
|