glob/match/every_of_test.go

46 lines
750 B
Go
Raw Normal View History

2016-01-12 14:06:59 +03:00
package match
import (
"reflect"
"testing"
)
func TestEveryOfIndex(t *testing.T) {
for id, test := range []struct {
matchers Matchers
fixture string
index int
segments []int
}{
{
Matchers{
Any{},
2016-01-15 19:50:12 +03:00
NewText("b"),
NewText("c"),
2016-01-12 14:06:59 +03:00
},
2016-02-05 16:57:42 +03:00
"dbc",
2016-01-12 14:06:59 +03:00
-1,
nil,
},
{
Matchers{
Any{},
Prefix{"b"},
Suffix{"c"},
},
"abc",
1,
[]int{2},
},
} {
everyOf := EveryOf{test.matchers}
2016-02-02 22:03:37 +03:00
index, segments := everyOf.Index(test.fixture, []int{})
2016-01-12 14:06:59 +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)
}
}
}