diff options
author | Ian Lance Taylor <iant@golang.org> | 2017-01-14 00:05:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-01-14 00:05:42 +0000 |
commit | c2047754c300b68c05d65faa8dc2925fe67b71b4 (patch) | |
tree | e183ae81a1f48a02945cb6de463a70c5be1b06f6 /libgo/go/net/conf_test.go | |
parent | 829afb8f05602bb31c9c597b24df7377fed4f059 (diff) | |
download | gcc-c2047754c300b68c05d65faa8dc2925fe67b71b4.zip gcc-c2047754c300b68c05d65faa8dc2925fe67b71b4.tar.gz gcc-c2047754c300b68c05d65faa8dc2925fe67b71b4.tar.bz2 |
libgo: update to Go 1.8 release candidate 1
Compiler changes:
* Change map assignment to use mapassign and assign value directly.
* Change string iteration to use decoderune, faster for ASCII strings.
* Change makeslice to take int, and use makeslice64 for larger values.
* Add new noverflow field to hmap struct used for maps.
Unresolved problems, to be fixed later:
* Commented out test in go/types/sizes_test.go that doesn't compile.
* Commented out reflect.TestStructOf test for padding after zero-sized field.
Reviewed-on: https://go-review.googlesource.com/35231
gotools/:
Updates for Go 1.8rc1.
* Makefile.am (go_cmd_go_files): Add bug.go.
(s-zdefaultcc): Write defaultPkgConfig.
* Makefile.in: Rebuild.
From-SVN: r244456
Diffstat (limited to 'libgo/go/net/conf_test.go')
-rw-r--r-- | libgo/go/net/conf_test.go | 114 |
1 files changed, 68 insertions, 46 deletions
diff --git a/libgo/go/net/conf_test.go b/libgo/go/net/conf_test.go index ec8814b..17d03f4 100644 --- a/libgo/go/net/conf_test.go +++ b/libgo/go/net/conf_test.go @@ -13,8 +13,9 @@ import ( ) type nssHostTest struct { - host string - want hostLookupOrder + host string + localhost string + want hostLookupOrder } func nssStr(s string) *nssConf { return parseNSSConf(strings.NewReader(s)) } @@ -42,8 +43,8 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"foo.local", hostLookupCgo}, - {"google.com", hostLookupCgo}, + {"foo.local", "myhostname", hostLookupCgo}, + {"google.com", "myhostname", hostLookupCgo}, }, }, { @@ -54,7 +55,7 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupDNSFiles}, + {"x.com", "myhostname", hostLookupDNSFiles}, }, }, { @@ -65,7 +66,7 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupFilesDNS}, + {"x.com", "myhostname", hostLookupFilesDNS}, }, }, { @@ -75,11 +76,11 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"foo.local", hostLookupCgo}, - {"foo.local.", hostLookupCgo}, - {"foo.LOCAL", hostLookupCgo}, - {"foo.LOCAL.", hostLookupCgo}, - {"google.com", hostLookupFilesDNS}, + {"foo.local", "myhostname", hostLookupCgo}, + {"foo.local.", "myhostname", hostLookupCgo}, + {"foo.LOCAL", "myhostname", hostLookupCgo}, + {"foo.LOCAL.", "myhostname", hostLookupCgo}, + {"google.com", "myhostname", hostLookupFilesDNS}, }, }, { @@ -89,7 +90,7 @@ func TestConfHostLookupOrder(t *testing.T) { nss: nssStr("foo: bar"), resolv: defaultResolvConf, }, - hostTests: []nssHostTest{{"google.com", hostLookupFilesDNS}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}}, }, // On OpenBSD, no resolv.conf means no DNS. { @@ -98,7 +99,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: defaultResolvConf, }, - hostTests: []nssHostTest{{"google.com", hostLookupFiles}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFiles}}, }, { name: "solaris_no_nsswitch", @@ -107,7 +108,7 @@ func TestConfHostLookupOrder(t *testing.T) { nss: &nssConf{err: os.ErrNotExist}, resolv: defaultResolvConf, }, - hostTests: []nssHostTest{{"google.com", hostLookupCgo}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}}, }, { name: "openbsd_lookup_bind_file", @@ -116,8 +117,8 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: &dnsConfig{lookup: []string{"bind", "file"}}, }, hostTests: []nssHostTest{ - {"google.com", hostLookupDNSFiles}, - {"foo.local", hostLookupDNSFiles}, + {"google.com", "myhostname", hostLookupDNSFiles}, + {"foo.local", "myhostname", hostLookupDNSFiles}, }, }, { @@ -126,7 +127,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: []string{"file", "bind"}}, }, - hostTests: []nssHostTest{{"google.com", hostLookupFilesDNS}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}}, }, { name: "openbsd_lookup_bind", @@ -134,7 +135,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: []string{"bind"}}, }, - hostTests: []nssHostTest{{"google.com", hostLookupDNS}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupDNS}}, }, { name: "openbsd_lookup_file", @@ -142,7 +143,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: []string{"file"}}, }, - hostTests: []nssHostTest{{"google.com", hostLookupFiles}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFiles}}, }, { name: "openbsd_lookup_yp", @@ -150,7 +151,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: []string{"file", "bind", "yp"}}, }, - hostTests: []nssHostTest{{"google.com", hostLookupCgo}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}}, }, { name: "openbsd_lookup_two", @@ -158,7 +159,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: []string{"file", "foo"}}, }, - hostTests: []nssHostTest{{"google.com", hostLookupCgo}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}}, }, { name: "openbsd_lookup_empty", @@ -166,7 +167,7 @@ func TestConfHostLookupOrder(t *testing.T) { goos: "openbsd", resolv: &dnsConfig{lookup: nil}, }, - hostTests: []nssHostTest{{"google.com", hostLookupDNSFiles}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupDNSFiles}}, }, // glibc lacking an nsswitch.conf, per // http://www.gnu.org/software/libc/manual/html_node/Notes-on-NSS-Configuration-File.html @@ -177,7 +178,7 @@ func TestConfHostLookupOrder(t *testing.T) { nss: &nssConf{err: os.ErrNotExist}, resolv: defaultResolvConf, }, - hostTests: []nssHostTest{{"google.com", hostLookupDNSFiles}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupDNSFiles}}, }, { name: "files_mdns_dns", @@ -186,8 +187,8 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupFilesDNS}, - {"x.local", hostLookupCgo}, + {"x.com", "myhostname", hostLookupFilesDNS}, + {"x.local", "myhostname", hostLookupCgo}, }, }, { @@ -197,9 +198,9 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupDNS}, - {"x\\.com", hostLookupCgo}, // punt on weird glibc escape - {"foo.com%en0", hostLookupCgo}, // and IPv6 zones + {"x.com", "myhostname", hostLookupDNS}, + {"x\\.com", "myhostname", hostLookupCgo}, // punt on weird glibc escape + {"foo.com%en0", "myhostname", hostLookupCgo}, // and IPv6 zones }, }, { @@ -210,8 +211,8 @@ func TestConfHostLookupOrder(t *testing.T) { hasMDNSAllow: true, }, hostTests: []nssHostTest{ - {"x.com", hostLookupCgo}, - {"x.local", hostLookupCgo}, + {"x.com", "myhostname", hostLookupCgo}, + {"x.local", "myhostname", hostLookupCgo}, }, }, { @@ -221,9 +222,9 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupFilesDNS}, - {"x", hostLookupFilesDNS}, - {"x.local", hostLookupCgo}, + {"x.com", "myhostname", hostLookupFilesDNS}, + {"x", "myhostname", hostLookupFilesDNS}, + {"x.local", "myhostname", hostLookupCgo}, }, }, { @@ -233,9 +234,9 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupDNSFiles}, - {"x", hostLookupDNSFiles}, - {"x.local", hostLookupCgo}, + {"x.com", "myhostname", hostLookupDNSFiles}, + {"x", "myhostname", hostLookupDNSFiles}, + {"x.local", "myhostname", hostLookupCgo}, }, }, { @@ -245,7 +246,7 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupCgo}, + {"x.com", "myhostname", hostLookupCgo}, }, }, { @@ -255,9 +256,23 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupFilesDNS}, - {"somehostname", hostLookupCgo}, - {"", hostLookupFilesDNS}, // Issue 13623 + {"x.com", "myhostname", hostLookupFilesDNS}, + {"myhostname", "myhostname", hostLookupCgo}, + {"myHostname", "myhostname", hostLookupCgo}, + {"myhostname.dot", "myhostname.dot", hostLookupCgo}, + {"myHostname.dot", "myhostname.dot", hostLookupCgo}, + {"gateway", "myhostname", hostLookupCgo}, + {"Gateway", "myhostname", hostLookupCgo}, + {"localhost", "myhostname", hostLookupCgo}, + {"Localhost", "myhostname", hostLookupCgo}, + {"anything.localhost", "myhostname", hostLookupCgo}, + {"Anything.localhost", "myhostname", hostLookupCgo}, + {"localhost.localdomain", "myhostname", hostLookupCgo}, + {"Localhost.Localdomain", "myhostname", hostLookupCgo}, + {"anything.localhost.localdomain", "myhostname", hostLookupCgo}, + {"Anything.Localhost.Localdomain", "myhostname", hostLookupCgo}, + {"somehostname", "myhostname", hostLookupFilesDNS}, + {"", "myhostname", hostLookupFilesDNS}, // Issue 13623 }, }, { @@ -267,8 +282,9 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupFilesDNS}, - {"somehostname", hostLookupCgo}, + {"x.com", "myhostname", hostLookupFilesDNS}, + {"somehostname", "myhostname", hostLookupFilesDNS}, + {"myhostname", "myhostname", hostLookupCgo}, }, }, // Debian Squeeze is just "dns,files", but lists all @@ -282,8 +298,8 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupDNSFiles}, - {"somehostname", hostLookupDNSFiles}, + {"x.com", "myhostname", hostLookupDNSFiles}, + {"somehostname", "myhostname", hostLookupDNSFiles}, }, }, { @@ -292,7 +308,7 @@ func TestConfHostLookupOrder(t *testing.T) { nss: nssStr("foo: bar"), resolv: &dnsConfig{servers: defaultNS, ndots: 1, timeout: 5, attempts: 2, unknownOpt: true}, }, - hostTests: []nssHostTest{{"google.com", hostLookupCgo}}, + hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}}, }, // Android should always use cgo. { @@ -303,12 +319,18 @@ func TestConfHostLookupOrder(t *testing.T) { resolv: defaultResolvConf, }, hostTests: []nssHostTest{ - {"x.com", hostLookupCgo}, + {"x.com", "myhostname", hostLookupCgo}, }, }, } + + origGetHostname := getHostname + defer func() { getHostname = origGetHostname }() + for _, tt := range tests { for _, ht := range tt.hostTests { + getHostname = func() (string, error) { return ht.localhost, nil } + gotOrder := tt.c.hostLookupOrder(ht.host) if gotOrder != ht.want { t.Errorf("%s: hostLookupOrder(%q) = %v; want %v", tt.name, ht.host, gotOrder, ht.want) |