1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 07:16:29 -04:00
v2fly/common/strmatcher/matchers_test.go

74 lines
1.2 KiB
Go
Raw Normal View History

2018-06-26 15:57:41 -04:00
package strmatcher_test
import (
"testing"
"github.com/v2fly/v2ray-core/v5/common"
. "github.com/v2fly/v2ray-core/v5/common/strmatcher"
2018-06-26 15:57:41 -04:00
)
func TestMatcher(t *testing.T) {
cases := []struct {
pattern string
mType Type
input string
output bool
}{
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Domain,
2021-02-16 15:31:50 -05:00
input: "www.v2fly.org",
2018-06-26 15:57:41 -04:00
output: true,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Domain,
2021-02-16 15:31:50 -05:00
input: "v2fly.org",
2018-06-26 15:57:41 -04:00
output: true,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Domain,
2021-02-16 15:31:50 -05:00
input: "www.v3fly.org",
2018-06-26 15:57:41 -04:00
output: false,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Domain,
2021-02-16 15:31:50 -05:00
input: "2fly.org",
2018-06-26 15:57:41 -04:00
output: false,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Domain,
2021-02-16 15:31:50 -05:00
input: "xv2fly.org",
2018-06-26 15:57:41 -04:00
output: false,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Full,
2021-02-16 15:31:50 -05:00
input: "v2fly.org",
2018-06-26 15:57:41 -04:00
output: true,
},
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-06-26 15:57:41 -04:00
mType: Full,
2021-02-16 15:31:50 -05:00
input: "xv2fly.org",
2018-06-26 15:57:41 -04:00
output: false,
},
2018-08-20 09:39:58 -04:00
{
2021-02-16 15:31:50 -05:00
pattern: "v2fly.org",
2018-08-20 09:39:58 -04:00
mType: Regex,
2021-02-16 15:31:50 -05:00
input: "v2flyxorg",
2018-08-20 09:39:58 -04:00
output: true,
},
2018-06-26 15:57:41 -04:00
}
for _, test := range cases {
matcher, err := test.mType.New(test.pattern)
common.Must(err)
2019-01-08 17:27:02 -05:00
if m := matcher.Match(test.input); m != test.output {
t.Error("unexpected output: ", m, " for test case ", test)
}
2018-06-26 15:57:41 -04:00
}
}