1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/app/router/router_test.go

49 lines
1.0 KiB
Go
Raw Normal View History

2016-10-12 16:11:13 +02:00
package router_test
import (
2017-01-13 13:41:40 +01:00
"context"
"testing"
"v2ray.com/core"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/app/dispatcher"
"v2ray.com/core/app/proxyman"
2017-01-06 15:32:36 +01:00
_ "v2ray.com/core/app/proxyman/outbound"
2016-10-12 16:11:13 +02:00
. "v2ray.com/core/app/router"
"v2ray.com/core/common"
2017-01-14 00:27:45 +01:00
"v2ray.com/core/common/net"
"v2ray.com/core/common/serial"
2016-10-19 12:01:11 +02:00
"v2ray.com/core/proxy"
2017-10-24 16:15:35 +02:00
. "v2ray.com/ext/assert"
)
func TestSimpleRouter(t *testing.T) {
2017-10-24 16:15:35 +02: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 23:02:44 +02:00
},
}),
serial.ToTypedMessage(&dispatcher.Config{}),
serial.ToTypedMessage(&proxyman.OutboundConfig{}),
2016-02-01 23:21:54 +01:00
},
}
v, err := core.New(config)
common.Must(err)
r := v.Router()
2017-01-06 15:32:36 +01:00
ctx := proxy.ContextWithTarget(context.Background(), net.TCPDestination(net.DomainAddress("v2ray.com"), 80))
tag, err := r.PickRoute(ctx)
2017-10-24 16:15:35 +02:00
assert(err, IsNil)
assert(tag, Equals, "test")
}