1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00
v2fly/app/router/rules/chinasites_json_test.go

27 lines
670 B
Go
Raw Normal View History

2016-02-01 21:30:00 +00:00
// +build json
package rules_test
import (
"testing"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/app/router/rules"
"v2ray.com/core/testing/assert"
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-02-01 21:30:00 +00:00
assert.Bool(rule.Apply(makeDomainDestination("v.qq.com"))).IsTrue()
assert.Bool(rule.Apply(makeDomainDestination("www.163.com"))).IsTrue()
assert.Bool(rule.Apply(makeDomainDestination("ngacn.cc"))).IsTrue()
assert.Bool(rule.Apply(makeDomainDestination("12306.cn"))).IsTrue()
assert.Bool(rule.Apply(makeDomainDestination("v2ray.com"))).IsFalse()
}