-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23687a0
commit 9f44fa0
Showing
19 changed files
with
332 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package markup_test | ||
|
||
import ( | ||
"context" | ||
"html/template" | ||
"strings" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/htmlutil" | ||
"code.gitea.io/gitea/modules/markup" | ||
"code.gitea.io/gitea/modules/markup/markdown" | ||
testModule "code.gitea.io/gitea/modules/test" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestRender_IssueList(t *testing.T) { | ||
defer testModule.MockVariableValue(&markup.RenderBehaviorForTesting.DisableAdditionalAttributes, true)() | ||
markup.Init(&markup.RenderHelperFuncs{ | ||
RenderRepoIssueIconTitle: func(ctx context.Context, opts markup.RenderIssueIconTitleOptions) (template.HTML, error) { | ||
return htmlutil.HTMLFormat("<div>issue #%d</div>", opts.IssueIndex), nil | ||
}, | ||
}) | ||
|
||
test := func(input, expected string) { | ||
rctx := markup.NewTestRenderContext(markup.TestAppURL, map[string]string{ | ||
"user": "test-user", "repo": "test-repo", | ||
"markupAllowShortIssuePattern": "true", | ||
}) | ||
out, err := markdown.RenderString(rctx, input) | ||
require.NoError(t, err) | ||
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(string(out))) | ||
} | ||
|
||
t.Run("NormalIssueRef", func(t *testing.T) { | ||
test( | ||
"#12345", | ||
`<p><a href="http://localhost:3000/test-user/test-repo/issues/12345" class="ref-issue" rel="nofollow">#12345</a></p>`, | ||
) | ||
}) | ||
|
||
t.Run("ListIssueRef", func(t *testing.T) { | ||
test( | ||
"* #12345", | ||
`<ul> | ||
<li><div>issue #12345</div></li> | ||
</ul>`, | ||
) | ||
}) | ||
|
||
t.Run("ListIssueRefNormal", func(t *testing.T) { | ||
test( | ||
"* foo #12345 bar", | ||
`<ul> | ||
<li>foo <a href="http://localhost:3000/test-user/test-repo/issues/12345" class="ref-issue" rel="nofollow">#12345</a> bar</li> | ||
</ul>`, | ||
) | ||
}) | ||
|
||
t.Run("ListTodoIssueRef", func(t *testing.T) { | ||
test( | ||
"* [ ] #12345", | ||
`<ul> | ||
<li class="task-list-item"><input type="checkbox" disabled="" data-source-position="2"/><div>issue #12345</div></li> | ||
</ul>`, | ||
) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.