package rules_test import ( "net" "testing" . "v2ray.com/core/app/router/rules" v2net "v2ray.com/core/common/net" "v2ray.com/core/testing/assert" ) func makeDestination(ip string) v2net.Destination { return v2net.TCPDestination(v2net.IPAddress(net.ParseIP(ip)), 80) } func TestChinaIP(t *testing.T) { assert := assert.On(t) rule := NewChinaIPRule("tag") 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("101.201.173.126"))).IsTrue() assert.Bool(rule.Apply(makeDestination("8.8.8.8"))).IsFalse() }