diff options
author | Denys Konovalov <kontakt@denyskon.de> | 2024-03-27 21:54:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 20:54:32 +0000 |
commit | e5160185ed65fd1c2bcb2fc7dc7e0b5514ddb299 (patch) | |
tree | 445f8d17503819eca709297093832c69ee1830a3 /models/project/board_test.go | |
parent | 4eb86d68233241d53cff1009ecff17ac35efccd4 (diff) | |
download | gitea-e5160185ed65fd1c2bcb2fc7dc7e0b5514ddb299.tar.gz gitea-e5160185ed65fd1c2bcb2fc7dc7e0b5514ddb299.zip |
Add default board to new projects, remove uncategorized pseudo-board (#29874)
On creation of an empty project (no template) a default board will be
created instead of falling back to the uneditable pseudo-board.
Every project now has to have exactly one default boards. As a
consequence, you cannot unset a board as default, instead you have to
set another board as default. Existing projects will be modified using a
cron job, additionally this check will run every midnight by default.
Deleting the default board is not allowed, you have to set another board
as default to do it.
Fixes #29873
Fixes #14679 along the way
Fixes #29853
Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'models/project/board_test.go')
-rw-r--r-- | models/project/board_test.go | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/models/project/board_test.go b/models/project/board_test.go new file mode 100644 index 0000000000..c1c6f0180b --- /dev/null +++ b/models/project/board_test.go @@ -0,0 +1,40 @@ +// Copyright 2020 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package project + +import ( + "testing" + + "code.gitea.io/gitea/models/db" + "code.gitea.io/gitea/models/unittest" + + "github.com/stretchr/testify/assert" +) + +func TestGetDefaultBoard(t *testing.T) { + assert.NoError(t, unittest.PrepareTestDatabase()) + + projectWithoutDefault, err := GetProjectByID(db.DefaultContext, 5) + assert.NoError(t, err) + + // check if default board was added + board, err := projectWithoutDefault.getDefaultBoard(db.DefaultContext) + assert.NoError(t, err) + assert.Equal(t, int64(5), board.ProjectID) + assert.Equal(t, "Uncategorized", board.Title) + + projectWithMultipleDefaults, err := GetProjectByID(db.DefaultContext, 6) + assert.NoError(t, err) + + // check if multiple defaults were removed + board, err = projectWithMultipleDefaults.getDefaultBoard(db.DefaultContext) + assert.NoError(t, err) + assert.Equal(t, int64(6), board.ProjectID) + assert.Equal(t, int64(8), board.ID) + + board, err = GetBoard(db.DefaultContext, 9) + assert.NoError(t, err) + assert.Equal(t, int64(6), board.ProjectID) + assert.False(t, board.Default) +} |