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 bexpr
import (
"testing"
"github.com/stretchr/testify/require"
)
type testStruct struct {
X int
Y string
}
var testSlice []testStruct = []testStruct{
testStruct{
X: 1,
Y: "a",
},
testStruct{
X: 1,
Y: "b",
},
testStruct{
X: 2,
Y: "a",
},
testStruct{
X: 2,
Y: "b",
},
testStruct{
X: 3,
Y: "c",
},
}
var testArray [5]testStruct = [5]testStruct{
testStruct{
X: 1,
Y: "a",
},
testStruct{
X: 1,
Y: "b",
},
testStruct{
X: 2,
Y: "a",
},
testStruct{
X: 2,
Y: "b",
},
testStruct{
X: 3,
Y: "c",
},
}
var testMap map[string]testStruct = map[string]testStruct{
"one": testStruct{
X: 1,
Y: "a",
},
"two": testStruct{
X: 1,
Y: "b",
},
"three": testStruct{
X: 2,
Y: "a",
},
"four": testStruct{
X: 2,
Y: "b",
},
"five": testStruct{
X: 3,
Y: "c",
},
}
func TestFilter(t *testing.T) {
type testCase struct {
expression string
input interface{}
expected interface{}
}
cases := map[string]testCase{
"Slice X==1": testCase{
"X==1",
testSlice,
[]testStruct{
testStruct{X: 1, Y: "a"},
testStruct{X: 1, Y: "b"},
},
},
"Slice Y==`c`": testCase{
"Y==`c`",
testSlice,
[]testStruct{
testStruct{X: 3, Y: "c"},
},
},
"Array X==1": testCase{
"X==1",
testArray,
[]testStruct{
testStruct{X: 1, Y: "a"},
testStruct{X: 1, Y: "b"},
},
},
"Array Y==`c`": testCase{
"Y==`c`",
testArray,
[]testStruct{
testStruct{X: 3, Y: "c"},
},
},
"Map X==1": testCase{
"X==1",
testMap,
map[string]testStruct{
"one": testStruct{X: 1, Y: "a"},
"two": testStruct{X: 1, Y: "b"},
},
},
"Map Y==`c`": testCase{
"Y==`c`",
testMap,
map[string]testStruct{
"five": testStruct{X: 3, Y: "c"},
},
},
}
t.Parallel()
for name, tcase := range cases {
tcase := tcase
name := name
t.Run(name, func(t *testing.T) {
t.Parallel()
flt, err := CreateFilter(tcase.expression, nil, tcase.input)
require.NoError(t, err)
require.NotNil(t, flt)
results, err := flt.Execute(tcase.input)
require.NoError(t, err)
require.Equal(t, tcase.expected, results)
})
}
}
func BenchmarkFilter(b *testing.B) {
type benchCase struct {
expression string
input interface{}
}
// The expressions used here are purposefully simple\
// This is meant to bencharmk the filter execution timing
// more than the boolean expression evaluation. That includes
// handling the top level container and generating a new one.
// The BenchmarkEvaluate function handles benchmarking most
// of the underlying evaluation.
cases := map[string]benchCase{
"Slice": benchCase{
"X==1",
testSlice,
},
"Array": benchCase{
"X==1",
testArray,
},
"Map": benchCase{
"X==1",
testMap,
},
}
for name, bcase := range cases {
bcase := bcase
name := name
b.Run(name, func(b *testing.B) {
flt, err := CreateFilter(bcase.expression, nil, bcase.input)
require.NoError(b, err)
require.NotNil(b, flt)
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := flt.Execute(bcase.input)
require.NoError(b, err)
}
})
}
}
|