You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
392 B
Go
22 lines
392 B
Go
8 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
//"net"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestLookuphost(t *testing.T) {
|
||
|
for _, h := range []string{"www.ifeng.com", "www.taobao.com",
|
||
|
"www.baidu.com", "www.sina.com.cn", "www.163.com", "www.qq.com",
|
||
|
"www.google.com", "www.facebook.com", "twitter.com",
|
||
|
} {
|
||
|
|
||
|
ret, err := lookupHost(h)
|
||
|
if err != nil {
|
||
|
t.Errorf("%s: %s", h, err)
|
||
|
}
|
||
|
fmt.Printf("%#v\n", ret)
|
||
|
}
|
||
|
}
|