2013-08-13 09:44:12 -07:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
2013-08-24 02:18:22 +10:00
|
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd
|
2013-08-14 00:44:57 +04:00
|
|
|
|
2013-08-13 09:44:12 -07:00
|
|
|
package net
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestTCPLookup(t *testing.T) {
|
|
|
|
|
if testing.Short() || !*testExternal {
|
|
|
|
|
t.Skip("skipping test to avoid external network")
|
|
|
|
|
}
|
|
|
|
|
c, err := Dial("tcp", "8.8.8.8:53")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("Dial failed: %v", err)
|
|
|
|
|
}
|
2013-08-15 05:07:35 +09:00
|
|
|
defer c.Close()
|
2013-08-13 09:44:12 -07:00
|
|
|
cfg := &dnsConfig{timeout: 10, attempts: 3}
|
|
|
|
|
_, err = exchange(cfg, c, "com.", dnsTypeALL)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatalf("exchange failed: %v", err)
|
|
|
|
|
}
|
|
|
|
|
}
|