123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- package net_test
- import (
- "net"
- "testing"
- "github.com/google/go-cmp/cmp"
- . "github.com/xtls/xray-core/common/net"
- )
- func TestAddressProperty(t *testing.T) {
- type addrProprty struct {
- IP []byte
- Domain string
- Family AddressFamily
- String string
- }
- testCases := []struct {
- Input Address
- Output addrProprty
- }{
- {
- Input: IPAddress([]byte{byte(1), byte(2), byte(3), byte(4)}),
- Output: addrProprty{
- IP: []byte{byte(1), byte(2), byte(3), byte(4)},
- Family: AddressFamilyIPv4,
- String: "1.2.3.4",
- },
- },
- {
- Input: IPAddress([]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),
- }),
- Output: addrProprty{
- 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),
- },
- Family: AddressFamilyIPv6,
- String: "[102:304:102:304:102:304:102:304]",
- },
- },
- {
- Input: IPAddress([]byte{
- byte(0), byte(0), byte(0), byte(0),
- byte(0), byte(0), byte(0), byte(0),
- byte(0), byte(0), byte(255), byte(255),
- byte(1), byte(2), byte(3), byte(4),
- }),
- Output: addrProprty{
- IP: []byte{byte(1), byte(2), byte(3), byte(4)},
- Family: AddressFamilyIPv4,
- String: "1.2.3.4",
- },
- },
- {
- Input: DomainAddress("example.com"),
- Output: addrProprty{
- Domain: "example.com",
- Family: AddressFamilyDomain,
- String: "example.com",
- },
- },
- {
- Input: IPAddress(net.IPv4(1, 2, 3, 4)),
- Output: addrProprty{
- IP: []byte{byte(1), byte(2), byte(3), byte(4)},
- Family: AddressFamilyIPv4,
- String: "1.2.3.4",
- },
- },
- {
- Input: ParseAddress("[2001:4860:0:2001::68]"),
- Output: addrProprty{
- IP: []byte{0x20, 0x01, 0x48, 0x60, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68},
- Family: AddressFamilyIPv6,
- String: "[2001:4860:0:2001::68]",
- },
- },
- {
- Input: ParseAddress("::0"),
- Output: addrProprty{
- IP: AnyIPv6.IP(),
- Family: AddressFamilyIPv6,
- String: "[::]",
- },
- },
- {
- Input: ParseAddress("[::ffff:123.151.71.143]"),
- Output: addrProprty{
- IP: []byte{123, 151, 71, 143},
- Family: AddressFamilyIPv4,
- String: "123.151.71.143",
- },
- },
- {
- Input: NewIPOrDomain(ParseAddress("example.com")).AsAddress(),
- Output: addrProprty{
- Domain: "example.com",
- Family: AddressFamilyDomain,
- String: "example.com",
- },
- },
- {
- Input: NewIPOrDomain(ParseAddress("8.8.8.8")).AsAddress(),
- Output: addrProprty{
- IP: []byte{8, 8, 8, 8},
- Family: AddressFamilyIPv4,
- String: "8.8.8.8",
- },
- },
- {
- Input: NewIPOrDomain(ParseAddress("[2001:4860:0:2001::68]")).AsAddress(),
- Output: addrProprty{
- IP: []byte{0x20, 0x01, 0x48, 0x60, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68},
- Family: AddressFamilyIPv6,
- String: "[2001:4860:0:2001::68]",
- },
- },
- }
- for _, testCase := range testCases {
- actual := addrProprty{
- Family: testCase.Input.Family(),
- String: testCase.Input.String(),
- }
- if testCase.Input.Family().IsIP() {
- actual.IP = testCase.Input.IP()
- } else {
- actual.Domain = testCase.Input.Domain()
- }
- if r := cmp.Diff(actual, testCase.Output); r != "" {
- t.Error("for input: ", testCase.Input, ":", r)
- }
- }
- }
- func TestInvalidAddressConvertion(t *testing.T) {
- panics := func(f func()) (ret bool) {
- defer func() {
- if r := recover(); r != nil {
- ret = true
- }
- }()
- f()
- return false
- }
- testCases := []func(){
- func() { ParseAddress("8.8.8.8").Domain() },
- func() { ParseAddress("2001:4860:0:2001::68").Domain() },
- func() { ParseAddress("example.com").IP() },
- }
- for idx, testCase := range testCases {
- if !panics(testCase) {
- t.Error("case ", idx, " failed")
- }
- }
- }
- func BenchmarkParseAddressIPv4(b *testing.B) {
- for i := 0; i < b.N; i++ {
- addr := ParseAddress("8.8.8.8")
- if addr.Family() != AddressFamilyIPv4 {
- panic("not ipv4")
- }
- }
- }
- func BenchmarkParseAddressIPv6(b *testing.B) {
- for i := 0; i < b.N; i++ {
- addr := ParseAddress("2001:4860:0:2001::68")
- if addr.Family() != AddressFamilyIPv6 {
- panic("not ipv6")
- }
- }
- }
- func BenchmarkParseAddressDomain(b *testing.B) {
- for i := 0; i < b.N; i++ {
- addr := ParseAddress("example.com")
- if addr.Family() != AddressFamilyDomain {
- panic("not domain")
- }
- }
- }
|