1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/dns_test.go

64 lines
1.3 KiB
Go
Raw Normal View History

2021-10-09 12:22:21 +02:00
package headscale
import (
"gopkg.in/check.v1"
"inet.af/netaddr"
)
func (s *Suite) TestMagicDNSRootDomains100(c *check.C) {
prefix := netaddr.MustParseIPPrefix("100.64.0.0/10")
domains, err := generateMagicDNSRootDomains(prefix, "headscale.net")
c.Assert(err, check.IsNil)
found := false
2021-10-10 12:43:41 +02:00
for _, domain := range domains {
2021-10-09 12:22:21 +02:00
if domain == "64.100.in-addr.arpa." {
found = true
break
}
}
c.Assert(found, check.Equals, true)
found = false
2021-10-10 12:43:41 +02:00
for _, domain := range domains {
2021-10-09 12:22:21 +02:00
if domain == "100.100.in-addr.arpa." {
found = true
break
}
}
c.Assert(found, check.Equals, true)
found = false
2021-10-10 12:43:41 +02:00
for _, domain := range domains {
2021-10-09 12:22:21 +02:00
if domain == "127.100.in-addr.arpa." {
found = true
break
}
}
c.Assert(found, check.Equals, true)
}
func (s *Suite) TestMagicDNSRootDomains172(c *check.C) {
prefix := netaddr.MustParseIPPrefix("172.16.0.0/16")
domains, err := generateMagicDNSRootDomains(prefix, "headscale.net")
c.Assert(err, check.IsNil)
found := false
2021-10-10 12:43:41 +02:00
for _, domain := range domains {
2021-10-09 12:22:21 +02:00
if domain == "0.16.172.in-addr.arpa." {
found = true
break
}
}
c.Assert(found, check.Equals, true)
found = false
2021-10-10 12:43:41 +02:00
for _, domain := range domains {
2021-10-09 12:22:21 +02:00
if domain == "255.16.172.in-addr.arpa." {
found = true
break
}
}
c.Assert(found, check.Equals, true)
}