| // Copyright 2011 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 ( |
| "bytes" |
| "testing" |
| ) |
| |
| func sameInterface(i, j *Interface) bool { |
| if i == nil || j == nil { |
| return false |
| } |
| if i.Index == j.Index && i.Name == j.Name && bytes.Equal(i.HardwareAddr, j.HardwareAddr) { |
| return true |
| } |
| return false |
| } |
| |
| func TestInterfaces(t *testing.T) { |
| ift, err := Interfaces() |
| if err != nil { |
| t.Fatalf("Interfaces() failed: %v", err) |
| } |
| t.Logf("table: len/cap = %v/%v\n", len(ift), cap(ift)) |
| |
| for _, ifi := range ift { |
| ifxi, err := InterfaceByIndex(ifi.Index) |
| if err != nil { |
| t.Fatalf("InterfaceByIndex(%#q) failed: %v", ifi.Index, err) |
| } |
| if !sameInterface(ifxi, &ifi) { |
| t.Fatalf("InterfaceByIndex(%#q) = %v, want %v", ifi.Index, *ifxi, ifi) |
| } |
| ifxn, err := InterfaceByName(ifi.Name) |
| if err != nil { |
| t.Fatalf("InterfaceByName(%#q) failed: %v", ifi.Name, err) |
| } |
| if !sameInterface(ifxn, &ifi) { |
| t.Fatalf("InterfaceByName(%#q) = %v, want %v", ifi.Name, *ifxn, ifi) |
| } |
| ifat, err := ifi.Addrs() |
| if err != nil { |
| t.Fatalf("Interface.Addrs() failed: %v", err) |
| } |
| ifmat, err := ifi.MulticastAddrs() |
| if err != nil { |
| t.Fatalf("Interface.MulticastAddrs() failed: %v", err) |
| } |
| t.Logf("%q: flags %q, ifindex %v, mtu %v\n", ifi.Name, ifi.Flags.String(), ifi.Index, ifi.MTU) |
| for _, ifa := range ifat { |
| t.Logf("\tinterface address %q\n", ifa.String()) |
| } |
| for _, ifma := range ifmat { |
| t.Logf("\tjoined group address %q\n", ifma.String()) |
| } |
| t.Logf("\thardware address %q", ifi.HardwareAddr.String()) |
| } |
| } |
| |
| func TestInterfaceAddrs(t *testing.T) { |
| ifat, err := InterfaceAddrs() |
| if err != nil { |
| t.Fatalf("InterfaceAddrs() failed: %v", err) |
| } |
| t.Logf("table: len/cap = %v/%v\n", len(ifat), cap(ifat)) |
| |
| for _, ifa := range ifat { |
| t.Logf("interface address %q\n", ifa.String()) |
| } |
| } |