2020-12-10 22:43:11 +03:00
// Copyright 2020 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.
2021-08-24 19:47:09 +03:00
//go:build gofuzz
2020-12-10 22:43:11 +03:00
package fuzz
import (
2021-04-23 11:22:52 +03:00
"bytes"
2022-01-20 02:26:57 +03:00
"context"
2021-04-23 11:22:52 +03:00
"io"
2020-12-10 22:43:11 +03:00
"code.gitea.io/gitea/modules/markup"
"code.gitea.io/gitea/modules/markup/markdown"
2021-08-13 01:22:05 +03:00
"code.gitea.io/gitea/modules/setting"
2020-12-10 22:43:11 +03:00
)
// Contains fuzzing functions executed by
// fuzzing engine https://github.com/dvyukov/go-fuzz
//
// The function must return 1 if the fuzzer should increase priority of the given input during subsequent fuzzing
// (for example, the input is lexically correct and was parsed successfully).
// -1 if the input must not be added to corpus even if gives new coverage and 0 otherwise.
2022-01-20 20:46:10 +03:00
var renderContext = markup . RenderContext {
Ctx : context . Background ( ) ,
URLPrefix : "https://example.com/go-gitea/gitea" ,
Metas : map [ string ] string {
"user" : "go-gitea" ,
"repo" : "gitea" ,
} ,
}
2021-04-23 11:22:52 +03:00
2020-12-10 22:43:11 +03:00
func FuzzMarkdownRenderRaw ( data [ ] byte ) int {
2021-08-13 01:22:05 +03:00
setting . AppURL = "http://localhost:3000/"
2021-04-23 11:22:52 +03:00
err := markdown . RenderRaw ( & renderContext , bytes . NewReader ( data ) , io . Discard )
if err != nil {
return 0
}
2020-12-10 22:43:11 +03:00
return 1
}
func FuzzMarkupPostProcess ( data [ ] byte ) int {
2021-08-13 01:22:05 +03:00
setting . AppURL = "http://localhost:3000/"
2021-04-23 11:22:52 +03:00
err := markup . PostProcess ( & renderContext , bytes . NewReader ( data ) , io . Discard )
2020-12-10 22:43:11 +03:00
if err != nil {
return 0
}
return 1
}