2016-01-18 13:07:28 +03:00
|
|
|
package match
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRangeIndex(t *testing.T) {
|
|
|
|
for id, test := range []struct {
|
|
|
|
lo, hi rune
|
|
|
|
not bool
|
|
|
|
fixture string
|
|
|
|
index int
|
|
|
|
segments []int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
'a', 'z',
|
|
|
|
false,
|
|
|
|
"abc",
|
|
|
|
0,
|
|
|
|
[]int{1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'a', 'c',
|
|
|
|
false,
|
|
|
|
"abcd",
|
|
|
|
0,
|
|
|
|
[]int{1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'a', 'c',
|
|
|
|
true,
|
|
|
|
"abcd",
|
|
|
|
3,
|
|
|
|
[]int{1},
|
|
|
|
},
|
|
|
|
} {
|
|
|
|
m := Range{test.lo, test.hi, test.not}
|
2016-02-02 22:03:37 +03:00
|
|
|
index, segments := m.Index(test.fixture, []int{})
|
2016-01-18 13:07:28 +03:00
|
|
|
if index != test.index {
|
|
|
|
t.Errorf("#%d unexpected index: exp: %d, act: %d", id, test.index, index)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(segments, test.segments) {
|
|
|
|
t.Errorf("#%d unexpected segments: exp: %v, act: %v", id, test.segments, segments)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkIndexRange(b *testing.B) {
|
|
|
|
m := Range{'0', '9', false}
|
2016-02-02 22:03:37 +03:00
|
|
|
in := acquireSegments(len(bench_pattern))
|
|
|
|
|
2016-01-18 13:07:28 +03:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-02-02 22:03:37 +03:00
|
|
|
m.Index(bench_pattern, in[:0])
|
2016-01-18 13:07:28 +03:00
|
|
|
}
|
|
|
|
}
|
2016-02-02 22:03:37 +03:00
|
|
|
|
|
|
|
func BenchmarkIndexRangeParallel(b *testing.B) {
|
|
|
|
m := Range{'0', '9', false}
|
|
|
|
in := acquireSegments(len(bench_pattern))
|
|
|
|
|
|
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
|
|
for pb.Next() {
|
|
|
|
m.Index(bench_pattern, in[:0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|