2016-01-24 11:36:55 -05:00
|
|
|
package rules_test
|
2015-12-13 19:01:57 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-01-24 11:36:55 -05:00
|
|
|
. "github.com/v2ray/v2ray-core/app/router/rules"
|
2015-12-13 19:01:57 -05:00
|
|
|
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 17:53:38 -05:00
|
|
|
return v2net.TCPDestination(v2net.DomainAddress(domain), 80)
|
2015-12-13 19:01:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestChinaSites(t *testing.T) {
|
|
|
|
v2testing.Current(t)
|
|
|
|
|
2016-02-01 16:30:00 -05:00
|
|
|
rule := NewChinaSitesRule("tag")
|
2015-12-13 19:01:57 -05: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()
|
|
|
|
}
|