mirror of https://github.com/v2ray/v2ray-core
				
				
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			771 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			771 B
		
	
	
	
		
			Go
		
	
	
// +build json
 | 
						|
 | 
						|
package rules
 | 
						|
 | 
						|
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 {
 | 
						|
	return v2net.TCPDestination(v2net.DomainAddress(domain), 80)
 | 
						|
}
 | 
						|
 | 
						|
func TestChinaSites(t *testing.T) {
 | 
						|
	v2testing.Current(t)
 | 
						|
 | 
						|
	rule := new(ChinaSitesCondition)
 | 
						|
	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()
 | 
						|
}
 |