1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 15:56:28 -04:00
v2fly/app/router/router_test.go

49 lines
1.1 KiB
Go
Raw Normal View History

2016-10-12 10:11:13 -04:00
package router_test
import (
"testing"
"v2ray.com/core"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app/dispatcher"
"v2ray.com/core/app/proxyman"
2017-01-06 09:32:36 -05:00
_ "v2ray.com/core/app/proxyman/outbound"
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/serial"
"v2ray.com/core/common/session"
2018-10-21 04:27:13 -04:00
"v2ray.com/core/features/routing"
2017-10-24 10:15:35 -04:00
. "v2ray.com/ext/assert"
)
func TestSimpleRouter(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
config := &core.Config{
App: []*serial.TypedMessage{
serial.ToTypedMessage(&Config{
Rule: []*RoutingRule{
{
Tag: "test",
NetworkList: &net.NetworkList{
Network: []net.Network{net.Network_TCP},
},
},
2016-10-11 17:02:44 -04:00
},
}),
serial.ToTypedMessage(&dispatcher.Config{}),
serial.ToTypedMessage(&proxyman.OutboundConfig{}),
2016-02-01 17:21:54 -05:00
},
}
v, err := core.New(config)
common.Must(err)
2018-10-21 04:27:13 -04:00
r := v.GetFeature(routing.RouterType()).(routing.Router)
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)
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(tag, Equals, "test")
}