File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,7 @@ func TestAlpinePackage(t *testing.T) {
53
53
}
54
54
55
55
func TestAlpineMetadataSize (t * testing.T ) {
56
- os .Setenv ("MAX_APK_METADATA_SIZE" , "10" )
57
- viper .AutomaticEnv ()
56
+ viper .Set ("max_apk_metadata_size" , 10 )
58
57
59
58
inputArchive , err := os .Open ("tests/test_alpine.apk" )
60
59
if err != nil {
Original file line number Diff line number Diff line change @@ -17,12 +17,22 @@ package alpine
17
17
18
18
import (
19
19
"bytes"
20
+ "fmt"
20
21
"testing"
21
22
23
+ "github.com/spf13/viper"
24
+
22
25
fuzz "github.com/AdamKorcz/go-fuzz-headers-1"
23
26
utils "github.com/sigstore/rekor/pkg/fuzz"
24
27
)
25
28
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
+
26
36
// FuzzPackageUnmarshal implements the fuzz test
27
37
func FuzzPackageUnmarshal (f * testing.F ) {
28
38
f .Fuzz (func (t * testing.T , data []byte ) {
You can’t perform that action at this time.
0 commit comments