-
Notifications
You must be signed in to change notification settings - Fork 34
/
evaluation_fuzz_test.go
126 lines (112 loc) · 3.32 KB
/
evaluation_fuzz_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package e2e_test
import (
"context"
"github.com/open-feature/go-sdk/openfeature"
"github.com/open-feature/go-sdk/openfeature/memprovider"
"strings"
"testing"
)
func setupFuzzClient(f *testing.F) *openfeature.Client {
f.Helper()
memoryProvider := memprovider.NewInMemoryProvider(map[string]memprovider.InMemoryFlag{})
err := openfeature.SetNamedProviderAndWait(f.Name(), memoryProvider)
if err != nil {
f.Errorf("error setting up provider %v", err)
}
return openfeature.GetApiInstance().GetNamedClient(f.Name()).(*openfeature.Client)
}
func FuzzBooleanEvaluation(f *testing.F) {
client := setupFuzzClient(f)
f.Add("foo", false)
f.Add("FoO", true)
f.Add("FoO234", false)
f.Add("FoO2\b34", true)
f.Fuzz(func(t *testing.T, flagKey string, defaultValue bool) {
res, err := client.BooleanValueDetails(context.Background(), flagKey, defaultValue, openfeature.EvaluationContext{})
if err != nil {
if res.ErrorCode == openfeature.FlagNotFoundCode {
return
}
if strings.Contains(err.Error(), string(openfeature.ParseErrorCode)) {
return
}
t.Error(err)
}
})
}
func FuzzStringEvaluation(f *testing.F) {
client := setupFuzzClient(f)
f.Add("foo", "bar")
f.Add("FoO", "BaR")
f.Add("FoO234", "Ba1232")
f.Add("FoO2\b34", "BaaR\b2312")
f.Fuzz(func(t *testing.T, flagKey string, defaultValue string) {
res, err := client.StringValueDetails(context.Background(), flagKey, defaultValue, openfeature.EvaluationContext{})
if err != nil {
if res.ErrorCode == openfeature.FlagNotFoundCode {
return
}
if strings.Contains(err.Error(), string(openfeature.ParseErrorCode)) {
return
}
t.Error(err)
}
})
}
func FuzzIntEvaluation(f *testing.F) {
client := setupFuzzClient(f)
f.Add("foo", int64(1))
f.Add("FoO", int64(99))
f.Add("FoO234", int64(100029))
f.Add("FoO2\b34", int64(-1))
f.Fuzz(func(t *testing.T, flagKey string, defaultValue int64) {
res, err := client.IntValueDetails(context.Background(), flagKey, defaultValue, openfeature.EvaluationContext{})
if err != nil {
if res.ErrorCode == openfeature.FlagNotFoundCode {
return
}
if strings.Contains(err.Error(), string(openfeature.ParseErrorCode)) {
return
}
t.Error(err)
}
})
}
func FuzzFloatEvaluation(f *testing.F) {
client := setupFuzzClient(f)
f.Add("foo", float64(1))
f.Add("FoO", 99.9)
f.Add("FoO234", 0.00004)
f.Add("FoO2\b34", -1.9203)
f.Fuzz(func(t *testing.T, flagKey string, defaultValue float64) {
res, err := client.FloatValueDetails(context.Background(), flagKey, defaultValue, openfeature.EvaluationContext{})
if err != nil {
if res.ErrorCode == openfeature.FlagNotFoundCode {
return
}
if strings.Contains(err.Error(), string(openfeature.ParseErrorCode)) {
return
}
t.Error(err)
}
})
}
func FuzzObjectEvaluation(f *testing.F) {
client := setupFuzzClient(f)
f.Add("foo", "{}")
f.Add("FoO", "true")
f.Add("FoO234", "-1.23")
f.Add("FoO2\b34", "1")
f.Fuzz(func(t *testing.T, flagKey string, defaultValue string) { // interface{} is not supported, using a string
res, err := client.ObjectValueDetails(context.Background(), flagKey, defaultValue, openfeature.EvaluationContext{})
if err != nil {
if res.ErrorCode == openfeature.FlagNotFoundCode {
return
}
if strings.Contains(err.Error(), string(openfeature.ParseErrorCode)) {
return
}
t.Error(err)
}
})
}