Skip to content

Commit 026c84a

Browse files
committed
Add and modify tests for checking hashes in html link rendering
Signed-off-by: Gary Kim <[email protected]>
1 parent 5852974 commit 026c84a

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

modules/markup/html_test.go

+12-10
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ import (
1717
)
1818

1919
var localMetas = map[string]string{
20-
"user": "gogits",
21-
"repo": "gogs",
20+
"user": "gogits",
21+
"repo": "gogs",
22+
"repoPath": "../../integrations/gitea-repositories-meta/user13/repo11.git/",
2223
}
2324

2425
func TestRender_Commits(t *testing.T) {
@@ -30,19 +31,20 @@ func TestRender_Commits(t *testing.T) {
3031
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
3132
}
3233

33-
var sha = "b6dd6210eaebc915fd5be5579c58cce4da2e2579"
34+
var sha = "65f1bf27bc3bf70f64657658635e66094edbcb4d"
3435
var commit = util.URLJoin(AppSubURL, "commit", sha)
3536
var subtree = util.URLJoin(commit, "src")
3637
var tree = strings.Replace(subtree, "/commit/", "/tree/", -1)
3738

38-
test(sha, `<p><a href="`+commit+`" rel="nofollow"><code>b6dd6210ea</code></a></p>`)
39-
test(sha[:7], `<p><a href="`+commit[:len(commit)-(40-7)]+`" rel="nofollow"><code>b6dd621</code></a></p>`)
40-
test(sha[:39], `<p><a href="`+commit[:len(commit)-(40-39)]+`" rel="nofollow"><code>b6dd6210ea</code></a></p>`)
41-
test(commit, `<p><a href="`+commit+`" rel="nofollow"><code>b6dd6210ea</code></a></p>`)
42-
test(tree, `<p><a href="`+tree+`" rel="nofollow"><code>b6dd6210ea/src</code></a></p>`)
43-
test("commit "+sha, `<p>commit <a href="`+commit+`" rel="nofollow"><code>b6dd6210ea</code></a></p>`)
39+
test(sha, `<p><a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
40+
test(sha[:7], `<p><a href="`+commit[:len(commit)-(40-7)]+`" rel="nofollow"><code>65f1bf2</code></a></p>`)
41+
test(sha[:39], `<p><a href="`+commit[:len(commit)-(40-39)]+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
42+
test(commit, `<p><a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
43+
test(tree, `<p><a href="`+tree+`" rel="nofollow"><code>65f1bf27bc/src</code></a></p>`)
44+
test("commit "+sha, `<p>commit <a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
4445
test("/home/gitea/"+sha, "<p>/home/gitea/"+sha+"</p>")
45-
46+
test("deadbeef", `<p>deadbeef</p>`)
47+
test("d27ace93", `<p>d27ace93</p>`)
4648
}
4749

4850
func TestRender_CrossReferences(t *testing.T) {

modules/markup/markdown/markdown_test.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ const AppSubURL = AppURL + Repo + "/"
2121

2222
// these values should match the Repo const above
2323
var localMetas = map[string]string{
24-
"user": "gogits",
25-
"repo": "gogs",
24+
"user": "gogits",
25+
"repo": "gogs",
26+
"repoPath": "../../../integrations/gitea-repositories-meta/user13/repo11.git/",
2627
}
2728

2829
func TestRender_StandardLinks(t *testing.T) {
@@ -103,7 +104,7 @@ func testAnswers(baseURLContent, baseURLImages string) []string {
103104
<li><a href="` + baseURLContent + `/Tips" rel="nofollow">Tips</a></li>
104105
</ul>
105106
106-
<p>See commit <a href="http://localhost:3000/gogits/gogs/commit/fc7f44dadf" rel="nofollow"><code>fc7f44dadf</code></a></p>
107+
<p>See commit <a href="http://localhost:3000/gogits/gogs/commit/65f1bf27bc" rel="nofollow"><code>65f1bf27bc</code></a></p>
107108
108109
<p>Ideas and codes</p>
109110
@@ -194,7 +195,7 @@ var sameCases = []string{
194195
- [[Links, Language bindings, Engine bindings|Links]]
195196
- [[Tips]]
196197
197-
See commit fc7f44dadf
198+
See commit 65f1bf27bc
198199
199200
Ideas and codes
200201

0 commit comments

Comments
 (0)