1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/app/router/rules/chinaip_json_test.go

27 lines
725 B
Go
Raw Normal View History

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 TestChinaIPJson(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": "chinaip",
"outboundTag": "x"
}`))
2016-05-24 15:55:46 -04:00
assert.String(rule.Tag).Equals("x")
2016-02-01 16:30:00 -05:00
assert.Bool(rule.Apply(makeDestination("121.14.1.189"))).IsTrue() // sina.com.cn
assert.Bool(rule.Apply(makeDestination("101.226.103.106"))).IsTrue() // qq.com
assert.Bool(rule.Apply(makeDestination("115.239.210.36"))).IsTrue() // image.baidu.com
assert.Bool(rule.Apply(makeDestination("120.135.126.1"))).IsTrue()
assert.Bool(rule.Apply(makeDestination("8.8.8.8"))).IsFalse()
}