2010-11-04 08:30:39 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// TODO It would be nice to use a mock DNS server, to eliminate
|
|
|
|
// external dependencies.
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import (
|
2011-04-20 13:21:59 -06:00
|
|
|
"runtime"
|
2010-11-04 08:30:39 -06:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2011-04-20 13:21:59 -06:00
|
|
|
var avoidMacFirewall = runtime.GOOS == "darwin"
|
|
|
|
|
2010-11-04 08:30:39 -06:00
|
|
|
func TestGoogleSRV(t *testing.T) {
|
2011-04-20 13:21:59 -06:00
|
|
|
if testing.Short() || avoidMacFirewall {
|
|
|
|
t.Logf("skipping test to avoid external network")
|
2011-04-15 09:21:29 -06:00
|
|
|
return
|
|
|
|
}
|
2010-11-04 08:30:39 -06:00
|
|
|
_, addrs, err := LookupSRV("xmpp-server", "tcp", "google.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed: %s", err)
|
|
|
|
}
|
|
|
|
if len(addrs) == 0 {
|
|
|
|
t.Errorf("no results")
|
|
|
|
}
|
2011-10-18 11:57:04 -06:00
|
|
|
|
|
|
|
// Non-standard back door.
|
|
|
|
_, addrs, err = LookupSRV("", "", "_xmpp-server._tcp.google.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("back door failed: %s", err)
|
|
|
|
}
|
|
|
|
if len(addrs) == 0 {
|
|
|
|
t.Errorf("back door no results")
|
|
|
|
}
|
2010-11-04 08:30:39 -06:00
|
|
|
}
|
2011-08-04 18:27:51 -06:00
|
|
|
|
|
|
|
func TestGmailMX(t *testing.T) {
|
|
|
|
if testing.Short() || avoidMacFirewall {
|
|
|
|
t.Logf("skipping test to avoid external network")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
mx, err := LookupMX("gmail.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed: %s", err)
|
|
|
|
}
|
|
|
|
if len(mx) == 0 {
|
|
|
|
t.Errorf("no results")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 21:05:33 -06:00
|
|
|
func TestGmailTXT(t *testing.T) {
|
|
|
|
if testing.Short() || avoidMacFirewall {
|
|
|
|
t.Logf("skipping test to avoid external network")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
txt, err := LookupTXT("gmail.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed: %s", err)
|
|
|
|
}
|
|
|
|
if len(txt) == 0 || len(txt[0]) == 0 {
|
|
|
|
t.Errorf("no results")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-04 18:27:51 -06:00
|
|
|
func TestGoogleDNSAddr(t *testing.T) {
|
|
|
|
if testing.Short() || avoidMacFirewall {
|
|
|
|
t.Logf("skipping test to avoid external network")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
names, err := LookupAddr("8.8.8.8")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed: %s", err)
|
|
|
|
}
|
|
|
|
if len(names) == 0 {
|
|
|
|
t.Errorf("no results")
|
|
|
|
}
|
|
|
|
}
|