go.mod: update fuzz-headers and fuzz-build

Slowly chipping away non-tagged golang.org/x/ packages

diffs:

- b2031950a3...5330a85ea6
- 3345c89a7c...d395f97c48

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2022-12-15 17:36:05 +01:00
parent 12f30e6524
commit ce4ea26953
8 changed files with 103 additions and 27 deletions

View File

@@ -3,6 +3,7 @@ package testing
import (
"fmt"
fuzz "github.com/AdaLogics/go-fuzz-headers"
"os"
"reflect"
)
@@ -12,6 +13,10 @@ type F struct {
FuzzFunc func(*T, any)
}
func (f *F) CleanupTempDirs() {
f.T.CleanupTempDirs()
}
func (f *F) Add(args ...any) {}
func (c *F) Cleanup(f func()) {}
func (c *F) Error(args ...any) {}
@@ -173,10 +178,10 @@ func (f *F) Fuzz(ff any) {
}
func (f *F) Helper() {}
func (c *F) Log(args ...any) {
fmt.Println(args)
fmt.Println(args...)
}
func (c *F) Logf(format string, args ...any) {
fmt.Println(format, args, "\n")
fmt.Println(format, args)
}
func (c *F) Name() string { return "libFuzzer" }
func (c *F) Setenv(key, value string) {}
@@ -190,6 +195,13 @@ func (c *F) Skipf(format string, args ...any) {
panic("GO-FUZZ-BUILD-PANIC")
}
func (f *F) Skipped() bool { return false }
func (c *F) TempDir() string {
panic("TempDir() is not supported")
func (f *F) TempDir() string {
dir, err := os.MkdirTemp("", "fuzzdir-")
if err != nil {
panic(err)
}
f.T.TempDirs = append(f.T.TempDirs, dir)
return dir
}

View File

@@ -2,6 +2,7 @@ package testing
import (
"fmt"
"os"
"strings"
"time"
)
@@ -11,6 +12,12 @@ import (
// panic with the text "GO-FUZZ-BUILD-PANIC" and the fuzzer
// will recover.
type T struct {
TempDirs []string
}
func NewT() *T {
tempDirs := make([]string, 0)
return &T{TempDirs: tempDirs}
}
func unsupportedApi(name string) string {
@@ -35,8 +42,7 @@ func (t *T) Error(args ...any) {
}
func (t *T) Errorf(format string, args ...any) {
fmt.Println(format)
fmt.Println(args...)
fmt.Printf(format+"\n", args...)
panic("errorf")
}
@@ -58,11 +64,11 @@ func (t *T) Fatal(args ...any) {
panic("fatal")
}
func (t *T) Fatalf(format string, args ...any) {
fmt.Println(format, args)
fmt.Printf(format+"\n", args...)
panic("fatal")
}
func (t *T) Helper() {
panic(unsupportedApi("t.Failed()"))
// We can't support it, but it also just impacts how failures are reported, so we can ignore it
}
func (t *T) Log(args ...any) {
fmt.Println(args...)
@@ -78,10 +84,10 @@ func (t *T) Name() string {
}
func (t *T) Parallel() {
panic(unsupportedApi("t.Failed()"))
panic(unsupportedApi("t.Parallel()"))
}
func (t *T) Run(name string, f func(t *T)) bool {
panic(unsupportedApi("t.Run()."))
panic(unsupportedApi("t.Run()"))
}
func (t *T) Setenv(key, value string) {
@@ -105,5 +111,19 @@ func (t *T) Skipped() bool {
panic(unsupportedApi("t.Skipped()"))
}
func (t *T) TempDir() string {
panic(unsupportedApi("t.TempDir()"))
dir, err := os.MkdirTemp("", "fuzzdir-")
if err != nil {
panic(err)
}
t.TempDirs = append(t.TempDirs, dir)
return dir
}
func (t *T) CleanupTempDirs() {
if len(t.TempDirs) > 0 {
for _, tempDir := range t.TempDirs {
os.RemoveAll(tempDir)
}
}
}