ソースを参照

rename import for net test

Darien Raymond 8 年 前
コミット
9ad9af367c
2 ファイル変更9 行追加9 行削除
  1. 6 6
      common/net/address_test.go
  2. 3 3
      common/net/destination_test.go

+ 6 - 6
common/net/address_test.go

@@ -4,7 +4,7 @@ import (
 	"net"
 	"testing"
 
-	v2net "v2ray.com/core/common/net"
+	. "v2ray.com/core/common/net"
 	"v2ray.com/core/testing/assert"
 )
 
@@ -12,7 +12,7 @@ func TestIPv4Address(t *testing.T) {
 	assert := assert.On(t)
 
 	ip := []byte{byte(1), byte(2), byte(3), byte(4)}
-	addr := v2net.IPAddress(ip)
+	addr := IPAddress(ip)
 
 	assert.Address(addr).IsIPv4()
 	assert.Address(addr).IsNotIPv6()
@@ -30,7 +30,7 @@ func TestIPv6Address(t *testing.T) {
 		byte(1), byte(2), byte(3), byte(4),
 		byte(1), byte(2), byte(3), byte(4),
 	}
-	addr := v2net.IPAddress(ip)
+	addr := IPAddress(ip)
 
 	assert.Address(addr).IsIPv6()
 	assert.Address(addr).IsNotIPv4()
@@ -47,7 +47,7 @@ func TestIPv4Asv6(t *testing.T) {
 		byte(0), byte(0), byte(255), byte(255),
 		byte(1), byte(2), byte(3), byte(4),
 	}
-	addr := v2net.IPAddress(ip)
+	addr := IPAddress(ip)
 	assert.Address(addr).EqualsString("1.2.3.4")
 }
 
@@ -55,7 +55,7 @@ func TestDomainAddress(t *testing.T) {
 	assert := assert.On(t)
 
 	domain := "v2ray.com"
-	addr := v2net.DomainAddress(domain)
+	addr := DomainAddress(domain)
 
 	assert.Address(addr).IsDomain()
 	assert.Address(addr).IsNotIPv6()
@@ -68,7 +68,7 @@ func TestNetIPv4Address(t *testing.T) {
 	assert := assert.On(t)
 
 	ip := net.IPv4(1, 2, 3, 4)
-	addr := v2net.IPAddress(ip)
+	addr := IPAddress(ip)
 	assert.Address(addr).IsIPv4()
 	assert.Address(addr).EqualsString("1.2.3.4")
 }

+ 3 - 3
common/net/destination_test.go

@@ -3,14 +3,14 @@ package net_test
 import (
 	"testing"
 
-	"v2ray.com/core/common/net"
+	. "v2ray.com/core/common/net"
 	"v2ray.com/core/testing/assert"
 )
 
 func TestTCPDestination(t *testing.T) {
 	assert := assert.On(t)
 
-	dest := net.TCPDestination(net.IPAddress([]byte{1, 2, 3, 4}), 80)
+	dest := TCPDestination(IPAddress([]byte{1, 2, 3, 4}), 80)
 	assert.Destination(dest).IsTCP()
 	assert.Destination(dest).IsNotUDP()
 	assert.Destination(dest).EqualsString("tcp:1.2.3.4:80")
@@ -19,7 +19,7 @@ func TestTCPDestination(t *testing.T) {
 func TestUDPDestination(t *testing.T) {
 	assert := assert.On(t)
 
-	dest := net.UDPDestination(net.IPAddress([]byte{0x20, 0x01, 0x48, 0x60, 0x48, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x88}), 53)
+	dest := UDPDestination(IPAddress([]byte{0x20, 0x01, 0x48, 0x60, 0x48, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x88}), 53)
 	assert.Destination(dest).IsNotTCP()
 	assert.Destination(dest).IsUDP()
 	assert.Destination(dest).EqualsString("udp:[2001:4860:4860::8888]:53")