1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00
v2fly/app/router/rules/chinaip_test.go

29 lines
911 B
Go
Raw Normal View History

2016-01-24 16:36:55 +00:00
package rules_test
2015-12-08 17:19:40 +00:00
import (
"net"
"testing"
2016-01-24 16:36:55 +00:00
. "github.com/v2ray/v2ray-core/app/router/rules"
2015-12-08 17:19:40 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
)
func makeDestination(ip string) v2net.Destination {
2015-12-16 22:53:38 +00:00
return v2net.TCPDestination(v2net.IPAddress(net.ParseIP(ip)), 80)
2015-12-08 17:19:40 +00:00
}
func TestChinaIP(t *testing.T) {
v2testing.Current(t)
2016-02-01 21:30:00 +00:00
rule := NewChinaIPRule("tag")
2015-12-08 17:19:40 +00: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
2015-12-12 19:47:29 +00:00
assert.Bool(rule.Apply(makeDestination("120.135.126.1"))).IsTrue()
2016-05-16 18:53:18 +00:00
assert.Bool(rule.Apply(makeDestination("101.201.173.126"))).IsTrue()
2015-12-08 17:19:40 +00:00
assert.Bool(rule.Apply(makeDestination("8.8.8.8"))).IsFalse()
}