1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-31 14:36:50 -05:00

rename import for net test

This commit is contained in:
Darien Raymond 2017-02-16 21:08:10 +01:00
parent 38014efdee
commit 9ad9af367c
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 9 additions and 9 deletions

View File

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

View File

@ -3,14 +3,14 @@ package net_test
import ( import (
"testing" "testing"
"v2ray.com/core/common/net" . "v2ray.com/core/common/net"
"v2ray.com/core/testing/assert" "v2ray.com/core/testing/assert"
) )
func TestTCPDestination(t *testing.T) { func TestTCPDestination(t *testing.T) {
assert := assert.On(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).IsTCP()
assert.Destination(dest).IsNotUDP() assert.Destination(dest).IsNotUDP()
assert.Destination(dest).EqualsString("tcp:1.2.3.4:80") assert.Destination(dest).EqualsString("tcp:1.2.3.4:80")
@ -19,7 +19,7 @@ func TestTCPDestination(t *testing.T) {
func TestUDPDestination(t *testing.T) { func TestUDPDestination(t *testing.T) {
assert := assert.On(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).IsNotTCP()
assert.Destination(dest).IsUDP() assert.Destination(dest).IsUDP()
assert.Destination(dest).EqualsString("udp:[2001:4860:4860::8888]:53") assert.Destination(dest).EqualsString("udp:[2001:4860:4860::8888]:53")