mirror of
https://github.com/golang/go
synced 2024-11-26 14:08:37 -07:00
e94475eab1
Fix issues that make these tests pass: - TestDialerLocalAddr: return error if local address is not IPv4 for "tcp4" network. - TestInterfaceAddrs, TestInterfaceUnicastAddrs: don't assume each interface has only one address. It may have more than one or none. - TestConcurrentPreferGoResolversDial: should be skipped on Plan 9. - TestListenMulticastUDP: remove IP from `announce` command and don't mix IPv4 address with IPv6 address in `addmulti` command. Fixes #34931 Change-Id: Ie0fdfe19ea282e5d6d6c938bf3c9139f8f5b0308 Reviewed-on: https://go-review.googlesource.com/c/go/+/201397 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
70 lines
1.3 KiB
Go
70 lines
1.3 KiB
Go
// Copyright 2016 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.
|
|
|
|
package net
|
|
|
|
import (
|
|
"internal/testenv"
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func TestListenMulticastUDP(t *testing.T) {
|
|
testenv.MustHaveExternalNetwork(t)
|
|
|
|
ifcs, err := Interfaces()
|
|
if err != nil {
|
|
t.Skip(err.Error())
|
|
}
|
|
if len(ifcs) == 0 {
|
|
t.Skip("no network interfaces found")
|
|
}
|
|
|
|
var mifc *Interface
|
|
for _, ifc := range ifcs {
|
|
if ifc.Flags&FlagUp|FlagMulticast != FlagUp|FlagMulticast {
|
|
continue
|
|
}
|
|
mifc = &ifc
|
|
break
|
|
}
|
|
|
|
if mifc == nil {
|
|
t.Skipf("no multicast interfaces found")
|
|
}
|
|
|
|
c1, err := ListenMulticastUDP("udp4", mifc, &UDPAddr{IP: ParseIP("224.0.0.254")})
|
|
if err != nil {
|
|
t.Fatalf("multicast not working on %s: %v", runtime.GOOS, err)
|
|
}
|
|
c1addr := c1.LocalAddr().(*UDPAddr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer c1.Close()
|
|
|
|
c2, err := ListenUDP("udp4", &UDPAddr{IP: IPv4zero, Port: 0})
|
|
c2addr := c2.LocalAddr().(*UDPAddr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer c2.Close()
|
|
|
|
n, err := c2.WriteToUDP([]byte("data"), c1addr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if n != 4 {
|
|
t.Fatalf("got %d; want 4", n)
|
|
}
|
|
|
|
n, err = c1.WriteToUDP([]byte("data"), c2addr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if n != 4 {
|
|
t.Fatalf("got %d; want 4", n)
|
|
}
|
|
}
|