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

197 lines
4.6 KiB
Go
Raw Normal View History

2017-05-08 10:18:13 +00:00
package router_test
import (
"context"
2017-11-06 21:30:56 +00:00
"os"
"path/filepath"
"strconv"
2017-05-08 10:18:13 +00:00
"testing"
2017-11-06 21:30:56 +00:00
"time"
2017-05-08 10:18:13 +00:00
2017-11-06 21:30:56 +00:00
proto "github.com/golang/protobuf/proto"
2017-05-08 10:18:13 +00:00
. "v2ray.com/core/app/router"
2017-11-06 21:30:56 +00:00
"v2ray.com/core/common"
"v2ray.com/core/common/errors"
2017-05-08 10:18:13 +00:00
"v2ray.com/core/common/net"
2017-11-06 21:30:56 +00:00
"v2ray.com/core/common/platform"
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-11-06 21:30:56 +00:00
"v2ray.com/ext/sysio"
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{
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("v2ray.com"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.v2ray.com.www"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("v2ray.co"), 80)),
output: false,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.google.com"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 19:46:57 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("facebook.com"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 19:46:57 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("www.facebook.com"), 80)),
output: false,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 19:46:57 +00:00
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{
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("8.8.8.8"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("8.8.4.4"), 80)),
output: false,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:24:53 +00:00
input: proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.ParseAddress("2001:0db8:85a3:0000:0000:8a2e:0370:7334"), 80)),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 19:46:57 +00:00
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{
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:28:22 +00:00
input: protocol.ContextWithUser(context.Background(), &protocol.User{Email: "admin@v2ray.com"}),
output: true,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 11:28:22 +00:00
input: protocol.ContextWithUser(context.Background(), &protocol.User{Email: "love@v2ray.com"}),
output: false,
},
2017-12-03 00:04:38 +00:00
{
2017-05-17 19:46:57 +00:00
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
}
}
}
2017-11-06 21:30:56 +00:00
func loadGeoSite(country string) ([]*Domain, error) {
geositeBytes, err := sysio.ReadAsset("geosite.dat")
if err != nil {
return nil, err
}
var geositeList GeoSiteList
if err := proto.Unmarshal(geositeBytes, &geositeList); err != nil {
return nil, err
}
for _, site := range geositeList.Entry {
if site.CountryCode == country {
return site.Domain, nil
}
}
return nil, errors.New("country not found: " + country)
}
func TestChinaSites(t *testing.T) {
assert := With(t)
2017-12-25 20:54:44 +00:00
common.Must(sysio.CopyFile(platform.GetAssetLocation("geosite.dat"), filepath.Join(os.Getenv("GOPATH"), "src", "v2ray.com", "core", "release", "config", "geosite.dat")))
2017-11-06 21:30:56 +00:00
domains, err := loadGeoSite("CN")
assert(err, IsNil)
matcher := NewCachableDomainMatcher()
for _, d := range domains {
assert(matcher.Add(d), IsNil)
}
assert(matcher.ApplyDomain("163.com"), IsTrue)
assert(matcher.ApplyDomain("163.com"), IsTrue)
assert(matcher.ApplyDomain("164.com"), IsFalse)
assert(matcher.ApplyDomain("164.com"), IsFalse)
for i := 0; i < 1024; i++ {
assert(matcher.ApplyDomain(strconv.Itoa(i)+".not-exists.com"), IsFalse)
}
time.Sleep(time.Second * 10)
for i := 0; i < 1024; i++ {
assert(matcher.ApplyDomain(strconv.Itoa(i)+".not-exists2.com"), IsFalse)
}
}