2016-02-01 16:30:00 -05:00
|
|
|
// +build json
|
|
|
|
|
2016-10-12 10:11:13 -04:00
|
|
|
package router_test
|
2016-02-01 16:30:00 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-10-12 10:11:13 -04:00
|
|
|
. "v2ray.com/core/app/router"
|
2016-10-11 17:02:44 -04:00
|
|
|
v2net "v2ray.com/core/common/net"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/testing/assert"
|
2016-02-01 16:30:00 -05:00
|
|
|
)
|
|
|
|
|
2016-10-11 17:02:44 -04:00
|
|
|
func makeDomainDestination(domain string) v2net.Destination {
|
|
|
|
return v2net.TCPDestination(v2net.DomainAddress(domain), 80)
|
|
|
|
}
|
|
|
|
|
2016-02-01 16:30:00 -05:00
|
|
|
func TestChinaSitesJson(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2016-02-01 16:30:00 -05:00
|
|
|
|
|
|
|
rule := ParseRule([]byte(`{
|
|
|
|
"type": "chinasites",
|
|
|
|
"outboundTag": "y"
|
|
|
|
}`))
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(rule.Tag).Equals("y")
|
2016-10-11 17:02:44 -04:00
|
|
|
cond, err := rule.BuildCondition()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
assert.Bool(cond.Apply(makeDomainDestination("v.qq.com"))).IsTrue()
|
|
|
|
assert.Bool(cond.Apply(makeDomainDestination("www.163.com"))).IsTrue()
|
|
|
|
assert.Bool(cond.Apply(makeDomainDestination("ngacn.cc"))).IsTrue()
|
|
|
|
assert.Bool(cond.Apply(makeDomainDestination("12306.cn"))).IsTrue()
|
2016-02-01 16:30:00 -05:00
|
|
|
|
2016-10-11 17:02:44 -04:00
|
|
|
assert.Bool(cond.Apply(makeDomainDestination("v2ray.com"))).IsFalse()
|
2016-02-01 16:30:00 -05:00
|
|
|
}
|