Bladeren bron

Test case for address

V2Ray 10 jaren geleden
bovenliggende
commit
f9b31afa48
2 gewijzigde bestanden met toevoegingen van 52 en 1 verwijderingen
  1. 51 0
      net/address_test.go
  2. 1 1
      net/vmess/config.go

+ 51 - 0
net/address_test.go

@@ -0,0 +1,51 @@
+package net
+
+import (
+	"testing"
+
+	"github.com/v2ray/v2ray-core/testing/unit"
+)
+
+func TestIPv4Address(t *testing.T) {
+	assert := unit.Assert(t)
+
+	ip := []byte{byte(1), byte(2), byte(3), byte(4)}
+	port := uint16(80)
+	addr := IPAddress(ip, port)
+
+	assert.Byte(addr.Type).Equals(AddrTypeIP)
+	assert.Bool(addr.IsIPv4()).IsTrue()
+	assert.Bytes(addr.IP).Equals(ip)
+	assert.Uint16(addr.Port).Equals(port)
+}
+
+func TestIPv6Address(t *testing.T) {
+	assert := unit.Assert(t)
+
+	ip := []byte{
+		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),
+	}
+	port := uint16(443)
+	addr := IPAddress(ip, port)
+
+	assert.Byte(addr.Type).Equals(AddrTypeIP)
+	assert.Bool(addr.IsIPv6()).IsTrue()
+	assert.Bytes(addr.IP).Equals(ip)
+	assert.Uint16(addr.Port).Equals(port)
+}
+
+func TestDomainAddress(t *testing.T) {
+	assert := unit.Assert(t)
+
+	domain := "v2ray.com"
+	port := uint16(443)
+	addr := DomainAddress(domain, port)
+
+	assert.Byte(addr.Type).Equals(AddrTypeDomain)
+	assert.Bool(addr.IsDomain()).IsTrue()
+	assert.String(addr.Domain).Equals(domain)
+	assert.Uint16(addr.Port).Equals(port)
+}

+ 1 - 1
net/vmess/config.go

@@ -17,7 +17,7 @@ type VMessUser struct {
 func (u *VMessUser) ToUser() (core.User, error) {
 	id, err := core.NewID(u.Id)
 	return core.User{
-		Id:    id,
+		Id: id,
 	}, err
 }