glob/glob_test.go

341 lines
8.3 KiB
Go
Raw Normal View History

2015-11-30 17:58:20 +03:00
package glob
2015-11-30 19:21:30 +03:00
2015-11-30 17:58:20 +03:00
import (
2016-01-13 01:26:48 +03:00
"bytes"
"fmt"
2016-01-08 20:14:31 +03:00
"github.com/gobwas/glob/match"
2016-01-13 01:26:48 +03:00
"math/rand"
2016-01-15 19:50:12 +03:00
"strings"
2015-11-30 19:21:30 +03:00
"testing"
2015-11-30 17:58:20 +03:00
)
2015-12-24 19:00:41 +03:00
const (
pattern_all = "[a-z][!a-x]*cat*[h][!b]*eyes*"
fixture_all = "my cat has very bright eyes"
pattern_plain = "google.com"
fixture_plain = "google.com"
pattern_multiple = "https://*.google.*"
fixture_multiple = "https://account.google.com"
2016-01-14 21:32:02 +03:00
pattern_alternatives = "{https://*.google.*,*yandex.*,*yahoo.*,*mail.ru}"
2016-01-09 02:34:41 +03:00
fixture_alternatives = "http://yahoo.com"
2016-01-15 19:50:12 +03:00
pattern_alternatives_suffix = "{https://*gobwas.com,http://exclude.gobwas.com}"
fixture_alternatives_suffix_first = "https://safe.gobwas.com"
fixture_alternatives_suffix_second = "http://exclude.gobwas.com"
2016-01-08 20:14:31 +03:00
pattern_prefix = "abc*"
pattern_suffix = "*def"
2015-12-24 19:00:41 +03:00
pattern_prefix_suffix = "ab*ef"
fixture_prefix_suffix = "abcdef"
2016-01-15 19:50:12 +03:00
pattern_alternatives_combine_lite = "{abc*def,abc?def,abc[zte]def}"
fixture_alternatives_combine_lite = "abczdef"
pattern_alternatives_combine_hard = "{abc*[a-c]def,abc?[d-g]def,abc[zte]?def}"
fixture_alternatives_combine_hard = "abczqdef"
2015-12-24 19:00:41 +03:00
)
2015-11-30 17:58:20 +03:00
type test struct {
pattern, match string
should bool
delimiters []string
}
func glob(s bool, p, m string, d ...string) test {
return test{p, m, s, d}
}
2016-01-13 01:26:48 +03:00
func draw(pattern string, m match.Matcher) string {
2016-01-15 19:50:12 +03:00
return fmt.Sprintf(`digraph G {graph[label="%s"];%s}`, pattern, graphviz(m, fmt.Sprintf("%x", rand.Int63())))
2016-01-13 01:26:48 +03:00
}
2016-01-15 19:50:12 +03:00
func graphviz(m match.Matcher, id string) string {
2016-01-13 01:26:48 +03:00
buf := &bytes.Buffer{}
2016-01-15 19:50:12 +03:00
switch matcher := m.(type) {
case match.BTree:
fmt.Fprintf(buf, `"%s"[label="%s"];`, id, matcher.Value.String())
for _, m := range []match.Matcher{matcher.Left, matcher.Right} {
switch n := m.(type) {
case nil:
rnd := rand.Int63()
fmt.Fprintf(buf, `"%x"[label="<nil>"];`, rnd)
fmt.Fprintf(buf, `"%s"->"%x";`, id, rnd)
default:
sub := fmt.Sprintf("%x", rand.Int63())
fmt.Fprintf(buf, `"%s"->"%s";`, id, sub)
fmt.Fprintf(buf, graphviz(n, sub))
}
}
case match.AnyOf:
fmt.Fprintf(buf, `"%s"[label="AnyOf"];`, id)
for _, m := range matcher.Matchers {
2016-01-13 01:26:48 +03:00
rnd := rand.Int63()
2016-01-15 19:50:12 +03:00
fmt.Fprintf(buf, graphviz(m, fmt.Sprintf("%x", rnd)))
2016-01-13 01:26:48 +03:00
fmt.Fprintf(buf, `"%s"->"%x";`, id, rnd)
2016-01-15 19:50:12 +03:00
}
2016-01-13 01:26:48 +03:00
2016-01-15 19:50:12 +03:00
case match.EveryOf:
fmt.Fprintf(buf, `"%s"[label="EveryOf"];`, id)
for _, m := range matcher.Matchers {
2016-01-13 01:26:48 +03:00
rnd := rand.Int63()
2016-01-15 19:50:12 +03:00
fmt.Fprintf(buf, graphviz(m, fmt.Sprintf("%x", rnd)))
2016-01-13 01:26:48 +03:00
fmt.Fprintf(buf, `"%s"->"%x";`, id, rnd)
}
2016-01-15 19:50:12 +03:00
default:
fmt.Fprintf(buf, `"%s"[label="%s"];`, id, m.String())
2016-01-13 01:26:48 +03:00
}
return buf.String()
}
2016-01-15 19:50:12 +03:00
func DrawPatterns(t *testing.T) {
2016-01-08 20:14:31 +03:00
for id, test := range []struct {
pattern string
sep string
}{
2016-01-14 21:32:02 +03:00
{
2016-01-15 19:50:12 +03:00
pattern: pattern_alternatives_suffix,
sep: separators,
},
{
pattern: pattern_alternatives_combine_lite,
},
{
pattern: pattern_alternatives_combine_hard,
2016-01-14 21:32:02 +03:00
},
2016-01-08 20:14:31 +03:00
} {
glob, err := Compile(test.pattern, test.sep)
if err != nil {
t.Errorf("#%d compile pattern error: %s", id, err)
continue
}
matcher := glob.(match.Matcher)
2016-01-15 19:50:12 +03:00
fmt.Println(test.pattern)
fmt.Println(strings.Repeat("=", len(test.pattern)))
fmt.Println(draw(test.pattern, matcher))
fmt.Println()
fmt.Println(matcher.String())
fmt.Println()
2016-01-08 20:14:31 +03:00
}
}
2015-12-24 19:00:41 +03:00
func TestIndexByteNonEscaped(t *testing.T) {
2015-11-30 19:21:30 +03:00
for _, test := range []struct {
2016-01-08 20:14:31 +03:00
s string
2015-12-24 17:54:54 +03:00
n, e byte
2016-01-08 20:14:31 +03:00
i int
2015-11-30 17:58:20 +03:00
}{
{
2015-12-24 17:54:54 +03:00
"\\n_n",
'n',
'\\',
3,
2015-11-30 17:58:20 +03:00
},
{
2015-12-24 17:54:54 +03:00
"ab",
'a',
'\\',
2015-11-30 17:58:20 +03:00
0,
2015-12-24 17:54:54 +03:00
},
{
"ab",
'b',
'\\',
1,
},
{
"",
'b',
'\\',
-1,
2015-11-30 17:58:20 +03:00
},
2015-12-24 19:00:41 +03:00
{
"\\b",
'b',
'\\',
-1,
},
2015-11-30 19:21:30 +03:00
} {
2015-12-24 17:54:54 +03:00
i := indexByteNonEscaped(test.s, test.n, test.e, 0)
if i != test.i {
t.Errorf("unexpeted index: expected %v, got %v", test.i, i)
2015-11-30 17:58:20 +03:00
}
}
}
func TestGlob(t *testing.T) {
2015-11-30 19:21:30 +03:00
for _, test := range []test{
2016-01-09 02:34:41 +03:00
glob(true, "* ?at * eyes", "my cat has very bright eyes"),
2015-11-30 17:58:20 +03:00
glob(true, "abc", "abc"),
glob(true, "a*c", "abc"),
glob(true, "a*c", "a12345c"),
glob(true, "a?c", "a1c"),
glob(true, "a.b", "a.b", "."),
glob(true, "a.*", "a.b", "."),
glob(true, "a.**", "a.b.c", "."),
glob(true, "a.?.c", "a.b.c", "."),
glob(true, "a.?.?", "a.b.c", "."),
glob(true, "?at", "cat"),
2015-11-30 18:24:20 +03:00
glob(true, "?at", "fat"),
2015-11-30 17:58:20 +03:00
glob(true, "*", "abc"),
2015-11-30 19:01:49 +03:00
glob(true, `\*`, "*"),
2015-11-30 17:58:20 +03:00
glob(true, "**", "a.b.c", "."),
glob(false, "?at", "at"),
2015-11-30 18:24:20 +03:00
glob(false, "?at", "fat", "f"),
2015-11-30 17:58:20 +03:00
glob(false, "a.*", "a.b.c", "."),
glob(false, "a.?.c", "a.bb.c", "."),
glob(false, "*", "a.b.c", "."),
glob(true, "*test", "this is a test"),
glob(true, "this*", "this is a test"),
glob(true, "*is *", "this is a test"),
glob(true, "*is*a*", "this is a test"),
glob(true, "**test**", "this is a test"),
glob(true, "**is**a***test*", "this is a test"),
glob(false, "*is", "this is a test"),
glob(false, "*no*", "this is a test"),
2016-01-08 20:14:31 +03:00
glob(true, "[!a]*", "this is a test3"),
2016-01-09 02:34:41 +03:00
glob(true, "*abc", "abcabc"),
2016-01-08 20:14:31 +03:00
glob(true, "**abc", "abcabc"),
2016-01-09 02:34:41 +03:00
glob(true, "???", "abc"),
glob(true, "?*?", "abc"),
glob(true, "?*?", "ac"),
2015-12-24 19:00:41 +03:00
2016-01-11 10:17:19 +03:00
glob(true, "{abc,def}ghi", "defghi"),
glob(true, "{abc,abcd}a", "abcda"),
glob(true, "{a,ab}{bc,f}", "abc"),
glob(true, "{*,**}{a,b}", "ab"),
glob(false, "{*,**}{a,b}", "ac"),
2015-12-24 19:00:41 +03:00
glob(true, pattern_all, fixture_all),
glob(true, pattern_plain, fixture_plain),
glob(true, pattern_multiple, fixture_multiple),
2016-01-09 02:34:41 +03:00
glob(true, pattern_alternatives, fixture_alternatives),
2016-01-15 19:50:12 +03:00
glob(true, pattern_alternatives_suffix, fixture_alternatives_suffix_first),
glob(true, pattern_alternatives_suffix, fixture_alternatives_suffix_second),
glob(true, pattern_alternatives_combine_hard, fixture_alternatives_combine_hard),
glob(true, pattern_alternatives_combine_lite, fixture_alternatives_combine_lite),
2015-12-24 19:00:41 +03:00
glob(true, pattern_prefix, fixture_prefix_suffix),
glob(true, pattern_suffix, fixture_prefix_suffix),
glob(true, pattern_prefix_suffix, fixture_prefix_suffix),
2015-11-30 19:21:30 +03:00
} {
2016-01-08 20:14:31 +03:00
g, err := Compile(test.pattern, test.delimiters...)
2015-12-24 17:54:54 +03:00
if err != nil {
2015-12-24 19:00:41 +03:00
t.Errorf("parsing pattern %q error: %s", test.pattern, err)
2015-12-24 17:54:54 +03:00
continue
}
2015-11-30 17:58:20 +03:00
result := g.Match(test.match)
if result != test.should {
2016-01-11 10:17:19 +03:00
t.Errorf("pattern %q matching %q should be %v but got %v\n%s", test.pattern, test.match, test.should, result, g)
2015-11-30 17:58:20 +03:00
}
}
}
2015-12-24 19:00:41 +03:00
func BenchmarkParse(b *testing.B) {
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2016-01-08 20:14:31 +03:00
Compile(pattern_all)
2015-12-01 17:22:17 +03:00
}
}
2015-11-30 17:58:20 +03:00
2015-12-24 19:00:41 +03:00
func BenchmarkAll(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_all)
2016-01-09 02:34:41 +03:00
// fmt.Println("tree all:")
// fmt.Println(m)
2015-11-30 17:58:20 +03:00
2015-11-30 18:24:20 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_all)
2015-11-30 17:58:20 +03:00
}
}
2015-12-01 17:22:17 +03:00
2015-12-24 19:00:41 +03:00
func BenchmarkMultiple(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_multiple)
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_multiple)
2015-12-01 17:22:17 +03:00
}
}
2016-01-09 02:34:41 +03:00
func BenchmarkAlternatives(b *testing.B) {
m, _ := Compile(pattern_alternatives)
for i := 0; i < b.N; i++ {
_ = m.Match(fixture_alternatives)
}
}
2016-01-15 19:50:12 +03:00
func BenchmarkAlternativesSuffixFirst(b *testing.B) {
m, _ := Compile(pattern_alternatives_suffix)
for i := 0; i < b.N; i++ {
_ = m.Match(fixture_alternatives_suffix_first)
}
}
func BenchmarkAlternativesSuffixSecond(b *testing.B) {
m, _ := Compile(pattern_alternatives_suffix)
for i := 0; i < b.N; i++ {
_ = m.Match(fixture_alternatives_suffix_second)
}
}
func BenchmarkAlternativesCombineLite(b *testing.B) {
m, _ := Compile(pattern_alternatives_combine_lite)
for i := 0; i < b.N; i++ {
_ = m.Match(fixture_alternatives_combine_lite)
}
}
func BenchmarkAlternativesCombineHard(b *testing.B) {
m, _ := Compile(pattern_alternatives_combine_hard)
for i := 0; i < b.N; i++ {
_ = m.Match(fixture_alternatives_combine_hard)
}
}
2015-12-24 19:00:41 +03:00
func BenchmarkPlain(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_plain)
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_plain)
2015-12-01 17:22:17 +03:00
}
}
2015-12-24 19:00:41 +03:00
func BenchmarkPrefix(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_prefix)
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_prefix_suffix)
2015-12-01 17:22:17 +03:00
}
}
2015-12-24 19:00:41 +03:00
func BenchmarkSuffix(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_suffix)
2015-11-30 17:58:20 +03:00
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_prefix_suffix)
2015-12-01 17:22:17 +03:00
}
}
2015-12-24 19:00:41 +03:00
func BenchmarkPrefixSuffix(b *testing.B) {
2016-01-08 20:14:31 +03:00
m, _ := Compile(pattern_prefix_suffix)
2015-12-01 17:22:17 +03:00
for i := 0; i < b.N; i++ {
2015-12-24 19:00:41 +03:00
_ = m.Match(fixture_prefix_suffix)
2015-12-01 17:22:17 +03:00
}
2016-01-08 20:14:31 +03:00
}
2016-01-09 02:34:41 +03:00
//BenchmarkParse-8 500000 2235 ns/op
//BenchmarkAll-8 20000000 73.1 ns/op
//BenchmarkMultiple-8 10000000 130 ns/op
//BenchmarkPlain-8 200000000 6.70 ns/op
//BenchmarkPrefix-8 200000000 8.36 ns/op
//BenchmarkSuffix-8 200000000 8.35 ns/op
//BenchmarkPrefixSuffix-8 100000000 13.6 ns/op