1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 04:25:23 +00:00
v2fly/app/router/router_test.go

198 lines
4.5 KiB
Go
Raw Normal View History

2016-10-12 14:11:13 +00:00
package router_test
import (
"context"
"testing"
2018-10-22 13:58:52 +00:00
"github.com/golang/mock/gomock"
2016-10-12 14:11:13 +00:00
. "v2ray.com/core/app/router"
"v2ray.com/core/common"
2017-01-13 23:27:45 +00:00
"v2ray.com/core/common/net"
"v2ray.com/core/common/session"
2018-11-07 20:25:43 +00:00
"v2ray.com/core/features/outbound"
2018-10-23 20:27:45 +00:00
"v2ray.com/core/testing/mocks"
)
2018-11-07 20:25:43 +00:00
type mockOutboundManager struct {
outbound.Manager
outbound.HandlerSelector
}
func TestSimpleRouter(t *testing.T) {
2018-10-22 13:58:52 +00:00
config := &Config{
Rule: []*RoutingRule{
{
2018-11-07 20:08:20 +00:00
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
2018-11-20 15:58:26 +00:00
Networks: []net.Network{net.Network_TCP},
2018-10-22 13:58:52 +00:00
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
2018-10-23 20:41:27 +00:00
mockDns := mocks.NewDNSClient(mockCtl)
2018-11-07 20:25:43 +00:00
mockOhm := mocks.NewOutboundManager(mockCtl)
mockHs := mocks.NewOutboundHandlerSelector(mockCtl)
2018-10-22 13:58:52 +00:00
r := new(Router)
2018-11-07 20:25:43 +00:00
common.Must(r.Init(config, mockDns, &mockOutboundManager{
Manager: mockOhm,
HandlerSelector: mockHs,
}))
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
2018-11-07 20:25:43 +00:00
tag, err := r.PickRoute(ctx)
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}
func TestSimpleBalancer(t *testing.T) {
config := &Config{
Rule: []*RoutingRule{
{
TargetTag: &RoutingRule_BalancingTag{
BalancingTag: "balance",
},
2018-11-20 15:58:26 +00:00
Networks: []net.Network{net.Network_TCP},
2018-11-07 20:25:43 +00:00
},
},
BalancingRule: []*BalancingRule{
{
Tag: "balance",
OutboundSelector: []string{"test-"},
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDns := mocks.NewDNSClient(mockCtl)
mockOhm := mocks.NewOutboundManager(mockCtl)
mockHs := mocks.NewOutboundHandlerSelector(mockCtl)
mockHs.EXPECT().Select(gomock.Eq([]string{"test-"})).Return([]string{"test"})
r := new(Router)
common.Must(r.Init(config, mockDns, &mockOutboundManager{
Manager: mockOhm,
HandlerSelector: mockHs,
}))
2018-10-22 13:58:52 +00:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
2018-10-22 13:58:52 +00:00
tag, err := r.PickRoute(ctx)
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}
2018-10-22 13:58:52 +00:00
func TestIPOnDemand(t *testing.T) {
config := &Config{
DomainStrategy: Config_IpOnDemand,
Rule: []*RoutingRule{
{
2018-11-07 20:08:20 +00:00
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
2018-10-22 13:58:52 +00:00
Cidr: []*CIDR{
{
2018-10-22 13:58:52 +00:00
Ip: []byte{192, 168, 0, 0},
Prefix: 16,
},
2016-10-11 21:02:44 +00:00
},
2018-10-22 13:58:52 +00:00
},
2016-02-01 22:21:54 +00:00
},
}
2018-10-22 13:58:52 +00:00
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
2018-10-23 20:41:27 +00:00
mockDns := mocks.NewDNSClient(mockCtl)
2018-10-22 13:58:52 +00:00
mockDns.EXPECT().LookupIP(gomock.Eq("v2ray.com")).Return([]net.IP{{192, 168, 0, 1}}, nil).AnyTimes()
2018-10-22 13:58:52 +00:00
r := new(Router)
2018-11-07 20:08:20 +00:00
common.Must(r.Init(config, mockDns, nil))
2017-01-06 14:32:36 +00:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
tag, err := r.PickRoute(ctx)
2018-10-22 13:58:52 +00:00
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}
2018-12-04 19:36:51 +00:00
func TestIPIfNonMatchDomain(t *testing.T) {
config := &Config{
DomainStrategy: Config_IpIfNonMatch,
Rule: []*RoutingRule{
{
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
Cidr: []*CIDR{
{
Ip: []byte{192, 168, 0, 0},
Prefix: 16,
},
},
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDns := mocks.NewDNSClient(mockCtl)
mockDns.EXPECT().LookupIP(gomock.Eq("v2ray.com")).Return([]net.IP{{192, 168, 0, 1}}, nil).AnyTimes()
r := new(Router)
common.Must(r.Init(config, mockDns, nil))
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
2018-12-04 19:36:51 +00:00
tag, err := r.PickRoute(ctx)
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}
func TestIPIfNonMatchIP(t *testing.T) {
config := &Config{
DomainStrategy: Config_IpIfNonMatch,
Rule: []*RoutingRule{
{
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
Cidr: []*CIDR{
{
Ip: []byte{127, 0, 0, 0},
Prefix: 8,
},
},
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDns := mocks.NewDNSClient(mockCtl)
r := new(Router)
common.Must(r.Init(config, mockDns, nil))
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.LocalHostIP, 80)})
2018-12-04 19:36:51 +00:00
tag, err := r.PickRoute(ctx)
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}