-
Notifications
You must be signed in to change notification settings - Fork 83
/
indexdata_test.go
108 lines (92 loc) · 2.88 KB
/
indexdata_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
package zoekt
import (
"math/rand"
"reflect"
"slices"
"testing"
"testing/quick"
)
const exampleQuery = "const data: Event = { ...JSON.parse(message.data), type: message.event }"
func genFrequencies(ngramOffs []runeNgramOff, max int) []uint32 {
seen := map[ngram]uint32{}
var frequencies []uint32
for _, n := range ngramOffs {
freq, ok := seen[n.ngram]
if !ok {
freq = uint32(rand.Intn(max))
seen[n.ngram] = freq
}
frequencies = append(frequencies, freq)
}
return frequencies
}
func BenchmarkMinFrequencyNgramOffsets(b *testing.B) {
ngramOffs := splitNGrams([]byte(exampleQuery))
slices.SortFunc(ngramOffs, runeNgramOff.Compare)
frequencies := genFrequencies(ngramOffs, 100)
for i := 0; i < b.N; i++ {
x0, x1 := minFrequencyNgramOffsets(ngramOffs, frequencies)
if x0 == x1 {
b.Fatal("should not be the same")
}
}
}
func TestMinFrequencyNgramOffsets(t *testing.T) {
// Our implementation has ill-defined tie breaks when the 2nd smallest
// frequency can be tied with others. Fixing that would make the CPU perf
// worse, so what we do instead is just validate that what we get back is
// acceptable.
if err := quick.Check(func(s string, maxFreq uint16) bool {
// Ensure maximum frequency is nonzero so that random sampling will work
maxFreq = max(maxFreq, 1)
ngramOffs := splitNGrams([]byte(s))
if len(ngramOffs) == 0 {
return true
}
slices.SortFunc(ngramOffs, runeNgramOff.Compare)
frequencies := genFrequencies(ngramOffs, int(maxFreq))
x0, x1 := minFrequencyNgramOffsets(ngramOffs, frequencies)
if x0.index > x1.index {
t.Log("x0 should be before x1")
return false
}
if len(ngramOffs) <= 1 {
return true
}
// Now we just assert that we found two items with the smallest
// frequencies.
idx0 := slices.IndexFunc(ngramOffs, func(a runeNgramOff) bool { return a == x0 })
idx1 := slices.IndexFunc(ngramOffs, func(a runeNgramOff) bool { return a == x1 })
start := []uint32{frequencies[idx0], frequencies[idx1]}
slices.Sort(start)
slices.Sort(frequencies)
return reflect.DeepEqual(start, frequencies[:2])
}, nil); err != nil {
t.Fatal(err)
}
}
func TestFindSelectiveNGrams(t *testing.T) {
if err := quick.Check(func(s string, maxFreq uint16) bool {
// Ensure maximum frequency is nonzero so that random sampling will work
maxFreq = max(maxFreq, 1)
ngramOffs := splitNGrams([]byte(s))
if len(ngramOffs) == 0 {
return true
}
slices.SortFunc(ngramOffs, runeNgramOff.Compare)
indexMap := make([]int, len(ngramOffs))
for i, n := range ngramOffs {
indexMap[n.index] = i
}
frequencies := genFrequencies(ngramOffs, int(maxFreq))
x0, x1 := findSelectiveNgrams(ngramOffs, indexMap, frequencies)
if len(ngramOffs) <= 1 {
return true
}
// Just assert the invariant that x0 is before x1. This test mostly checks
// for out-of-bounds errors.
return x0.index < x1.index
}, nil); err != nil {
t.Fatal(err)
}
}