mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			945 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			945 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package fuzz
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"context"
 | 
						|
	"io"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"forgejo.org/modules/markup"
 | 
						|
	"forgejo.org/modules/markup/markdown"
 | 
						|
	"forgejo.org/modules/setting"
 | 
						|
)
 | 
						|
 | 
						|
var renderContext = markup.RenderContext{
 | 
						|
	Ctx: context.Background(),
 | 
						|
	Links: markup.Links{
 | 
						|
		Base: "https://example.com/go-gitea/gitea",
 | 
						|
	},
 | 
						|
	Metas: map[string]string{
 | 
						|
		"user": "go-gitea",
 | 
						|
		"repo": "gitea",
 | 
						|
	},
 | 
						|
}
 | 
						|
 | 
						|
func FuzzMarkdownRenderRaw(f *testing.F) {
 | 
						|
	f.Fuzz(func(t *testing.T, data []byte) {
 | 
						|
		setting.IsInTesting = true
 | 
						|
		setting.AppURL = "http://localhost:3000/"
 | 
						|
		markdown.RenderRaw(&renderContext, bytes.NewReader(data), io.Discard)
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func FuzzMarkupPostProcess(f *testing.F) {
 | 
						|
	f.Fuzz(func(t *testing.T, data []byte) {
 | 
						|
		setting.IsInTesting = true
 | 
						|
		setting.AppURL = "http://localhost:3000/"
 | 
						|
		markup.PostProcess(&renderContext, bytes.NewReader(data), io.Discard)
 | 
						|
	})
 | 
						|
}
 |