AdGuardHome/util/network_utils_test.go

25 lines
431 B
Go
Raw Normal View History

2020-02-13 11:14:30 +00:00
package util
import (
2020-02-13 11:14:30 +00:00
"log"
"testing"
)
func TestGetValidNetInterfacesForWeb(t *testing.T) {
2020-02-13 11:14:30 +00:00
ifaces, err := GetValidNetInterfacesForWeb()
if err != nil {
t.Fatalf("Cannot get net interfaces: %s", err)
}
if len(ifaces) == 0 {
t.Fatalf("No net interfaces found")
}
for _, iface := range ifaces {
if len(iface.Addresses) == 0 {
t.Fatalf("No addresses found for %s", iface.Name)
}
log.Printf("%v", iface)
}
}