v2ray пре 10 година
родитељ
комит
cf56b89898
2 измењених фајлова са 32 додато и 0 уклоњено
  1. 31 0
      app/router/router_test.go
  2. 1 0
      app/router/rules/json/chinaip_test.go

+ 31 - 0
app/router/router_test.go

@@ -0,0 +1,31 @@
+package router_test
+
+import (
+	"net"
+	"path/filepath"
+	"testing"
+
+	. "github.com/v2ray/v2ray-core/app/router"
+	_ "github.com/v2ray/v2ray-core/app/router/rules/json"
+	v2net "github.com/v2ray/v2ray-core/common/net"
+	"github.com/v2ray/v2ray-core/shell/point/json"
+	v2testing "github.com/v2ray/v2ray-core/testing"
+	"github.com/v2ray/v2ray-core/testing/assert"
+)
+
+func TestRouter(t *testing.T) {
+	v2testing.Current(t)
+
+	baseDir := "$GOPATH/src/github.com/v2ray/v2ray-core/release/config"
+
+	pointConfig, err := json.LoadConfig(filepath.Join(baseDir, "vpoint_socks_vmess.json"))
+	assert.Error(err).IsNil()
+
+	router, err := CreateRouter(pointConfig.RouterConfig().Strategy(), pointConfig.RouterConfig().Settings())
+	assert.Error(err).IsNil()
+
+	dest := v2net.NewTCPDestination(v2net.IPAddress(net.ParseIP("120.135.126.1"), 80))
+	tag, err := router.TakeDetour(dest)
+	assert.Error(err).IsNil()
+	assert.StringLiteral(tag).Equals("direct")
+}

+ 1 - 0
app/router/rules/json/chinaip_test.go

@@ -20,6 +20,7 @@ func TestChinaIP(t *testing.T) {
 	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
+	assert.Bool(rule.Apply(makeDestination("120.135.126.1"))).IsTrue()
 
 	assert.Bool(rule.Apply(makeDestination("8.8.8.8"))).IsFalse()
 }