2018-07-21 02:38:15 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2018-07-21 02:38:15 +05:30
|
|
|
|
|
|
|
package markup
|
|
|
|
|
|
|
|
import (
|
2021-04-20 03:55:08 +05:30
|
|
|
"strings"
|
2018-07-21 02:38:15 +05:30
|
|
|
"testing"
|
|
|
|
|
2021-04-20 03:55:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup"
|
|
|
|
|
2018-07-21 02:38:15 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRenderCSV(t *testing.T) {
|
2021-04-20 03:55:08 +05:30
|
|
|
var render Renderer
|
2022-01-20 23:16:10 +05:30
|
|
|
kases := map[string]string{
|
2021-03-30 02:14:28 +05:30
|
|
|
"a": "<table class=\"data-table\"><tr><th class=\"line-num\">1</th><th>a</th></tr></table>",
|
|
|
|
"1,2": "<table class=\"data-table\"><tr><th class=\"line-num\">1</th><th>1</th><th>2</th></tr></table>",
|
|
|
|
"1;2\n3;4": "<table class=\"data-table\"><tr><th class=\"line-num\">1</th><th>1</th><th>2</th></tr><tr><td class=\"line-num\">2</td><td>3</td><td>4</td></tr></table>",
|
|
|
|
"<br/>": "<table class=\"data-table\"><tr><th class=\"line-num\">1</th><th><br/></th></tr></table>",
|
2018-07-21 02:38:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range kases {
|
2021-04-20 03:55:08 +05:30
|
|
|
var buf strings.Builder
|
|
|
|
err := render.Render(&markup.RenderContext{}, strings.NewReader(k), &buf)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, v, buf.String())
|
2018-07-21 02:38:15 +05:30
|
|
|
}
|
|
|
|
}
|