2016-02-01 16:30:00 -05:00
|
|
|
// +build json
|
|
|
|
|
|
|
|
package rules_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/v2ray/v2ray-core/app/router/rules"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
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-02-01 16:30:00 -05: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()
|
|
|
|
}
|