2017-09-16 22:47:57 +05:30
|
|
|
// 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/markup"
|
2018-02-27 12:39:18 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2017-09-16 22:47:57 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-02-20 18:20:42 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-09-16 22:47:57 +05:30
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRender_Commits(t *testing.T) {
|
|
|
|
setting.AppURL = AppURL
|
|
|
|
setting.AppSubURL = AppSubURL
|
|
|
|
|
|
|
|
test := func(input, expected string) {
|
|
|
|
buffer := RenderString(".md", input, setting.AppSubURL, nil)
|
|
|
|
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(string(buffer)))
|
|
|
|
}
|
|
|
|
|
|
|
|
var sha = "b6dd6210eaebc915fd5be5579c58cce4da2e2579"
|
2018-02-20 18:20:42 +05:30
|
|
|
var commit = util.URLJoin(AppSubURL, "commit", sha)
|
|
|
|
var subtree = util.URLJoin(commit, "src")
|
2017-09-16 22:47:57 +05:30
|
|
|
var tree = strings.Replace(subtree, "/commit/", "/tree/", -1)
|
|
|
|
|
|
|
|
test(sha, `<p><a href="`+commit+`" rel="nofollow">b6dd6210ea</a></p>`)
|
|
|
|
test(sha[:7], `<p><a href="`+commit[:len(commit)-(40-7)]+`" rel="nofollow">b6dd621</a></p>`)
|
|
|
|
test(sha[:39], `<p><a href="`+commit[:len(commit)-(40-39)]+`" rel="nofollow">b6dd6210ea</a></p>`)
|
|
|
|
test(commit, `<p><a href="`+commit+`" rel="nofollow">b6dd6210ea</a></p>`)
|
2018-02-27 12:39:18 +05:30
|
|
|
test(tree, `<p><a href="`+tree+`" rel="nofollow">b6dd6210ea/src</a></p>`)
|
2017-09-16 22:47:57 +05:30
|
|
|
test("commit "+sha, `<p>commit <a href="`+commit+`" rel="nofollow">b6dd6210ea</a></p>`)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRender_CrossReferences(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(string(buffer)))
|
|
|
|
}
|
|
|
|
|
|
|
|
test(
|
|
|
|
"gogits/gogs#12345",
|
2018-02-20 18:20:42 +05:30
|
|
|
`<p><a href="`+util.URLJoin(AppURL, "gogits", "gogs", "issues", "12345")+`" rel="nofollow">gogits/gogs#12345</a></p>`)
|
2018-01-27 18:03:32 +05:30
|
|
|
test(
|
|
|
|
"go-gitea/gitea#12345",
|
2018-02-20 18:20:42 +05:30
|
|
|
`<p><a href="`+util.URLJoin(AppURL, "go-gitea", "gitea", "issues", "12345")+`" rel="nofollow">go-gitea/gitea#12345</a></p>`)
|
2017-09-16 22:47:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func TestMisc_IsSameDomain(t *testing.T) {
|
|
|
|
setting.AppURL = AppURL
|
|
|
|
setting.AppSubURL = AppSubURL
|
|
|
|
|
|
|
|
var sha = "b6dd6210eaebc915fd5be5579c58cce4da2e2579"
|
2018-02-20 18:20:42 +05:30
|
|
|
var commit = util.URLJoin(AppSubURL, "commit", sha)
|
2017-09-16 22:47:57 +05:30
|
|
|
|
|
|
|
assert.True(t, IsSameDomain(commit))
|
|
|
|
assert.False(t, IsSameDomain("http://google.com/ncr"))
|
|
|
|
assert.False(t, IsSameDomain("favicon.ico"))
|
|
|
|
}
|
2018-02-27 12:39:18 +05:30
|
|
|
|
|
|
|
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(string(buffer)))
|
|
|
|
buffer = markdown.RenderWiki([]byte(input), setting.AppSubURL, nil)
|
|
|
|
assert.Equal(t, strings.TrimSpace(expectedWiki), strings.TrimSpace(string(buffer)))
|
|
|
|
}
|
|
|
|
|
|
|
|
rawtree := util.URLJoin(AppSubURL, "raw", "master")
|
|
|
|
url := util.URLJoin(tree, "Link")
|
2018-03-06 00:09:12 +05:30
|
|
|
otherURL := util.URLJoin(tree, "Other-Link")
|
2018-06-15 18:12:49 +05:30
|
|
|
encodedURL := util.URLJoin(tree, "Link%3F")
|
2018-02-27 12:39:18 +05:30
|
|
|
imgurl := util.URLJoin(rawtree, "Link.jpg")
|
2018-03-06 00:09:12 +05:30
|
|
|
otherImgurl := util.URLJoin(rawtree, "Link+Other.jpg")
|
2018-06-15 18:12:49 +05:30
|
|
|
encodedImgurl := util.URLJoin(rawtree, "Link+%23.jpg")
|
|
|
|
notencodedImgurl := util.URLJoin(rawtree, "some", "path", "Link+#.jpg")
|
2018-02-27 12:39:18 +05:30
|
|
|
urlWiki := util.URLJoin(AppSubURL, "wiki", "Link")
|
2018-03-06 00:09:12 +05:30
|
|
|
otherURLWiki := util.URLJoin(AppSubURL, "wiki", "Other-Link")
|
2018-06-15 18:12:49 +05:30
|
|
|
encodedURLWiki := util.URLJoin(AppSubURL, "wiki", "Link%3F")
|
2018-02-27 12:39:18 +05:30
|
|
|
imgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link.jpg")
|
2018-03-06 00:09:12 +05:30
|
|
|
otherImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+Other.jpg")
|
2018-06-15 18:12:49 +05:30
|
|
|
encodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+%23.jpg")
|
|
|
|
notencodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "some", "path", "Link+#.jpg")
|
2018-02-27 12:39:18 +05:30
|
|
|
favicon := "http://google.com/favicon.ico"
|
|
|
|
|
|
|
|
test(
|
|
|
|
"[[Link]]",
|
|
|
|
`<p><a href="`+url+`" rel="nofollow">Link</a></p>`,
|
|
|
|
`<p><a href="`+urlWiki+`" rel="nofollow">Link</a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Link.jpg]]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Link.jpg" alt="Link.jpg"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Link.jpg" alt="Link.jpg"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[["+favicon+"]]",
|
|
|
|
`<p><a href="`+favicon+`" rel="nofollow"><img src="`+favicon+`" title="favicon.ico"/></a></p>`,
|
|
|
|
`<p><a href="`+favicon+`" rel="nofollow"><img src="`+favicon+`" title="favicon.ico"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link]]",
|
|
|
|
`<p><a href="`+url+`" rel="nofollow">Name</a></p>`,
|
|
|
|
`<p><a href="`+urlWiki+`" rel="nofollow">Name</a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link.jpg]]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Name" alt="Name"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Name" alt="Name"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link.jpg|alt=AltName]]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="AltName" alt="AltName"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="AltName" alt="AltName"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link.jpg|title=Title]]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="Title"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="Title"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link.jpg|alt=AltName|title=Title]]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="AltName"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link.jpg|alt=\"AltName\"|title='Title']]",
|
|
|
|
`<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="AltName"/></a></p>`,
|
|
|
|
`<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
|
|
|
|
test(
|
2018-03-06 00:09:12 +05:30
|
|
|
"[[Name|Link Other.jpg|alt=\"AltName\"|title='Title']]",
|
|
|
|
`<p><a href="`+otherImgurl+`" rel="nofollow"><img src="`+otherImgurl+`" title="Title" alt="AltName"/></a></p>`,
|
|
|
|
`<p><a href="`+otherImgurlWiki+`" rel="nofollow"><img src="`+otherImgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Link]] [[Other Link]]",
|
|
|
|
`<p><a href="`+url+`" rel="nofollow">Link</a> <a href="`+otherURL+`" rel="nofollow">Other Link</a></p>`,
|
|
|
|
`<p><a href="`+urlWiki+`" rel="nofollow">Link</a> <a href="`+otherURLWiki+`" rel="nofollow">Other Link</a></p>`)
|
2018-06-15 18:12:49 +05:30
|
|
|
test(
|
|
|
|
"[[Link?]]",
|
|
|
|
`<p><a href="`+encodedURL+`" rel="nofollow">Link?</a></p>`,
|
|
|
|
`<p><a href="`+encodedURLWiki+`" rel="nofollow">Link?</a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Link]] [[Other Link]] [[Link?]]",
|
|
|
|
`<p><a href="`+url+`" rel="nofollow">Link</a> <a href="`+otherURL+`" rel="nofollow">Other Link</a> <a href="`+encodedURL+`" rel="nofollow">Link?</a></p>`,
|
|
|
|
`<p><a href="`+urlWiki+`" rel="nofollow">Link</a> <a href="`+otherURLWiki+`" rel="nofollow">Other Link</a> <a href="`+encodedURLWiki+`" rel="nofollow">Link?</a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Link #.jpg]]",
|
|
|
|
`<p><a href="`+encodedImgurl+`" rel="nofollow"><img src="`+encodedImgurl+`"/></a></p>`,
|
|
|
|
`<p><a href="`+encodedImgurlWiki+`" rel="nofollow"><img src="`+encodedImgurlWiki+`"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[Name|Link #.jpg|alt=\"AltName\"|title='Title']]",
|
|
|
|
`<p><a href="`+encodedImgurl+`" rel="nofollow"><img src="`+encodedImgurl+`" title="Title" alt="AltName"/></a></p>`,
|
|
|
|
`<p><a href="`+encodedImgurlWiki+`" rel="nofollow"><img src="`+encodedImgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
|
|
|
|
test(
|
|
|
|
"[[some/path/Link #.jpg]]",
|
|
|
|
`<p><a href="`+notencodedImgurl+`" rel="nofollow"><img src="`+notencodedImgurl+`"/></a></p>`,
|
|
|
|
`<p><a href="`+notencodedImgurlWiki+`" rel="nofollow"><img src="`+notencodedImgurlWiki+`"/></a></p>`)
|
2018-02-27 12:39:18 +05:30
|
|
|
}
|