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-08 20:14:31 +03:00
|
|
|
"reflect"
|
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-09 02:34:41 +03:00
|
|
|
pattern_alternatives = "{https://*.google.*,*yahoo.*}"
|
|
|
|
fixture_alternatives = "http://yahoo.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"
|
|
|
|
)
|
|
|
|
|
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 {
|
|
|
|
if tree, ok := m.(match.BTree); ok {
|
|
|
|
return fmt.Sprintf(`digraph G {graph[label="%s"];%s}`, pattern, graphviz(tree, fmt.Sprintf("%x", rand.Int63())))
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func graphviz(tree match.BTree, id string) string {
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
|
|
|
|
fmt.Fprintf(buf, `"%s"[label="%s"];`, id, tree.Value.String())
|
|
|
|
for _, m := range []match.Matcher{tree.Left, tree.Right} {
|
|
|
|
switch n := m.(type) {
|
|
|
|
case nil:
|
|
|
|
rnd := rand.Int63()
|
|
|
|
fmt.Fprintf(buf, `"%x"[label="<nil>"];`, rnd)
|
|
|
|
// fmt.Fprintf(buf, `"%s"->"%x"[label="len = 0"];`, id, rnd)
|
|
|
|
fmt.Fprintf(buf, `"%s"->"%x";`, id, rnd)
|
|
|
|
|
|
|
|
case match.BTree:
|
|
|
|
sub := fmt.Sprintf("%x", rand.Int63())
|
|
|
|
// fmt.Fprintf(buf, `"%s"->"%s"[label="len=%d"];`, id, sub, n.Len())
|
|
|
|
fmt.Fprintf(buf, `"%s"->"%s";`, id, sub)
|
|
|
|
fmt.Fprintf(buf, graphviz(n, sub))
|
|
|
|
|
|
|
|
default:
|
|
|
|
rnd := rand.Int63()
|
|
|
|
fmt.Fprintf(buf, `"%x"[label="%s"];`, rnd, m.String())
|
|
|
|
// fmt.Fprintf(buf, `"%s"->"%x"[label="len = %d"];`, id, rnd, m.Len())
|
|
|
|
fmt.Fprintf(buf, `"%s"->"%x";`, id, rnd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.String()
|
|
|
|
}
|
|
|
|
|
2016-01-08 20:14:31 +03:00
|
|
|
func TestCompilePattern(t *testing.T) {
|
|
|
|
for id, test := range []struct {
|
|
|
|
pattern string
|
|
|
|
sep string
|
|
|
|
exp match.Matcher
|
|
|
|
}{
|
2016-01-13 01:27:13 +03:00
|
|
|
// {
|
|
|
|
// pattern: "left*??B*abcd*[!b]??*abc*right",
|
|
|
|
// exp: match.Raw{"t"},
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// pattern: "abc*??def",
|
|
|
|
// exp: match.Raw{"t"},
|
|
|
|
// },
|
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)
|
|
|
|
if !reflect.DeepEqual(test.exp, matcher) {
|
2016-01-13 01:26:48 +03:00
|
|
|
t.Errorf("#%d unexpected compilation:\nexp: %s\nact: %s", id, test.exp, draw(test.pattern, matcher))
|
2016-01-08 20:14:31 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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),
|
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)
|
|
|
|
}
|
|
|
|
}
|
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
|