mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 03:37:37 -05:00
30 lines
651 B
Go
30 lines
651 B
Go
package rules_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/v2ray/v2ray-core/app/router/rules"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestSimpleRouter(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
config := &RouterRuleConfig{
|
|
Rules: []*Rule{
|
|
&Rule{
|
|
Tag: "test",
|
|
Condition: NewNetworkMatcher(v2net.Network("tcp").AsList()),
|
|
},
|
|
},
|
|
}
|
|
|
|
router := NewRouter(config)
|
|
|
|
tag, err := router.TakeDetour(v2net.TCPDestination(v2net.DomainAddress("v2ray.com"), 80))
|
|
assert.Error(err).IsNil()
|
|
assert.StringLiteral(tag).Equals("test")
|
|
}
|