// Copyright 2017 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 markup_test import ( "strings" "testing" "code.gitea.io/gitea/modules/emoji" . "code.gitea.io/gitea/modules/markup" "code.gitea.io/gitea/modules/markup/markdown" "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" "github.com/stretchr/testify/assert" ) var localMetas = map[string]string{ "user": "gogits", "repo": "gogs", "repoPath": "../../integrations/gitea-repositories-meta/user13/repo11.git/", } func TestRender_Commits(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL test := func(input, expected string) { buffer := RenderString(".md", input, setting.AppSubURL, localMetas) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } var sha = "65f1bf27bc3bf70f64657658635e66094edbcb4d" var commit = util.URLJoin(AppSubURL, "commit", sha) var subtree = util.URLJoin(commit, "src") var tree = strings.ReplaceAll(subtree, "/commit/", "/tree/") test(sha, `

65f1bf27bc

`) test(sha[:7], `

65f1bf2

`) test(sha[:39], `

65f1bf27bc

`) test(commit, `

65f1bf27bc

`) test(tree, `

65f1bf27bc/src

`) test("commit "+sha, `

commit 65f1bf27bc

`) test("/home/gitea/"+sha, "

/home/gitea/"+sha+"

") test("deadbeef", `

deadbeef

`) test("d27ace93", `

d27ace93

`) test(sha[:14]+".x", `

`+sha[:14]+`.x

`) expected14 := `` + sha[:10] + `` test(sha[:14]+".", `

`+expected14+`.

`) test(sha[:14]+",", `

`+expected14+`,

`) test("["+sha[:14]+"]", `

[`+expected14+`]

`) } func TestRender_CrossReferences(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL test := func(input, expected string) { buffer := RenderString("a.md", input, setting.AppSubURL, localMetas) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } test( "gogits/gogs#12345", `

gogits/gogs#12345

`) test( "go-gitea/gitea#12345", `

go-gitea/gitea#12345

`) test( "/home/gitea/go-gitea/gitea#12345", `

/home/gitea/go-gitea/gitea#12345

`) } func TestMisc_IsSameDomain(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL var sha = "b6dd6210eaebc915fd5be5579c58cce4da2e2579" var commit = util.URLJoin(AppSubURL, "commit", sha) assert.True(t, IsSameDomain(commit)) assert.False(t, IsSameDomain("http://google.com/ncr")) assert.False(t, IsSameDomain("favicon.ico")) } func TestRender_links(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL test := func(input, expected string) { buffer := RenderString("a.md", input, setting.AppSubURL, nil) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } // Text that should be turned into URL defaultCustom := setting.Markdown.CustomURLSchemes setting.Markdown.CustomURLSchemes = []string{"ftp", "magnet"} ReplaceSanitizer() CustomLinkURLSchemes(setting.Markdown.CustomURLSchemes) test( "https://www.example.com", `

https://www.example.com

`) test( "http://www.example.com", `

http://www.example.com

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

https://example.com

`) test( "http://example.com", `

http://example.com

`) test( "http://foo.com/blah_blah", `

http://foo.com/blah_blah

`) test( "http://foo.com/blah_blah/", `

http://foo.com/blah_blah/

`) test( "http://www.example.com/wpstyle/?p=364", `

http://www.example.com/wpstyle/?p=364

`) test( "https://www.example.com/foo/?bar=baz&inga=42&quux", `

https://www.example.com/foo/?bar=baz&inga=42&quux

`) test( "http://142.42.1.1/", `

http://142.42.1.1/

`) test( "https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd", `

https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd

`) test( "https://en.wikipedia.org/wiki/URL_(disambiguation)", `

https://en.wikipedia.org/wiki/URL_(disambiguation)

`) test( "https://foo_bar.example.com/", `

https://foo_bar.example.com/

`) test( "https://stackoverflow.com/questions/2896191/what-is-go-used-fore", `

https://stackoverflow.com/questions/2896191/what-is-go-used-fore

`) test( "https://username:password@gitea.com", `

https://username:password@gitea.com

`) test( "ftp://gitea.com/file.txt", `

ftp://gitea.com/file.txt

`) test( "magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download", `

magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download

`) // Test that should *not* be turned into URL test( "www.example.com", `

www.example.com

`) test( "example.com", `

example.com

`) test( "test.example.com", `

test.example.com

`) test( "http://", `

http://

`) test( "https://", `

https://

`) test( "://", `

://

`) test( "www", `

www

`) test( "ftps://gitea.com", `

ftps://gitea.com

`) // Restore previous settings setting.Markdown.CustomURLSchemes = defaultCustom ReplaceSanitizer() CustomLinkURLSchemes(setting.Markdown.CustomURLSchemes) } func TestRender_email(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL test := func(input, expected string) { buffer := RenderString("a.md", input, setting.AppSubURL, nil) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } // Text that should be turned into email link test( "info@gitea.com", `

info@gitea.com

`) test( "(info@gitea.com)", `

(info@gitea.com)

`) test( "[info@gitea.com]", `

[info@gitea.com]

`) test( "info@gitea.com.", `

info@gitea.com.

`) test( "firstname+lastname@gitea.com", `

firstname+lastname@gitea.com

`) test( "send email to info@gitea.co.uk.", `

send email to info@gitea.co.uk.

`) // Test that should *not* be turned into email links test( "\"info@gitea.com\"", `

"info@gitea.com"

`) test( "/home/gitea/mailstore/info@gitea/com", `

/home/gitea/mailstore/info@gitea/com

`) test( "git@try.gitea.io:go-gitea/gitea.git", `

