Skip to content

Commit 7616da1

Browse files
authored
alpine: add max metadata size to fuzzer (#1571)
Signed-off-by: AdamKorcz <[email protected]>
1 parent 9c13e97 commit 7616da1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

pkg/types/alpine/apk_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ func TestAlpinePackage(t *testing.T) {
5353
}
5454

5555
func TestAlpineMetadataSize(t *testing.T) {
56-
os.Setenv("MAX_APK_METADATA_SIZE", "10")
57-
viper.AutomaticEnv()
56+
viper.Set("max_apk_metadata_size", 10)
5857

5958
inputArchive, err := os.Open("tests/test_alpine.apk")
6059
if err != nil {

pkg/types/alpine/fuzz_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,22 @@ package alpine
1717

1818
import (
1919
"bytes"
20+
"fmt"
2021
"testing"
2122

23+
"github.com/spf13/viper"
24+
2225
fuzz "github.com/AdamKorcz/go-fuzz-headers-1"
2326
utils "github.com/sigstore/rekor/pkg/fuzz"
2427
)
2528

29+
func init() {
30+
viper.Set("max_apk_metadata_size", 60000)
31+
if viper.GetUint64("max_apk_metadata_size") != 60000 {
32+
panic(fmt.Sprintf("max metadata size is not defined: %d", viper.GetUint64("max_apk_metadata_size")))
33+
}
34+
}
35+
2636
// FuzzPackageUnmarshal implements the fuzz test
2737
func FuzzPackageUnmarshal(f *testing.F) {
2838
f.Fuzz(func(t *testing.T, data []byte) {

0 commit comments

Comments
 (0)