This commit is contained in:
gobwas 2016-02-22 20:23:57 +03:00
parent 3222d37775
commit de3f4464d6
1 changed files with 34 additions and 0 deletions

View File

@ -46,3 +46,37 @@ func TestBTree(t *testing.T) {
} }
} }
} }
type fakeMatcher struct {
len int
name string
}
func (f *fakeMatcher) Match(string) bool {
return true
}
func (f *fakeMatcher) Index(s string) (int, []int) {
return 0, []int{1}
}
func (f *fakeMatcher) Len() int {
return f.len
}
func (f *fakeMatcher) String() string {
return f.name
}
func BenchmarkMatchBTree(b *testing.B) {
l := &fakeMatcher{4, "left_fake"}
r := &fakeMatcher{4, "right_fake"}
v := &fakeMatcher{2, "value_fake"}
// must be <= len(l + r + v)
fixture := "abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij"
bt := NewBTree(v, l, r)
b.SetParallelism(1)
for i := 0; i < b.N; i++ {
bt.Match(fixture)
}
}