v2ray-core/app/router/rules/chinasites_test.go

26 lines
763 B
Go
Raw Normal View History

2016-01-24 16:36:55 +00:00
package rules_test
2015-12-14 00:01:57 +00:00
import (
"testing"
2016-01-24 16:36:55 +00:00
. "github.com/v2ray/v2ray-core/app/router/rules"
2015-12-14 00:01:57 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
"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) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2015-12-14 00:01:57 +00:00
2016-02-01 21:30:00 +00:00
rule := NewChinaSitesRule("tag")
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()
}