2017-09-21 10:50:14 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2017-09-21 10:50:14 +05:30
|
|
|
|
|
|
|
package markup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2023-03-06 03:29:05 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2021-04-20 03:55:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2017-09-21 10:50:14 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-02-20 18:20:42 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-09-21 10:50:14 +05:30
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
const (
|
|
|
|
AppURL = "http://localhost:3000/"
|
|
|
|
Repo = "gogits/gogs"
|
|
|
|
AppSubURL = AppURL + Repo + "/"
|
|
|
|
)
|
2017-09-21 10:50:14 +05:30
|
|
|
|
|
|
|
func TestRender_StandardLinks(t *testing.T) {
|
|
|
|
setting.AppURL = AppURL
|
|
|
|
setting.AppSubURL = AppSubURL
|
|
|
|
|
|
|
|
test := func(input, expected string) {
|
2021-04-20 03:55:08 +05:30
|
|
|
buffer, err := RenderString(&markup.RenderContext{
|
2023-03-06 03:29:05 +05:30
|
|
|
Ctx: git.DefaultContext,
|
2021-04-20 03:55:08 +05:30
|
|
|
URLPrefix: setting.AppSubURL,
|
|
|
|
}, input)
|
|
|
|
assert.NoError(t, err)
|
2017-09-21 10:50:14 +05:30
|
|
|
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
|
|
|
|
}
|
|
|
|
|
2023-11-10 07:15:13 +05:30
|
|
|
test("[[https://google.com/]]",
|
|
|
|
`<p><a href="https://google.com/">https://google.com/</a></p>`)
|
2017-09-21 10:50:14 +05:30
|
|
|
|
2018-02-20 18:20:42 +05:30
|
|
|
lnk := util.URLJoin(AppSubURL, "WikiPage")
|
2017-09-21 10:50:14 +05:30
|
|
|
test("[[WikiPage][WikiPage]]",
|
2023-11-10 07:15:13 +05:30
|
|
|
`<p><a href="`+lnk+`">WikiPage</a></p>`)
|
2017-09-21 10:50:14 +05:30
|
|
|
}
|
|
|
|
|
2023-09-13 11:14:59 +05:30
|
|
|
func TestRender_Media(t *testing.T) {
|
2017-09-21 10:50:14 +05:30
|
|
|
setting.AppURL = AppURL
|
|
|
|
setting.AppSubURL = AppSubURL
|
|
|
|
|
|
|
|
test := func(input, expected string) {
|
2021-04-20 03:55:08 +05:30
|
|
|
buffer, err := RenderString(&markup.RenderContext{
|
2023-03-06 03:29:05 +05:30
|
|
|
Ctx: git.DefaultContext,
|
2021-04-20 03:55:08 +05:30
|
|
|
URLPrefix: setting.AppSubURL,
|
|
|
|
}, input)
|
|
|
|
assert.NoError(t, err)
|
2017-09-21 10:50:14 +05:30
|
|
|
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
|
|
|
|
}
|
|
|
|
|
|
|
|
url := "../../.images/src/02/train.jpg"
|
2018-02-20 18:20:42 +05:30
|
|
|
result := util.URLJoin(AppSubURL, url)
|
2017-09-21 10:50:14 +05:30
|
|
|
|
2019-10-31 06:36:25 +05:30
|
|
|
test("[[file:"+url+"]]",
|
2023-11-10 07:15:13 +05:30
|
|
|
`<p><img src="`+result+`" alt="`+result+`" /></p>`)
|
2023-09-13 11:14:59 +05:30
|
|
|
|
|
|
|
// With description.
|
|
|
|
test("[[https://example.com][https://example.com/example.svg]]",
|
|
|
|
`<p><a href="https://example.com"><img src="https://example.com/example.svg" alt="https://example.com/example.svg" /></a></p>`)
|
2023-11-10 07:15:13 +05:30
|
|
|
test("[[https://example.com][pre https://example.com/example.svg post]]",
|
|
|
|
`<p><a href="https://example.com">pre <img src="https://example.com/example.svg" alt="https://example.com/example.svg" /> post</a></p>`)
|
2023-09-13 11:14:59 +05:30
|
|
|
test("[[https://example.com][https://example.com/example.mp4]]",
|
2023-11-10 07:15:13 +05:30
|
|
|
`<p><a href="https://example.com"><video src="https://example.com/example.mp4">https://example.com/example.mp4</video></a></p>`)
|
|
|
|
test("[[https://example.com][pre https://example.com/example.mp4 post]]",
|
|
|
|
`<p><a href="https://example.com">pre <video src="https://example.com/example.mp4">https://example.com/example.mp4</video> post</a></p>`)
|
2023-09-13 11:14:59 +05:30
|
|
|
|
|
|
|
// Without description.
|
|
|
|
test("[[https://example.com/example.svg]]",
|
2023-11-10 07:15:13 +05:30
|
|
|
`<p><img src="https://example.com/example.svg" alt="https://example.com/example.svg" /></p>`)
|
2023-09-13 11:14:59 +05:30
|
|
|
test("[[https://example.com/example.mp4]]",
|
2023-11-10 07:15:13 +05:30
|
|
|
`<p><video src="https://example.com/example.mp4">https://example.com/example.mp4</video></p>`)
|
2017-09-21 10:50:14 +05:30
|
|
|
}
|
2021-09-24 18:59:32 +05:30
|
|
|
|
|
|
|
func TestRender_Source(t *testing.T) {
|
|
|
|
setting.AppURL = AppURL
|
|
|
|
setting.AppSubURL = AppSubURL
|
|
|
|
|
|
|
|
test := func(input, expected string) {
|
|
|
|
buffer, err := RenderString(&markup.RenderContext{
|
2023-03-06 03:29:05 +05:30
|
|
|
Ctx: git.DefaultContext,
|
2021-09-24 18:59:32 +05:30
|
|
|
URLPrefix: setting.AppSubURL,
|
|
|
|
}, input)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
|
|
|
|
}
|
|
|
|
|
|
|
|
test(`#+begin_src go
|
|
|
|
// HelloWorld prints "Hello World"
|
|
|
|
func HelloWorld() {
|
|
|
|
fmt.Println("Hello World")
|
|
|
|
}
|
|
|
|
#+end_src
|
|
|
|
`, `<div class="src src-go">
|
2022-09-26 11:20:03 +05:30
|
|
|
<pre><code class="chroma language-go"><span class="c1">// HelloWorld prints "Hello World"
|
|
|
|
</span><span class="c1"></span><span class="kd">func</span> <span class="nf">HelloWorld</span><span class="p">()</span> <span class="p">{</span>
|
|
|
|
<span class="nx">fmt</span><span class="p">.</span><span class="nf">Println</span><span class="p">(</span><span class="s">"Hello World"</span><span class="p">)</span>
|
|
|
|
<span class="p">}</span></code></pre>
|
2021-09-24 18:59:32 +05:30
|
|
|
</div>`)
|
|
|
|
}
|