// Copyright 2017 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package markup import ( "os" "strings" "testing" "code.gitea.io/gitea/modules/markup" "code.gitea.io/gitea/modules/setting" "github.com/stretchr/testify/assert" ) func TestMain(m *testing.M) { setting.AppURL = "http://localhost:3000/" setting.IsInTesting = true os.Exit(m.Run()) } func TestRender_StandardLinks(t *testing.T) { test := func(input, expected string) { buffer, err := RenderString(markup.NewTestRenderContext("/relative-path/media/branch/main/"), input) assert.NoError(t, err) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } test("[[https://google.com/]]", `

https://google.com/

`) test("[[ImageLink.svg][The Image Desc]]", `

The Image Desc

`) } func TestRender_InternalLinks(t *testing.T) { test := func(input, expected string) { buffer, err := RenderString(markup.NewTestRenderContext("/relative-path/src/branch/main"), input) assert.NoError(t, err) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } test("[[file:test.org][Test]]", `

Test

`) test("[[./test.org][Test]]", `

Test

`) test("[[test.org][Test]]", `

Test

`) test("[[path/to/test.org][Test]]", `

Test

`) } func TestRender_Media(t *testing.T) { test := func(input, expected string) { buffer, err := RenderString(markup.NewTestRenderContext("./relative-path"), input) assert.NoError(t, err) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } test("[[file:../../.images/src/02/train.jpg]]", `

.images/src/02/train.jpg

`) test("[[file:train.jpg]]", `

relative-path/train.jpg

`) // With description. test("[[https://example.com][https://example.com/example.svg]]", `

https://example.com/example.svg

`) test("[[https://example.com][pre https://example.com/example.svg post]]", `

pre https://example.com/example.svg post

`) test("[[https://example.com][https://example.com/example.mp4]]", `

`) test("[[https://example.com][pre https://example.com/example.mp4 post]]", `

pre post

`) // Without description. test("[[https://example.com/example.svg]]", `

https://example.com/example.svg

`) test("[[https://example.com/example.mp4]]", `

`) // test [[LINK][DESCRIPTION]] syntax with "file:" prefix test(`[[https://example.com/][file:https://example.com/foo%20bar.svg]]`, `

https://example.com/foo%20bar.svg

`) test(`[[file:https://example.com/foo%20bar.svg][Goto Image]]`, `

Goto Image

`) test(`[[file:https://example.com/link][https://example.com/image.jpg]]`, `

https://example.com/image.jpg

`) test(`[[file:https://example.com/link][file:https://example.com/image.jpg]]`, `

https://example.com/image.jpg

`) } func TestRender_Source(t *testing.T) { test := func(input, expected string) { buffer, err := RenderString(markup.NewTestRenderContext(), 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 `, `
// HelloWorld prints "Hello World"
func HelloWorld() {
	fmt.Println("Hello World")
}
`) }