1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-30 05:56:54 -05:00

Test case for address

This commit is contained in:
V2Ray 2015-09-16 22:19:42 +02:00
parent e33f603c49
commit f9b31afa48
2 changed files with 52 additions and 1 deletions

51
net/address_test.go Normal file
View File

@ -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)
}

View File

@ -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
}