mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
c70f941bf8
Merge in DNS/adguard-home from 2846-cover-aghnet-vol.4 to master Updates #2846. Squashed commit of the following: commit 576ef857628a403ce1478c10a4aad23985c09613 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 31 19:38:57 2022 +0300 aghnet: imp code commit 5b4b17ff52867aaab2c9d30a0fc7fc2fe31ff4d5 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 31 14:58:34 2022 +0300 aghnet: imp coverage
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
package aghnet
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGenerateHostName(t *testing.T) {
|
|
t.Run("valid", func(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
want string
|
|
ip net.IP
|
|
}{{
|
|
name: "good_ipv4",
|
|
want: "127-0-0-1",
|
|
ip: net.IP{127, 0, 0, 1},
|
|
}, {
|
|
name: "good_ipv6",
|
|
want: "fe00-0000-0000-0000-0000-0000-0000-0001",
|
|
ip: net.ParseIP("fe00::1"),
|
|
}, {
|
|
name: "4to6",
|
|
want: "1-2-3-4",
|
|
ip: net.ParseIP("::ffff:1.2.3.4"),
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
hostname := GenerateHostname(tc.ip)
|
|
assert.Equal(t, tc.want, hostname)
|
|
})
|
|
}
|
|
})
|
|
|
|
t.Run("invalid", func(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
ip net.IP
|
|
}{{
|
|
name: "bad_ipv4",
|
|
ip: net.IP{127, 0, 0, 1, 0},
|
|
}, {
|
|
name: "bad_ipv6",
|
|
ip: net.IP{
|
|
0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff,
|
|
},
|
|
}, {
|
|
name: "nil",
|
|
ip: nil,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
assert.Panics(t, func() { GenerateHostname(tc.ip) })
|
|
})
|
|
}
|
|
})
|
|
}
|