2021-06-19 08:45:43 -04:00
|
|
|
package v4_test
|
2019-02-10 13:04:11 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2019-06-29 11:43:30 -04:00
|
|
|
"reflect"
|
2019-02-10 13:04:11 -05:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
2021-10-28 06:34:19 -04:00
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
2021-02-16 15:31:50 -05:00
|
|
|
|
|
|
|
core "github.com/v2fly/v2ray-core/v4"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/dispatcher"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/log"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/proxyman"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/router"
|
2021-10-28 06:34:19 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/app/router/routercommon"
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
clog "github.com/v2fly/v2ray-core/v4/common/log"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
2021-10-28 06:34:19 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/muxcfg"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/testassist"
|
|
|
|
|
|
|
|
// Geo loaders
|
|
|
|
_ "github.com/v2fly/v2ray-core/v4/infra/conf/geodata/memconservative"
|
|
|
|
_ "github.com/v2fly/v2ray-core/v4/infra/conf/geodata/standard"
|
2021-11-27 04:16:41 -05:00
|
|
|
v4 "github.com/v2fly/v2ray-core/v4/infra/conf/v4"
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/blackhole"
|
|
|
|
dns_proxy "github.com/v2fly/v2ray-core/v4/proxy/dns"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/freedom"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/vmess"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/vmess/inbound"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/http"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/tls"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/websocket"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestV2RayConfig(t *testing.T) {
|
|
|
|
createParser := func() func(string) (proto.Message, error) {
|
|
|
|
return func(s string) (proto.Message, error) {
|
2021-06-19 08:45:43 -04:00
|
|
|
config := new(v4.Config)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err := json.Unmarshal([]byte(s), config); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return config.Build()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-19 08:28:20 -04:00
|
|
|
testassist.RunMultiTestCase(t, []testassist.TestCase{
|
2019-02-10 13:04:11 -05:00
|
|
|
{
|
|
|
|
Input: `{
|
|
|
|
"outbound": {
|
|
|
|
"protocol": "freedom",
|
|
|
|
"settings": {}
|
|
|
|
},
|
|
|
|
"log": {
|
|
|
|
"access": "/var/log/v2ray/access.log",
|
|
|
|
"loglevel": "error",
|
|
|
|
"error": "/var/log/v2ray/error.log"
|
|
|
|
},
|
|
|
|
"inbound": {
|
|
|
|
"streamSettings": {
|
|
|
|
"network": "ws",
|
|
|
|
"wsSettings": {
|
|
|
|
"headers": {
|
|
|
|
"host": "example.domain"
|
|
|
|
},
|
|
|
|
"path": ""
|
|
|
|
},
|
|
|
|
"tlsSettings": {
|
|
|
|
"alpn": "h2"
|
|
|
|
},
|
|
|
|
"security": "tls"
|
|
|
|
},
|
|
|
|
"protocol": "vmess",
|
|
|
|
"port": 443,
|
|
|
|
"settings": {
|
|
|
|
"clients": [
|
|
|
|
{
|
|
|
|
"alterId": 100,
|
|
|
|
"security": "aes-128-gcm",
|
|
|
|
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"inbounds": [{
|
|
|
|
"streamSettings": {
|
|
|
|
"network": "ws",
|
|
|
|
"wsSettings": {
|
|
|
|
"headers": {
|
|
|
|
"host": "example.domain"
|
|
|
|
},
|
|
|
|
"path": ""
|
|
|
|
},
|
|
|
|
"tlsSettings": {
|
|
|
|
"alpn": "h2"
|
|
|
|
},
|
|
|
|
"security": "tls"
|
|
|
|
},
|
|
|
|
"protocol": "vmess",
|
|
|
|
"port": "443-500",
|
|
|
|
"allocate": {
|
|
|
|
"strategy": "random",
|
|
|
|
"concurrency": 3
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"clients": [
|
|
|
|
{
|
|
|
|
"alterId": 100,
|
|
|
|
"security": "aes-128-gcm",
|
|
|
|
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
"outboundDetour": [
|
|
|
|
{
|
|
|
|
"tag": "blocked",
|
|
|
|
"protocol": "blackhole"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"protocol": "dns"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"routing": {
|
|
|
|
"strategy": "rules",
|
|
|
|
"settings": {
|
|
|
|
"rules": [
|
|
|
|
{
|
|
|
|
"ip": [
|
|
|
|
"10.0.0.0/8"
|
|
|
|
],
|
|
|
|
"type": "field",
|
|
|
|
"outboundTag": "blocked"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"transport": {
|
|
|
|
"httpSettings": {
|
|
|
|
"path": "/test"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
Parser: createParser(),
|
|
|
|
Output: &core.Config{
|
2021-06-19 09:36:54 -04:00
|
|
|
App: []*anypb.Any{
|
2019-02-10 13:04:11 -05:00
|
|
|
serial.ToTypedMessage(&log.Config{
|
2021-10-02 17:29:37 -04:00
|
|
|
Error: &log.LogSpecification{
|
|
|
|
Type: log.LogType_File,
|
|
|
|
Level: clog.Severity_Error,
|
|
|
|
Path: "/var/log/v2ray/error.log",
|
|
|
|
},
|
|
|
|
Access: &log.LogSpecification{
|
|
|
|
Type: log.LogType_File,
|
|
|
|
Path: "/var/log/v2ray/access.log",
|
|
|
|
},
|
2019-02-10 13:04:11 -05:00
|
|
|
}),
|
2019-11-20 02:08:20 -05:00
|
|
|
serial.ToTypedMessage(&dispatcher.Config{}),
|
|
|
|
serial.ToTypedMessage(&proxyman.InboundConfig{}),
|
|
|
|
serial.ToTypedMessage(&proxyman.OutboundConfig{}),
|
2019-02-10 13:04:11 -05:00
|
|
|
serial.ToTypedMessage(&router.Config{
|
2021-09-07 08:43:28 -04:00
|
|
|
DomainStrategy: router.DomainStrategy_AsIs,
|
2019-02-10 13:04:11 -05:00
|
|
|
Rule: []*router.RoutingRule{
|
|
|
|
{
|
2021-09-07 08:43:28 -04:00
|
|
|
Geoip: []*routercommon.GeoIP{
|
2019-02-10 13:04:11 -05:00
|
|
|
{
|
2021-09-07 08:43:28 -04:00
|
|
|
Cidr: []*routercommon.CIDR{
|
2019-02-10 13:04:11 -05:00
|
|
|
{
|
|
|
|
Ip: []byte{10, 0, 0, 0},
|
|
|
|
Prefix: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TargetTag: &router.RoutingRule_Tag{
|
|
|
|
Tag: "blocked",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
|
|
|
{
|
|
|
|
SenderSettings: serial.ToTypedMessage(&proxyman.SenderConfig{
|
|
|
|
StreamSettings: &internet.StreamConfig{
|
|
|
|
ProtocolName: "tcp",
|
|
|
|
TransportSettings: []*internet.TransportConfig{
|
|
|
|
{
|
|
|
|
ProtocolName: "http",
|
|
|
|
Settings: serial.ToTypedMessage(&http.Config{
|
|
|
|
Path: "/test",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{
|
|
|
|
DomainStrategy: freedom.Config_AS_IS,
|
|
|
|
UserLevel: 0,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Tag: "blocked",
|
|
|
|
SenderSettings: serial.ToTypedMessage(&proxyman.SenderConfig{
|
|
|
|
StreamSettings: &internet.StreamConfig{
|
|
|
|
ProtocolName: "tcp",
|
|
|
|
TransportSettings: []*internet.TransportConfig{
|
|
|
|
{
|
|
|
|
ProtocolName: "http",
|
|
|
|
Settings: serial.ToTypedMessage(&http.Config{
|
|
|
|
Path: "/test",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&blackhole.Config{}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
SenderSettings: serial.ToTypedMessage(&proxyman.SenderConfig{
|
|
|
|
StreamSettings: &internet.StreamConfig{
|
|
|
|
ProtocolName: "tcp",
|
|
|
|
TransportSettings: []*internet.TransportConfig{
|
|
|
|
{
|
|
|
|
ProtocolName: "http",
|
|
|
|
Settings: serial.ToTypedMessage(&http.Config{
|
|
|
|
Path: "/test",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
2019-02-12 16:34:43 -05:00
|
|
|
ProxySettings: serial.ToTypedMessage(&dns_proxy.Config{
|
|
|
|
Server: &net.Endpoint{},
|
|
|
|
}),
|
2019-02-10 13:04:11 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: &net.PortRange{
|
|
|
|
From: 443,
|
|
|
|
To: 443,
|
|
|
|
},
|
|
|
|
StreamSettings: &internet.StreamConfig{
|
|
|
|
ProtocolName: "websocket",
|
|
|
|
TransportSettings: []*internet.TransportConfig{
|
|
|
|
{
|
|
|
|
ProtocolName: "websocket",
|
|
|
|
Settings: serial.ToTypedMessage(&websocket.Config{
|
|
|
|
Header: []*websocket.Header{
|
|
|
|
{
|
|
|
|
Key: "host",
|
|
|
|
Value: "example.domain",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ProtocolName: "http",
|
|
|
|
Settings: serial.ToTypedMessage(&http.Config{
|
|
|
|
Path: "/test",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
SecurityType: "v2ray.core.transport.internet.tls.Config",
|
2021-06-19 09:36:54 -04:00
|
|
|
SecuritySettings: []*anypb.Any{
|
2019-02-10 13:04:11 -05:00
|
|
|
serial.ToTypedMessage(&tls.Config{
|
|
|
|
NextProtocol: []string{"h2"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&inbound.Config{
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Level: 0,
|
|
|
|
Account: serial.ToTypedMessage(&vmess.Account{
|
|
|
|
Id: "0cdf8a45-303d-4fed-9780-29aa7f54175e",
|
|
|
|
AlterId: 100,
|
|
|
|
SecuritySettings: &protocol.SecurityConfig{
|
|
|
|
Type: protocol.SecurityType_AES128_GCM,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: &net.PortRange{
|
|
|
|
From: 443,
|
|
|
|
To: 500,
|
|
|
|
},
|
|
|
|
AllocationStrategy: &proxyman.AllocationStrategy{
|
|
|
|
Type: proxyman.AllocationStrategy_Random,
|
|
|
|
Concurrency: &proxyman.AllocationStrategy_AllocationStrategyConcurrency{
|
|
|
|
Value: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
StreamSettings: &internet.StreamConfig{
|
|
|
|
ProtocolName: "websocket",
|
|
|
|
TransportSettings: []*internet.TransportConfig{
|
|
|
|
{
|
|
|
|
ProtocolName: "websocket",
|
|
|
|
Settings: serial.ToTypedMessage(&websocket.Config{
|
|
|
|
Header: []*websocket.Header{
|
|
|
|
{
|
|
|
|
Key: "host",
|
|
|
|
Value: "example.domain",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ProtocolName: "http",
|
|
|
|
Settings: serial.ToTypedMessage(&http.Config{
|
|
|
|
Path: "/test",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
SecurityType: "v2ray.core.transport.internet.tls.Config",
|
2021-06-19 09:36:54 -04:00
|
|
|
SecuritySettings: []*anypb.Any{
|
2019-02-10 13:04:11 -05:00
|
|
|
serial.ToTypedMessage(&tls.Config{
|
|
|
|
NextProtocol: []string{"h2"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&inbound.Config{
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Level: 0,
|
|
|
|
Account: serial.ToTypedMessage(&vmess.Account{
|
|
|
|
Id: "0cdf8a45-303d-4fed-9780-29aa7f54175e",
|
|
|
|
AlterId: 100,
|
|
|
|
SecuritySettings: &protocol.SecurityConfig{
|
|
|
|
Type: protocol.SecurityType_AES128_GCM,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2019-06-29 11:43:30 -04:00
|
|
|
|
|
|
|
func TestMuxConfig_Build(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields string
|
|
|
|
want *proxyman.MultiplexingConfig
|
|
|
|
}{
|
|
|
|
{"default", `{"enabled": true, "concurrency": 16}`, &proxyman.MultiplexingConfig{
|
|
|
|
Enabled: true,
|
|
|
|
Concurrency: 16,
|
|
|
|
}},
|
|
|
|
{"empty def", `{}`, &proxyman.MultiplexingConfig{
|
|
|
|
Enabled: false,
|
|
|
|
Concurrency: 8,
|
|
|
|
}},
|
|
|
|
{"not enable", `{"enabled": false, "concurrency": 4}`, &proxyman.MultiplexingConfig{
|
|
|
|
Enabled: false,
|
|
|
|
Concurrency: 4,
|
|
|
|
}},
|
|
|
|
{"forbidden", `{"enabled": false, "concurrency": -1}`, nil},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2021-09-04 14:43:10 -04:00
|
|
|
m := &muxcfg.MuxConfig{}
|
2019-06-29 11:43:30 -04:00
|
|
|
common.Must(json.Unmarshal([]byte(tt.fields), m))
|
|
|
|
if got := m.Build(); !reflect.DeepEqual(got, tt.want) {
|
|
|
|
t.Errorf("MuxConfig.Build() = %v, want %v", got, tt.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|