mirror of
https://github.com/go-gitea/gitea
synced 2025-01-25 09:04:29 +00:00
Backport #33156 by @lunny Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
a330f42f01
commit
12c24c2189
@ -19,6 +19,7 @@ func newFuzzRenderContext() *markup.RenderContext {
|
||||
|
||||
func FuzzMarkdownRenderRaw(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
setting.IsInTesting = true
|
||||
setting.AppURL = "http://localhost:3000/"
|
||||
markdown.RenderRaw(newFuzzRenderContext(), bytes.NewReader(data), io.Discard)
|
||||
})
|
||||
@ -26,6 +27,7 @@ func FuzzMarkdownRenderRaw(f *testing.F) {
|
||||
|
||||
func FuzzMarkupPostProcess(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
setting.IsInTesting = true
|
||||
setting.AppURL = "http://localhost:3000/"
|
||||
markup.PostProcessDefault(newFuzzRenderContext(), bytes.NewReader(data), io.Discard)
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user