v2ray-core/app/router/chinasites_json_test.go

34 lines
890 B
Go
Raw Normal View History

2016-02-01 21:30:00 +00:00
// +build json
2016-10-12 14:11:13 +00:00
package router_test
2016-02-01 21:30:00 +00:00
import (
"testing"
2016-10-12 14:11:13 +00:00
. "v2ray.com/core/app/router"
2016-10-11 21:02:44 +00:00
v2net "v2ray.com/core/common/net"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/testing/assert"
2016-02-01 21:30:00 +00:00
)
2016-10-11 21:02:44 +00:00
func makeDomainDestination(domain string) v2net.Destination {
return v2net.TCPDestination(v2net.DomainAddress(domain), 80)
}
2016-02-01 21:30:00 +00:00
func TestChinaSitesJson(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-02-01 21:30:00 +00:00
rule := ParseRule([]byte(`{
"type": "chinasites",
"outboundTag": "y"
}`))
2016-05-24 19:55:46 +00:00
assert.String(rule.Tag).Equals("y")
2016-10-11 21:02:44 +00: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 21:30:00 +00:00
2016-10-11 21:02:44 +00:00
assert.Bool(cond.Apply(makeDomainDestination("v2ray.com"))).IsFalse()
2016-02-01 21:30:00 +00:00
}