2020-11-21 03:59:09 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-11-21 03:59:09 +05:30
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-06-13 15:07:59 +05:30
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2020-11-21 03:59:09 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCombineLabelComments(t *testing.T) {
|
2022-01-20 23:16:10 +05:30
|
|
|
kases := []struct {
|
2021-03-05 20:47:32 +05:30
|
|
|
name string
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined []*issues_model.Comment
|
|
|
|
afterCombined []*issues_model.Comment
|
2020-11-21 03:59:09 +05:30
|
|
|
}{
|
|
|
|
{
|
2021-03-05 20:47:32 +05:30
|
|
|
name: "kase 1",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
|
|
|
CreatedUnix: 0,
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{},
|
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-05 20:47:32 +05:30
|
|
|
name: "kase 2",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 70,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
|
|
|
CreatedUnix: 0,
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
|
|
|
CreatedUnix: 70,
|
2022-06-13 15:07:59 +05:30
|
|
|
RemovedLabels: []*issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-05 20:47:32 +05:30
|
|
|
name: "kase 3",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 2,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
|
|
|
CreatedUnix: 0,
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 2,
|
|
|
|
Content: "",
|
|
|
|
CreatedUnix: 0,
|
2022-06-13 15:07:59 +05:30
|
|
|
RemovedLabels: []*issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "test",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-05 20:47:32 +05:30
|
|
|
name: "kase 4",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/backport",
|
|
|
|
},
|
|
|
|
CreatedUnix: 10,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2020-11-21 03:59:09 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
|
|
|
CreatedUnix: 10,
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "kind/backport",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2020-11-21 03:59:09 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-03-05 20:47:32 +05:30
|
|
|
{
|
|
|
|
name: "kase 5",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2021-03-05 20:47:32 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 2,
|
|
|
|
Content: "testtest",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2021-03-05 20:47:32 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeComment,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 2,
|
|
|
|
Content: "testtest",
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-03-05 20:47:32 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
RemovedLabels: []*issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
{
|
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-03-05 20:47:32 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-04 20:21:30 +05:30
|
|
|
{
|
|
|
|
name: "kase 6",
|
2022-06-13 15:07:59 +05:30
|
|
|
beforeCombined: []*issues_model.Comment{
|
2021-11-04 20:21:30 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-11-04 20:21:30 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-11-04 20:21:30 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
Name: "reviewed/confirmed",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-11-04 20:21:30 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-11-04 20:21:30 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
Name: "kind/feature",
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
afterCombined: []*issues_model.Comment{
|
2021-11-04 20:21:30 +05:30
|
|
|
{
|
2022-06-13 15:07:59 +05:30
|
|
|
Type: issues_model.CommentTypeLabel,
|
2021-11-04 20:21:30 +05:30
|
|
|
PosterID: 1,
|
|
|
|
Content: "1",
|
2022-06-13 15:07:59 +05:30
|
|
|
Label: &issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
Name: "kind/bug",
|
|
|
|
},
|
2022-06-13 15:07:59 +05:30
|
|
|
AddedLabels: []*issues_model.Label{
|
2021-11-04 20:21:30 +05:30
|
|
|
{
|
|
|
|
Name: "reviewed/confirmed",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "kind/feature",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
CreatedUnix: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-21 03:59:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
for _, kase := range kases {
|
2021-03-05 20:47:32 +05:30
|
|
|
t.Run(kase.name, func(t *testing.T) {
|
2022-06-13 15:07:59 +05:30
|
|
|
issue := issues_model.Issue{
|
2021-03-05 20:47:32 +05:30
|
|
|
Comments: kase.beforeCombined,
|
|
|
|
}
|
|
|
|
combineLabelComments(&issue)
|
|
|
|
assert.EqualValues(t, kase.afterCombined, issue.Comments)
|
|
|
|
})
|
2020-11-21 03:59:09 +05:30
|
|
|
}
|
|
|
|
}
|