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

28 lines
762 B
Go
Raw Normal View History

2016-01-17 15:20:49 +00:00
// +build json
package rules
2015-12-14 00:01:57 +00:00
import (
"testing"
v2net "github.com/v2ray/v2ray-core/common/net"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
)
func makeDomainDestination(domain string) v2net.Destination {
2015-12-16 22:53:38 +00:00
return v2net.TCPDestination(v2net.DomainAddress(domain), 80)
2015-12-14 00:01:57 +00:00
}
func TestChinaSites(t *testing.T) {
v2testing.Current(t)
2016-01-24 13:40:46 +00:00
rule := ChinaSitesConds
2015-12-14 00:01:57 +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()
}