2020-09-13 03:48:47 +02:00
|
|
|
// 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 markdown
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-09-02 09:58:49 +02:00
|
|
|
"strings"
|
2020-09-13 03:48:47 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2022-09-02 09:58:49 +02:00
|
|
|
func validateMetadata(it structs.IssueTemplate) bool {
|
|
|
|
/*
|
|
|
|
A legacy to keep the unit tests working.
|
|
|
|
Copied from the method "func (it IssueTemplate) Valid() bool", the original method has been removed.
|
|
|
|
Because it becomes quite complicated to validate an issue template which is support yaml form now.
|
|
|
|
The new way to validate an issue template is to call the Validate in modules/issue/template,
|
|
|
|
*/
|
|
|
|
return strings.TrimSpace(it.Name) != "" && strings.TrimSpace(it.About) != ""
|
|
|
|
}
|
|
|
|
|
2020-09-13 03:48:47 +02:00
|
|
|
func TestExtractMetadata(t *testing.T) {
|
|
|
|
t.Run("ValidFrontAndBody", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
body, err := ExtractMetadata(fmt.Sprintf("%s\n%s\n%s\n%s", sepTest, frontTest, sepTest, bodyTest), &meta)
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 07:27:09 +02:00
|
|
|
assert.Equal(t, bodyTest, body)
|
2020-09-13 03:48:47 +02:00
|
|
|
assert.Equal(t, metaTest, meta)
|
2022-09-02 09:58:49 +02:00
|
|
|
assert.True(t, validateMetadata(meta))
|
2020-09-13 03:48:47 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoFirstSeparator", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
_, err := ExtractMetadata(fmt.Sprintf("%s\n%s\n%s", frontTest, sepTest, bodyTest), &meta)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoLastSeparator", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
_, err := ExtractMetadata(fmt.Sprintf("%s\n%s\n%s", sepTest, frontTest, bodyTest), &meta)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoBody", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
body, err := ExtractMetadata(fmt.Sprintf("%s\n%s\n%s", sepTest, frontTest, sepTest), &meta)
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 07:27:09 +02:00
|
|
|
assert.Equal(t, "", body)
|
2020-09-13 03:48:47 +02:00
|
|
|
assert.Equal(t, metaTest, meta)
|
2022-09-02 09:58:49 +02:00
|
|
|
assert.True(t, validateMetadata(meta))
|
2020-09-13 03:48:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-13 18:33:37 +02:00
|
|
|
func TestExtractMetadataBytes(t *testing.T) {
|
|
|
|
t.Run("ValidFrontAndBody", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
body, err := ExtractMetadataBytes([]byte(fmt.Sprintf("%s\n%s\n%s\n%s", sepTest, frontTest, sepTest, bodyTest)), &meta)
|
|
|
|
assert.NoError(t, err)
|
2022-10-05 20:55:36 +02:00
|
|
|
assert.Equal(t, bodyTest, string(body))
|
2022-09-13 18:33:37 +02:00
|
|
|
assert.Equal(t, metaTest, meta)
|
|
|
|
assert.True(t, validateMetadata(meta))
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoFirstSeparator", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
_, err := ExtractMetadataBytes([]byte(fmt.Sprintf("%s\n%s\n%s", frontTest, sepTest, bodyTest)), &meta)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoLastSeparator", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
_, err := ExtractMetadataBytes([]byte(fmt.Sprintf("%s\n%s\n%s", sepTest, frontTest, bodyTest)), &meta)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("NoBody", func(t *testing.T) {
|
|
|
|
var meta structs.IssueTemplate
|
|
|
|
body, err := ExtractMetadataBytes([]byte(fmt.Sprintf("%s\n%s\n%s", sepTest, frontTest, sepTest)), &meta)
|
|
|
|
assert.NoError(t, err)
|
2022-10-05 20:55:36 +02:00
|
|
|
assert.Equal(t, "", string(body))
|
2022-09-13 18:33:37 +02:00
|
|
|
assert.Equal(t, metaTest, meta)
|
|
|
|
assert.True(t, validateMetadata(meta))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-13 03:48:47 +02:00
|
|
|
var (
|
|
|
|
sepTest = "-----"
|
|
|
|
frontTest = `name: Test
|
|
|
|
about: "A Test"
|
|
|
|
title: "Test Title"
|
|
|
|
labels:
|
|
|
|
- bug
|
|
|
|
- "test label"`
|
|
|
|
bodyTest = "This is the body"
|
|
|
|
metaTest = structs.IssueTemplate{
|
|
|
|
Name: "Test",
|
|
|
|
About: "A Test",
|
|
|
|
Title: "Test Title",
|
|
|
|
Labels: []string{"bug", "test label"},
|
|
|
|
}
|
|
|
|
)
|