forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't let API add 2 exclusive labels from same scope (go-gitea#27433) (…
…go-gitea#27460) Backport go-gitea#27433 by @JakobDev Fixes go-gitea#27380 Co-authored-by: JakobDev <[email protected]>
- Loading branch information
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package issues_test | ||
|
||
import ( | ||
"testing" | ||
|
||
issues_model "code.gitea.io/gitea/models/issues" | ||
"code.gitea.io/gitea/models/unittest" | ||
user_model "code.gitea.io/gitea/models/user" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestNewIssueLabelsScope(t *testing.T) { | ||
assert.NoError(t, unittest.PrepareTestDatabase()) | ||
|
||
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: 18}) | ||
label1 := unittest.AssertExistsAndLoadBean(t, &issues_model.Label{ID: 7}) | ||
label2 := unittest.AssertExistsAndLoadBean(t, &issues_model.Label{ID: 8}) | ||
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2}) | ||
|
||
assert.NoError(t, issues_model.NewIssueLabels(issue, []*issues_model.Label{label1, label2}, doer)) | ||
|
||
assert.Len(t, issue.Labels, 1) | ||
assert.Equal(t, label2.ID, issue.Labels[0].ID) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters