v2ray-core/app/router/router_test.go

209 lines
5.2 KiB
Go
Raw Permalink Normal View History

2016-10-12 16:11:13 +02:00
package router_test
import (
"context"
"testing"
2018-10-22 15:58:52 +02:00
"github.com/golang/mock/gomock"
2021-02-17 04:31:50 +08:00
. "github.com/v2fly/v2ray-core/v4/app/router"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/session"
"github.com/v2fly/v2ray-core/v4/features/dns"
2021-02-17 04:31:50 +08:00
"github.com/v2fly/v2ray-core/v4/features/outbound"
routing_session "github.com/v2fly/v2ray-core/v4/features/routing/session"
"github.com/v2fly/v2ray-core/v4/testing/mocks"
)
2018-11-07 21:25:43 +01:00
type mockOutboundManager struct {
outbound.Manager
outbound.HandlerSelector
}
func TestSimpleRouter(t *testing.T) {
2018-10-22 15:58:52 +02:00
config := &Config{
Rule: []*RoutingRule{
{
2018-11-07 21:08:20 +01:00
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
2018-11-20 16:58:26 +01:00
Networks: []net.Network{net.Network_TCP},
2018-10-22 15:58:52 +02:00
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDNS := mocks.NewDNSClient(mockCtl)
2018-11-07 21:25:43 +01:00
mockOhm := mocks.NewOutboundManager(mockCtl)
mockHs := mocks.NewOutboundHandlerSelector(mockCtl)
2018-10-22 15:58:52 +02:00
r := new(Router)
common.Must(r.Init(config, mockDNS, &mockOutboundManager{
2018-11-07 21:25:43 +01:00
Manager: mockOhm,
HandlerSelector: mockHs,
}))
2021-02-17 04:31:50 +08:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2fly.org"), 80)})
route, err := r.PickRoute(routing_session.AsRoutingContext(ctx))
2018-11-07 21:25:43 +01:00
common.Must(err)
if tag := route.GetOutboundTag(); tag != "test" {
2018-11-07 21:25:43 +01:00
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 16:58:26 +01:00
Networks: []net.Network{net.Network_TCP},
2018-11-07 21:25:43 +01:00
},
},
BalancingRule: []*BalancingRule{
{
Tag: "balance",
OutboundSelector: []string{"test-"},
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDNS := mocks.NewDNSClient(mockCtl)
2018-11-07 21:25:43 +01:00
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{
2018-11-07 21:25:43 +01:00
Manager: mockOhm,
HandlerSelector: mockHs,
}))
2018-10-22 15:58:52 +02:00
2021-02-17 04:31:50 +08:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2fly.org"), 80)})
route, err := r.PickRoute(routing_session.AsRoutingContext(ctx))
2018-10-22 15:58:52 +02:00
common.Must(err)
if tag := route.GetOutboundTag(); tag != "test" {
2018-10-22 15:58:52 +02:00
t.Error("expect tag 'test', bug actually ", tag)
}
}
2018-10-22 15:58:52 +02:00
func TestIPOnDemand(t *testing.T) {
config := &Config{
DomainStrategy: Config_IpOnDemand,
Rule: []*RoutingRule{
{
2018-11-07 21:08:20 +01:00
TargetTag: &RoutingRule_Tag{
Tag: "test",
},
2018-10-22 15:58:52 +02:00
Cidr: []*CIDR{
{
2018-10-22 15:58:52 +02:00
Ip: []byte{192, 168, 0, 0},
Prefix: 16,
},
2016-10-11 23:02:44 +02:00
},
2018-10-22 15:58:52 +02:00
},
2016-02-01 23:21:54 +01:00
},
}
2018-10-22 15:58:52 +02:00
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
mockDNS := mocks.NewDNSClient(mockCtl)
mockDNS.EXPECT().LookupIP(gomock.Eq("v2fly.org"), dns.IPOption{
IPv4Enable: true,
IPv6Enable: true,
FakeEnable: false,
}).Return([]net.IP{{192, 168, 0, 1}}, nil).AnyTimes()
2018-10-22 15:58:52 +02:00
r := new(Router)
common.Must(r.Init(config, mockDNS, nil))
2017-01-06 15:32:36 +01:00
2021-02-17 04:31:50 +08:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2fly.org"), 80)})
route, err := r.PickRoute(routing_session.AsRoutingContext(ctx))
2018-10-22 15:58:52 +02:00
common.Must(err)
if tag := route.GetOutboundTag(); tag != "test" {
2018-10-22 15:58:52 +02:00
t.Error("expect tag 'test', bug actually ", tag)
}
}
2018-12-04 20:36:51 +01: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("v2fly.org"), dns.IPOption{
IPv4Enable: true,
IPv6Enable: true,
FakeEnable: false,
}).Return([]net.IP{{192, 168, 0, 1}}, nil).AnyTimes()
2018-12-04 20:36:51 +01:00
r := new(Router)
common.Must(r.Init(config, mockDNS, nil))
2018-12-04 20:36:51 +01:00
2021-02-17 04:31:50 +08:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2fly.org"), 80)})
route, err := r.PickRoute(routing_session.AsRoutingContext(ctx))
2018-12-04 20:36:51 +01:00
common.Must(err)
if tag := route.GetOutboundTag(); tag != "test" {
2018-12-04 20:36:51 +01:00
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)
2018-12-04 20:36:51 +01:00
r := new(Router)
common.Must(r.Init(config, mockDNS, nil))
2018-12-04 20:36:51 +01:00
ctx := session.ContextWithOutbound(context.Background(), &session.Outbound{Target: net.TCPDestination(net.LocalHostIP, 80)})
route, err := r.PickRoute(routing_session.AsRoutingContext(ctx))
2018-12-04 20:36:51 +01:00
common.Must(err)
if tag := route.GetOutboundTag(); tag != "test" {
2018-12-04 20:36:51 +01:00
t.Error("expect tag 'test', bug actually ", tag)
}
}