aboutsummaryrefslogtreecommitdiffstats
path: root/modules/convert/issue_test.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-02-29 03:49:50 +0100
committerGitHub <noreply@github.com>2020-02-28 23:49:50 -0300
commit7e8cdba18120c4588d1921f07593a9a66eaa1411 (patch)
treed7782277bb558c9cea1ccb262b81298330bb35ba /modules/convert/issue_test.go
parentc32f3da33c38e18a7ed4a8c49de27898c2aa07f8 (diff)
downloadgitea-7e8cdba18120c4588d1921f07593a9a66eaa1411.tar.gz
gitea-7e8cdba18120c4588d1921f07593a9a66eaa1411.zip
[Refactor] move APIFormat() of Issue and Label to convert package (#10423)
* Label: delete .APIFormat() and use convert.ToLabel() * move issue APIFormat too * add missing one * move TEST too * handle error -> return empty APIIssue * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
Diffstat (limited to 'modules/convert/issue_test.go')
-rw-r--r--modules/convert/issue_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/convert/issue_test.go b/modules/convert/issue_test.go
new file mode 100644
index 0000000000..a7286d0766
--- /dev/null
+++ b/modules/convert/issue_test.go
@@ -0,0 +1,24 @@
+// Copyright 2020 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package convert
+
+import (
+ "testing"
+
+ "code.gitea.io/gitea/models"
+ api "code.gitea.io/gitea/modules/structs"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestLabel_ToLabel(t *testing.T) {
+ assert.NoError(t, models.PrepareTestDatabase())
+ label := models.AssertExistsAndLoadBean(t, &models.Label{ID: 1}).(*models.Label)
+ assert.Equal(t, &api.Label{
+ ID: label.ID,
+ Name: label.Name,
+ Color: "abcdef",
+ }, ToLabel(label))
+}