-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscientist_test.go
200 lines (167 loc) · 4.78 KB
/
scientist_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package scientist
import (
"reflect"
"sort"
"strings"
"testing"
)
func basicExperiment() *Experiment {
e := New("basic")
e.Use(func() (interface{}, error) {
return 1, nil
})
e.Try(func() (interface{}, error) {
return 2, nil
})
e.Behavior("three", func() (interface{}, error) {
return 3, nil
})
e.Behavior("correct", func() (interface{}, error) {
return 1, nil
})
return e
}
func TestRun(t *testing.T) {
e := basicExperiment()
r := Run(e, "control")
if len(r.Errors) != 0 {
t.Errorf("Unexpected experiment errors: %v", r.Errors)
}
if r.Control.Name != "control" {
t.Errorf("Unexpected control observation name: %q", r.Control.Name)
}
if r.Control.Err != nil {
t.Errorf("Expected no error, got: %v", r.Control.Err)
}
if r.Control.Value != 1 {
t.Errorf("Bad value for 'control': %v", r.Control.Value)
}
assertObservationNames(t, "candidate", r.Candidates, []string{"candidate", "correct", "three"})
assertObservationNames(t, "ignored", r.Ignored, []string{})
assertObservationNames(t, "mismatched", r.Mismatched, []string{"candidate", "three"})
candidatesMap := make(map[string]*Observation, len(r.Candidates))
for _, o := range r.Candidates {
candidatesMap[o.Name] = o
}
two, ok := candidatesMap["candidate"]
if !ok {
t.Errorf("No behavior 'candidate'")
} else {
if two.Err != nil {
t.Errorf("Error for 'candidate': %v", two.Err)
}
if two.Value != 2 {
t.Errorf("Bad value for 'candidate': %v", two.Value)
}
}
three, ok := candidatesMap["three"]
if !ok {
t.Errorf("No behavior 'three'")
} else {
if three.Err != nil {
t.Errorf("Error for 'three': %v", three.Err)
}
if three.Value != 3 {
t.Errorf("Bad value for 'three': %v", three.Value)
}
}
correct, ok := candidatesMap["correct"]
if !ok {
t.Errorf("No behavior 'correct'")
} else {
if correct.Err != nil {
t.Errorf("Error for 'correct': %v", correct.Err)
}
if correct.Value != 1 {
t.Errorf("Bad value for 'correct': %v", correct.Value)
}
}
}
func TestIgnore(t *testing.T) {
e := basicExperiment()
e.Ignore(func(control, candidate interface{}) (bool, error) {
return candidate == 3, nil
})
r := Run(e, "control")
if len(r.Errors) != 0 {
t.Errorf("Unexpected experiment errors: %v", r.Errors)
}
assertObservationNames(t, "candidate", r.Candidates, []string{"candidate", "correct", "three"})
assertObservationNames(t, "ignored", r.Ignored, []string{"three"})
assertObservationNames(t, "mismatched", r.Mismatched, []string{"candidate"})
}
func TestCompare(t *testing.T) {
e := basicExperiment()
e.Compare(func(control, candidate interface{}) (bool, error) {
return control == 1 && candidate == 3, nil
})
r := Run(e, "control")
if len(r.Errors) != 0 {
t.Errorf("Unexpected experiment errors: %v", r.Errors)
}
assertObservationNames(t, "candidate", r.Candidates, []string{"candidate", "correct", "three"})
assertObservationNames(t, "ignored", r.Ignored, []string{})
assertObservationNames(t, "mismatched", r.Mismatched, []string{"candidate", "correct"})
}
func TestCompareAndIgnore(t *testing.T) {
e := basicExperiment()
e.Compare(func(control, candidate interface{}) (bool, error) {
return control == 1 && candidate == 3, nil
})
e.Ignore(func(control, candidate interface{}) (bool, error) {
return candidate == 1, nil
})
r := Run(e, "control")
if len(r.Errors) != 0 {
t.Errorf("Unexpected experiment errors: %v", r.Errors)
}
assertObservationNames(t, "candidate", r.Candidates, []string{"candidate", "correct", "three"})
assertObservationNames(t, "ignored", r.Ignored, []string{"correct"})
assertObservationNames(t, "mismatched", r.Mismatched, []string{"candidate"})
}
func TestDefaultCleaner(t *testing.T) {
e := New("cleaner")
e.Use(func() (interface{}, error) {
return "booya", nil
})
r := Run(e, "control")
cleaned, err := r.Control.CleanedValue()
if err != nil {
t.Errorf("Unexpected cleaning error: %v", err)
}
if cleaned != "booya" {
t.Errorf("bad cleaned value: %v", cleaned)
}
}
func TestCustomCleaner(t *testing.T) {
e := New("cleaner")
e.Use(func() (interface{}, error) {
return "booya", nil
})
e.Clean(func(v interface{}) (interface{}, error) {
return strings.ToUpper(v.(string)), nil
})
r := Run(e, "control")
cleaned, err := r.Control.CleanedValue()
if err != nil {
t.Errorf("Unexpected cleaning error: %v", err)
}
if cleaned != "BOOYA" {
t.Errorf("bad cleaned value: %v", cleaned)
}
}
func assertObservationNames(t *testing.T, key string, obs []*Observation, expected []string) {
actual := observationNames(obs)
if reflect.DeepEqual(expected, actual) {
return
}
t.Errorf("Expected %s observations: %v, got: %v", key, expected, actual)
}
func observationNames(obs []*Observation) []string {
names := make([]string, len(obs))
for i, o := range obs {
names[i] = o.Name
}
sort.Strings(names)
return names
}