mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-08 03:07:47 -05:00
d9125f91af
* Fix: gci command for formatting code * Chore: format code
392 lines
8.0 KiB
Go
392 lines
8.0 KiB
Go
package router_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
"time"
|
|
_ "unsafe"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/app/router"
|
|
"github.com/v2fly/v2ray-core/v5/app/router/routercommon"
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
"github.com/v2fly/v2ray-core/v5/common/serial"
|
|
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon/testassist"
|
|
_ "github.com/v2fly/v2ray-core/v5/infra/conf/geodata/memconservative"
|
|
_ "github.com/v2fly/v2ray-core/v5/infra/conf/geodata/standard"
|
|
router2 "github.com/v2fly/v2ray-core/v5/infra/conf/synthetic/router"
|
|
)
|
|
|
|
func TestRouterConfig(t *testing.T) {
|
|
createParser := func() func(string) (proto.Message, error) {
|
|
return func(s string) (proto.Message, error) {
|
|
config := new(router2.RouterConfig)
|
|
if err := json.Unmarshal([]byte(s), config); err != nil {
|
|
return nil, err
|
|
}
|
|
return config.Build()
|
|
}
|
|
}
|
|
|
|
testassist.RunMultiTestCase(t, []testassist.TestCase{
|
|
{
|
|
Input: `{
|
|
"strategy": "rules",
|
|
"settings": {
|
|
"domainStrategy": "AsIs",
|
|
"rules": [
|
|
{
|
|
"type": "field",
|
|
"domain": [
|
|
"baidu.com",
|
|
"qq.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"domains": [
|
|
"v2fly.org",
|
|
"github.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"ip": [
|
|
"10.0.0.0/8",
|
|
"::1/128"
|
|
],
|
|
"outboundTag": "test"
|
|
},{
|
|
"type": "field",
|
|
"port": "53, 443, 1000-2000",
|
|
"outboundTag": "test"
|
|
},{
|
|
"type": "field",
|
|
"port": 123,
|
|
"outboundTag": "test"
|
|
}
|
|
]
|
|
},
|
|
"balancers": [
|
|
{
|
|
"tag": "b1",
|
|
"selector": ["test"]
|
|
},
|
|
{
|
|
"tag": "b2",
|
|
"selector": ["test"],
|
|
"strategy": {
|
|
"type": "leastload",
|
|
"settings": {
|
|
"healthCheck": {
|
|
"interval": "5m0s",
|
|
"sampling": 2,
|
|
"timeout": "5s",
|
|
"destination": "dest",
|
|
"connectivity": "conn"
|
|
},
|
|
"costs": [
|
|
{
|
|
"regexp": true,
|
|
"match": "\\d+(\\.\\d+)",
|
|
"value": 5
|
|
}
|
|
],
|
|
"baselines": ["400ms", "600ms"],
|
|
"expected": 6,
|
|
"maxRTT": "1000ms",
|
|
"tolerance": 0.5
|
|
}
|
|
},
|
|
"fallbackTag": "fall"
|
|
}
|
|
]
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: &router.Config{
|
|
DomainStrategy: router.DomainStrategy_AsIs,
|
|
BalancingRule: []*router.BalancingRule{
|
|
{
|
|
Tag: "b1",
|
|
OutboundSelector: []string{"test"},
|
|
Strategy: "random",
|
|
},
|
|
{
|
|
Tag: "b2",
|
|
OutboundSelector: []string{"test"},
|
|
Strategy: "leastload",
|
|
StrategySettings: serial.ToTypedMessage(&router.StrategyLeastLoadConfig{
|
|
Costs: []*router.StrategyWeight{
|
|
{
|
|
Regexp: true,
|
|
Match: "\\d+(\\.\\d+)",
|
|
Value: 5,
|
|
},
|
|
},
|
|
Baselines: []int64{
|
|
int64(time.Duration(400) * time.Millisecond),
|
|
int64(time.Duration(600) * time.Millisecond),
|
|
},
|
|
Expected: 6,
|
|
MaxRTT: int64(time.Duration(1000) * time.Millisecond),
|
|
Tolerance: 0.5,
|
|
}),
|
|
FallbackTag: "fall",
|
|
},
|
|
},
|
|
Rule: []*router.RoutingRule{
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "baidu.com",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "qq.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "v2fly.org",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "github.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Geoip: []*routercommon.GeoIP{
|
|
{
|
|
Cidr: []*routercommon.CIDR{
|
|
{
|
|
Ip: []byte{10, 0, 0, 0},
|
|
Prefix: 8,
|
|
},
|
|
{
|
|
Ip: []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
|
|
Prefix: 128,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "test",
|
|
},
|
|
},
|
|
{
|
|
PortList: &net.PortList{
|
|
Range: []*net.PortRange{
|
|
{From: 53, To: 53},
|
|
{From: 443, To: 443},
|
|
{From: 1000, To: 2000},
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "test",
|
|
},
|
|
},
|
|
{
|
|
PortList: &net.PortList{
|
|
Range: []*net.PortRange{
|
|
{From: 123, To: 123},
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Input: `{
|
|
"strategy": "rules",
|
|
"settings": {
|
|
"domainStrategy": "IPIfNonMatch",
|
|
"rules": [
|
|
{
|
|
"type": "field",
|
|
"domain": [
|
|
"baidu.com",
|
|
"qq.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"domains": [
|
|
"v2fly.org",
|
|
"github.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"ip": [
|
|
"10.0.0.0/8",
|
|
"::1/128"
|
|
],
|
|
"outboundTag": "test"
|
|
}
|
|
]
|
|
}
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: &router.Config{
|
|
DomainStrategy: router.DomainStrategy_IpIfNonMatch,
|
|
Rule: []*router.RoutingRule{
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "baidu.com",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "qq.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "v2fly.org",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "github.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Geoip: []*routercommon.GeoIP{
|
|
{
|
|
Cidr: []*routercommon.CIDR{
|
|
{
|
|
Ip: []byte{10, 0, 0, 0},
|
|
Prefix: 8,
|
|
},
|
|
{
|
|
Ip: []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
|
|
Prefix: 128,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Input: `{
|
|
"domainStrategy": "AsIs",
|
|
"rules": [
|
|
{
|
|
"type": "field",
|
|
"domain": [
|
|
"baidu.com",
|
|
"qq.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"domains": [
|
|
"v2fly.org",
|
|
"github.com"
|
|
],
|
|
"outboundTag": "direct"
|
|
},
|
|
{
|
|
"type": "field",
|
|
"ip": [
|
|
"10.0.0.0/8",
|
|
"::1/128"
|
|
],
|
|
"outboundTag": "test"
|
|
}
|
|
]
|
|
}`,
|
|
Parser: createParser(),
|
|
Output: &router.Config{
|
|
DomainStrategy: router.DomainStrategy_AsIs,
|
|
Rule: []*router.RoutingRule{
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "baidu.com",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "qq.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Domain: []*routercommon.Domain{
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "v2fly.org",
|
|
},
|
|
{
|
|
Type: routercommon.Domain_Plain,
|
|
Value: "github.com",
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "direct",
|
|
},
|
|
},
|
|
{
|
|
Geoip: []*routercommon.GeoIP{
|
|
{
|
|
Cidr: []*routercommon.CIDR{
|
|
{
|
|
Ip: []byte{10, 0, 0, 0},
|
|
Prefix: 8,
|
|
},
|
|
{
|
|
Ip: []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
|
|
Prefix: 128,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
Tag: "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|