dns/labels_test.go

120 lines
2.7 KiB
Go
Raw Normal View History

2013-05-12 14:09:52 +00:00
// Copyright 2011 Miek Gieben. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2012-01-10 14:55:52 +00:00
package dns
import (
"testing"
)
func TestCompareDomainName(t *testing.T) {
2012-01-12 22:17:34 +00:00
s1 := "www.miek.nl."
s2 := "miek.nl."
s3 := "www.bla.nl."
s4 := "nl.www.bla."
s5 := "nl"
2012-01-10 14:55:52 +00:00
if CompareDomainName(s1, s2) != 2 {
2012-01-12 22:17:34 +00:00
t.Logf("%s with %s should be %d", s1, s2, 2)
t.Fail()
}
if CompareDomainName(s1, s3) != 1 {
2012-01-12 22:17:34 +00:00
t.Logf("%s with %s should be %d", s1, s3, 1)
t.Fail()
}
if CompareDomainName(s3, s4) != 0 {
2012-01-12 22:17:34 +00:00
t.Logf("%s with %s should be %d", s3, s4, 0)
t.Fail()
}
if CompareDomainName(s1, s5) != 1 {
2012-01-12 22:17:34 +00:00
t.Logf("%s with %s should be %d", s1, s5, 1)
t.Fail()
}
if CompareDomainName(s1, ".") != 0 {
2013-06-20 20:36:13 +00:00
t.Logf("%s with %s should be %d", s1, s5, 0)
t.Fail()
}
if CompareDomainName(".", ".") != 0 {
2012-02-14 21:26:18 +00:00
t.Logf("%s with %s should be %d", ".", ".", 0)
t.Fail()
}
2012-01-10 14:55:52 +00:00
}
2012-01-27 22:37:57 +00:00
2013-06-20 20:36:13 +00:00
func TestSplit(t *testing.T) {
splitter := map[string]int{
"www.miek.nl.": 3,
"www.miek.nl": 3,
"www..miek.nl": 4,
2013-06-20 20:36:13 +00:00
`www\.miek.nl.`: 2,
`www\\.miek.nl.`: 3,
".": 0,
2013-06-21 15:17:12 +00:00
"nl.": 1,
"nl": 1,
2013-06-21 15:17:12 +00:00
"com.": 1,
".com.": 2,
2012-01-27 23:35:37 +00:00
}
2013-06-20 20:36:13 +00:00
for s, i := range splitter {
if x := len(Split(s)); x != i {
2013-06-21 15:17:12 +00:00
t.Logf("Labels should be %d, got %d: %s %v\n", i, x, s, Split(s))
2013-06-20 20:36:13 +00:00
t.Fail()
2013-06-21 15:17:12 +00:00
} else {
t.Logf("%s %v\n", s, Split(s))
2013-06-20 20:36:13 +00:00
}
2012-01-27 23:35:37 +00:00
}
2013-06-20 20:36:13 +00:00
}
func TestSplitDomainName(t *testing.T) {
labels := map[string][]string{
"miek.nl": []string{"miek", "nl"},
".": nil,
"www.miek.nl.": []string{"www", "miek", "nl"},
"www.miek.nl": []string{"www", "miek", "nl"},
"www..miek.nl": []string{"www", "", "miek", "nl"},
`www\.miek.nl`: []string{`www\.miek`, "nl"},
`www\\.miek.nl`: []string{`www\\`, "miek", "nl"},
2012-01-27 23:35:37 +00:00
}
domainLoop:
for domain, splits := range labels {
parts := SplitDomainName(domain)
if len(parts) != len(splits) {
t.Logf("SplitDomainName returned %v for %s, expected %v", parts, domain, splits)
2013-06-20 20:36:13 +00:00
t.Fail()
continue domainLoop
}
for i := range parts {
if parts[i] != splits[i] {
t.Logf("SplitDomainName returned %v for %s, expected %v", parts, domain, splits)
t.Fail()
continue domainLoop
}
2013-06-20 20:36:13 +00:00
}
}
2012-01-27 22:37:57 +00:00
}
2013-06-22 07:40:02 +00:00
func BenchmarkSplitLabels(b *testing.B) {
for i := 0; i < b.N; i++ {
2013-06-22 07:48:26 +00:00
Split("www.example.com")
2013-06-22 07:40:02 +00:00
}
}
func BenchmarkLenLabels(b *testing.B) {
for i := 0; i < b.N; i++ {
2013-06-22 07:48:26 +00:00
CountLabel("www.example.com")
2013-06-22 07:40:02 +00:00
}
}
func BenchmarkCompareLabels(b *testing.B) {
for i := 0; i < b.N; i++ {
2013-06-22 07:48:26 +00:00
CompareDomainName("www.example.com", "aa.example.com")
2013-06-22 07:40:02 +00:00
}
}
2013-06-22 08:40:00 +00:00
func BenchmarkIsSubDomain(b *testing.B) {
for i := 0; i < b.N; i++ {
IsSubDomain("www.example.com", "aa.example.com")
IsSubDomain("example.com", "aa.example.com")
IsSubDomain("miek.nl", "aa.example.com")
}
}