Files

35 lines
949 B
Go
Raw Permalink Normal View History

// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2023-01-08 23:30:14 -08:00
package fuzz
import (
"bytes"
"io"
"testing"
"code.gitea.io/gitea/modules/markup"
"code.gitea.io/gitea/modules/markup/markdown"
"code.gitea.io/gitea/modules/setting"
)
2024-11-22 13:48:09 +08:00
func newFuzzRenderContext() *markup.RenderContext {
2024-11-24 16:18:57 +08:00
return markup.NewTestRenderContext("https://example.com/go-gitea/gitea", map[string]string{"user": "go-gitea", "repo": "gitea"})
}
func FuzzMarkdownRenderRaw(f *testing.F) {
f.Fuzz(func(t *testing.T, data []byte) {
2025-01-08 23:15:47 -08:00
setting.IsInTesting = true
setting.AppURL = "http://localhost:3000/"
2024-11-22 13:48:09 +08:00
markdown.RenderRaw(newFuzzRenderContext(), bytes.NewReader(data), io.Discard)
})
}
func FuzzMarkupPostProcess(f *testing.F) {
f.Fuzz(func(t *testing.T, data []byte) {
2025-01-08 23:15:47 -08:00
setting.IsInTesting = true
setting.AppURL = "http://localhost:3000/"
2024-11-27 00:46:02 +08:00
markup.PostProcessDefault(newFuzzRenderContext(), bytes.NewReader(data), io.Discard)
})
}