git@try.gitea.io:go-gitea/gitea.git

`) test( "gitea@3", `

gitea@3

`) test( "gitea@gmail.c", `

gitea@gmail.c

`) test( "email@domain@domain.com", `

email@domain@domain.com

`) test( "email@domain..com", `

email@domain..com

`) } func TestRender_emoji(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL setting.StaticURLPrefix = AppURL test := func(input, expected string) { expected = strings.ReplaceAll(expected, "&", "&") buffer := RenderString("a.md", input, setting.AppSubURL, nil) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) } // Make sure we can successfully match every emoji in our dataset with regex for i := range emoji.GemojiData { test( emoji.GemojiData[i].Emoji, `

`+emoji.GemojiData[i].Emoji+`

`) } for i := range emoji.GemojiData { test( ":"+emoji.GemojiData[i].Aliases[0]+":", `

`+emoji.GemojiData[i].Emoji+`

`) } //Text that should be turned into or recognized as emoji test( ":gitea:", `

:gitea:

`) test( "Some text with πŸ˜„ in the middle", `

Some text with πŸ˜„ in the middle

`) test( "Some text with :smile: in the middle", `

Some text with πŸ˜„ in the middle

`) test( "Some text with πŸ˜„πŸ˜„ 2 emoji next to each other", `

Some text with πŸ˜„πŸ˜„ 2 emoji next to each other

`) test( "😎πŸ€ͺπŸ”πŸ€‘β“", `

😎πŸ€ͺπŸ”πŸ€‘β“

`) // should match nothing test( "2001:0db8:85a3:0000:0000:8a2e:0370:7334", `

2001:0db8:85a3:0000:0000:8a2e:0370:7334

`) test( ":not exist:", `

:not exist:

`) } func TestRender_ShortLinks(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL tree := util.URLJoin(AppSubURL, "src", "master") test := func(input, expected, expectedWiki string) { buffer := markdown.RenderString(input, tree, nil) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer)) buffer = markdown.RenderWiki([]byte(input), setting.AppSubURL, localMetas) assert.Equal(t, strings.TrimSpace(expectedWiki), strings.TrimSpace(buffer)) } rawtree := util.URLJoin(AppSubURL, "raw", "master") url := util.URLJoin(tree, "Link") otherURL := util.URLJoin(tree, "Other-Link") encodedURL := util.URLJoin(tree, "Link%3F") imgurl := util.URLJoin(rawtree, "Link.jpg") otherImgurl := util.URLJoin(rawtree, "Link+Other.jpg") encodedImgurl := util.URLJoin(rawtree, "Link+%23.jpg") notencodedImgurl := util.URLJoin(rawtree, "some", "path", "Link+#.jpg") urlWiki := util.URLJoin(AppSubURL, "wiki", "Link") otherURLWiki := util.URLJoin(AppSubURL, "wiki", "Other-Link") encodedURLWiki := util.URLJoin(AppSubURL, "wiki", "Link%3F") imgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link.jpg") otherImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+Other.jpg") encodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+%23.jpg") notencodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "some", "path", "Link+#.jpg") favicon := "http://google.com/favicon.ico" test( "[[Link]]", `

Link

`, `

Link

`) test( "[[Link.jpg]]", `

Link.jpg

`, `

Link.jpg

`) test( "[["+favicon+"]]", `

`+favicon+`

`, `

`+favicon+`

`) test( "[[Name|Link]]", `

Name

`, `

Name

`) test( "[[Name|Link.jpg]]", `

Name

`, `

Name

`) test( "[[Name|Link.jpg|alt=AltName]]", `

AltName

`, `

AltName

`) test( "[[Name|Link.jpg|title=Title]]", `

Title

`, `

Title

`) test( "[[Name|Link.jpg|alt=AltName|title=Title]]", `

AltName

`, `

AltName

`) test( "[[Name|Link.jpg|alt=\"AltName\"|title='Title']]", `

AltName

`, `

AltName

`) test( "[[Name|Link Other.jpg|alt=\"AltName\"|title='Title']]", `

AltName

`, `

AltName

`) test( "[[Link]] [[Other Link]]", `

Link Other Link

`, `

Link Other Link

`) test( "[[Link?]]", `

Link?

`, `

Link?

`) test( "[[Link]] [[Other Link]] [[Link?]]", `

Link Other Link Link?

`, `

Link Other Link Link?

`) test( "[[Link #.jpg]]", `

Link #.jpg

`, `

Link #.jpg

`) test( "[[Name|Link #.jpg|alt=\"AltName\"|title='Title']]", `

AltName

`, `

AltName

`) test( "[[some/path/Link #.jpg]]", `

some/path/Link #.jpg

`, `

some/path/Link #.jpg

`) test( "

[[foobar]]

", `

[[foobar]]

`, `

[[foobar]]

`) } func Test_ParseClusterFuzz(t *testing.T) { setting.AppURL = AppURL setting.AppSubURL = AppSubURL var localMetas = map[string]string{ "user": "go-gitea", "repo": "gitea", } data := "
` // func PostProcess(rawHTML []byte, urlPrefix string, metas map[string]string, isWikiMarkdown bool) ([]byte, error) res, err := PostProcess([]byte(data), "https://example.com", localMetas, false) assert.NoError(t, err) assert.Equal(t, data, string(res)) } func BenchmarkEmojiPostprocess(b *testing.B) { data := "πŸ₯° " for len(data) < 1<<16 { data += data } b.ResetTimer() for i := 0; i < b.N; i++ { _, err := PostProcess( []byte(data), "https://example.com", localMetas, false) assert.NoError(b, err) } }