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

74 lines
1.5 KiB
Go
Raw Normal View History

2016-10-12 10:11:13 -04:00
package router_test
import (
"testing"
2018-10-22 09:58:52 -04:00
"github.com/golang/mock/gomock"
2016-10-12 10:11:13 -04:00
. "v2ray.com/core/app/router"
"v2ray.com/core/common"
2017-01-13 18:27:45 -05:00
"v2ray.com/core/common/net"
"v2ray.com/core/common/session"
2018-10-23 16:27:45 -04:00
"v2ray.com/core/testing/mocks"
)
func TestSimpleRouter(t *testing.T) {
2018-10-22 09:58:52 -04:00
config := &Config{
Rule: []*RoutingRule{
{
Tag: "test",
NetworkList: &net.NetworkList{
Network: []net.Network{net.Network_TCP},
},
},
},
}
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
2018-10-23 16:41:27 -04:00
mockDns := mocks.NewDNSClient(mockCtl)
2018-10-22 09:58:52 -04:00
r := new(Router)
common.Must(r.Init(config, mockDns))
ctx := withOutbound(&session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
tag, err := r.PickRoute(ctx)
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}
2018-10-22 09:58:52 -04:00
func TestIPOnDemand(t *testing.T) {
config := &Config{
DomainStrategy: Config_IpOnDemand,
Rule: []*RoutingRule{
{
Tag: "test",
Cidr: []*CIDR{
{
2018-10-22 09:58:52 -04:00
Ip: []byte{192, 168, 0, 0},
Prefix: 16,
},
2016-10-11 17:02:44 -04:00
},
2018-10-22 09:58:52 -04:00
},
2016-02-01 17:21:54 -05:00
},
}
2018-10-22 09:58:52 -04:00
mockCtl := gomock.NewController(t)
defer mockCtl.Finish()
2018-10-23 16:41:27 -04:00
mockDns := mocks.NewDNSClient(mockCtl)
2018-10-22 09:58:52 -04:00
mockDns.EXPECT().LookupIP(gomock.Eq("v2ray.com")).Return([]net.IP{{192, 168, 0, 1}}, nil).AnyTimes()
2018-10-22 09:58:52 -04:00
r := new(Router)
common.Must(r.Init(config, mockDns))
2017-01-06 09:32:36 -05:00
ctx := withOutbound(&session.Outbound{Target: net.TCPDestination(net.DomainAddress("v2ray.com"), 80)})
tag, err := r.PickRoute(ctx)
2018-10-22 09:58:52 -04:00
common.Must(err)
if tag != "test" {
t.Error("expect tag 'test', bug actually ", tag)
}
}