Exemple #1
0
func TestMatch(t *testing.T) {
	var tc [][2]string = [][2]string{
		{"*", "a;*;"},
		{"a.jpg", "a.jpg;"},
		{"*.jpg", "a.jpg;.jpg;"},
		{"/a*", "/axx;/a;"},
		{"a*b", "ab;axb;"},
		{"*x*", "axb;ax;xb;x;"},
		{"a*b*c", "axbxc"},
	}

	for _, each := range tc {
		p := each[0]
		a := each[1]

		re := regax.Compile(p)
		for _, s := range strings.Split(a, ";") {
			s = strings.TrimSpace(s)
			if s == "" {
				continue
			}

			matched := re.Match(s)

			if !matched {
				t.Error(matched, p, s)
			}
		}
	}

}
Exemple #2
0
func TestFail(t *testing.T) {
	var tc [][2]string = [][2]string{
		{"a.jpg", "x.jpg;xa.jpg;a.jpgx;"},
		{"*.jpg", "jpg;xjpg;a.jpgx"},
		{"/a*", "/x;/;"},
		{"a*b", "xab;abx;"},
		{"*x*", "ab;"},
		{"a*b*c", "bxaxc;axbx;ab;bc;"},
	}

	for _, each := range tc {
		p := each[0]
		a := each[1]

		re := regax.Compile(p)
		for _, s := range strings.Split(a, ";") {
			if s == "" {
				continue
			}

			matched := re.Match(s)
			if matched {
				t.Error(matched, p, s)
			}
		}
	}

}
Exemple #3
0
func BenchmarkRegexp(b *testing.B) {
	b.StopTimer()
	p := "a*b*c"
	s := "axbxc"
	re := regax.Compile(p)

	b.StartTimer()
	for i := 0; i < b.N; i++ {
		re.Match(s)
	}
}
Exemple #4
0
func BenchmarkHT(b *testing.B) {
	b.StopTimer()
	p := "*/*"
	s := "text/html"
	re := regax.Compile(p)

	b.StartTimer()
	for i := 0; i < b.N; i++ {
		re.Match(s)
	}
}
Exemple #5
0
func BenchmarkSuffix(b *testing.B) {
	b.StopTimer()
	p := "*.jpg"
	s := "a.jpg"
	re := regax.Compile(p)

	b.StartTimer()
	for i := 0; i < b.N; i++ {
		re.Match(s)
	}
}