1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00
v2fly/app/router/condition_test.go

182 lines
3.9 KiB
Go
Raw Normal View History

2017-05-08 10:18:13 +00:00
package router_test
import (
"context"
"testing"
. "v2ray.com/core/app/router"
"v2ray.com/core/common/net"
2017-05-17 11:28:22 +00:00
"v2ray.com/core/common/protocol"
2017-05-08 10:18:13 +00:00
"v2ray.com/core/proxy"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2017-05-08 10:18:13 +00:00
)
func TestSubDomainMatcher(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2017-05-08 10:18:13 +00:00
cases := []struct {
pattern string
2017-11-06 20:12:28 +00:00
input string
2017-05-08 10:18:13 +00:00
output bool
}{
{
pattern: "v2ray.com",
2017-11-06 20:12:28 +00:00
input: "www.v2ray.com",
2017-05-08 10:18:13 +00:00
output: true,
},
{
pattern: "v2ray.com",
2017-11-06 20:12:28 +00:00
input: "v2ray.com",
2017-05-08 10:18:13 +00:00
output: true,
},
{
pattern: "v2ray.com",
2017-11-06 20:12:28 +00:00
input: "www.v3ray.com",
2017-05-08 10:18:13 +00:00
output: false,
},
{
pattern: "v2ray.com",
2017-11-06 20:12:28 +00:00
input: "2ray.com",
2017-05-08 10:18:13 +00:00
output: false,
},
2017-05-09 11:39:09 +00:00
{
pattern: "v2ray.com",
2017-11-06 20:12:28 +00:00
input: "xv2ray.com",
2017-05-09 11:39:09 +00:00
output: false,
},
2017-05-08 10:18:13 +00:00
}
for _, test := range cases {
matcher := NewSubDomainMatcher(test.pattern)
2017-10-24 14:15:35 +00:00
assert(matcher.Apply(test.input) == test.output, IsTrue)
2017-05-08 10:18:13 +00:00
}
}
2017-05-17 11:24:53 +00:00
func TestRoutingRule(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2017-05-17 11:24:53 +00:00
type ruleTest struct {
input context.Context
output bool
}
cases := []struct {
rule *RoutingRule
test []ruleTest
}{
{
rule: &RoutingRule{
Domain: []*Domain{
{
Value: "v2ray.com",
Type: Domain_Plain,
},
{
Value: "google.com",
Type: Domain_Domain,
},
2017-05-17 19:46:57 +00:00
{
Value: "^facebook\\.com$",
Type: Domain_Regex,
},
2017-05-17 11:24:53 +00:00
},
},
test: []ruleTest{
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("v2ray.com"), 80)),
output: true,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.v2ray.com.www"), 80)),
output: true,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("v2ray.co"), 80)),
output: false,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.google.com"), 80)),
output: true,
},
2017-05-17 19:46:57 +00:00
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("facebook.com"), 80)),
output: true,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.facebook.com"), 80)),
output: false,
},
ruleTest{
input: context.Background(),
output: false,
},
2017-05-17 11:24:53 +00:00
},
},
{
rule: &RoutingRule{
Cidr: []*CIDR{
{
Ip: []byte{8, 8, 8, 8},
Prefix: 32,
},
{
Ip: []byte{8, 8, 8, 8},
Prefix: 32,
},
{
Ip: net.ParseAddress("2001:0db8:85a3:0000:0000:8a2e:0370:7334").IP(),
Prefix: 128,
},
},
},
test: []ruleTest{
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("8.8.8.8"), 80)),
output: true,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("8.8.4.4"), 80)),
output: false,
},
ruleTest{
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("2001:0db8:85a3:0000:0000:8a2e:0370:7334"), 80)),
output: true,
},
2017-05-17 19:46:57 +00:00
ruleTest{
input: context.Background(),
output: false,
},
2017-05-17 11:24:53 +00:00
},
},
2017-05-17 11:28:22 +00:00
{
rule: &RoutingRule{
UserEmail: []string{
"admin@v2ray.com",
},
},
test: []ruleTest{
ruleTest{
input: protocol.ContextWithUser(context.Background(), &protocol.User{Email: "admin@v2ray.com"}),
output: true,
},
ruleTest{
input: protocol.ContextWithUser(context.Background(), &protocol.User{Email: "love@v2ray.com"}),
output: false,
},
2017-05-17 19:46:57 +00:00
ruleTest{
input: context.Background(),
output: false,
},
2017-05-17 11:28:22 +00:00
},
},
2017-05-17 11:24:53 +00:00
}
for _, test := range cases {
cond, err := test.rule.BuildCondition()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2017-05-17 11:24:53 +00:00
for _, t := range test.test {
2017-10-24 14:15:35 +00:00
assert(cond.Apply(t.input), Equals, t.output)
2017-05-17 11:24:53 +00:00
}
}
}