mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
cc02894a50
This way we won't vendor test related functions in docker anymore. It also moves netns related functions to a new ns package to be able to call the ns init function in tests. I think this also helps with the overall package isolation. Signed-off-by: David Calavera <david.calavera@gmail.com>
33 lines
893 B
Go
33 lines
893 B
Go
package bridge
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/libnetwork/testutils"
|
|
"github.com/vishvananda/netlink"
|
|
)
|
|
|
|
func TestInterfaceDefaultName(t *testing.T) {
|
|
defer testutils.SetupTestOSContext(t)()
|
|
|
|
config := &networkConfiguration{}
|
|
if _ = newInterface(config); config.BridgeName != DefaultBridgeName {
|
|
t.Fatalf("Expected default interface name %q, got %q", DefaultBridgeName, config.BridgeName)
|
|
}
|
|
}
|
|
|
|
func TestAddressesEmptyInterface(t *testing.T) {
|
|
defer testutils.SetupTestOSContext(t)()
|
|
|
|
inf := newInterface(&networkConfiguration{})
|
|
addrv4, addrsv6, err := inf.addresses()
|
|
if err != nil {
|
|
t.Fatalf("Failed to get addresses of default interface: %v", err)
|
|
}
|
|
if expected := (netlink.Addr{}); addrv4 != expected {
|
|
t.Fatalf("Default interface has unexpected IPv4: %s", addrv4)
|
|
}
|
|
if len(addrsv6) != 0 {
|
|
t.Fatalf("Default interface has unexpected IPv6: %v", addrsv6)
|
|
}
|
|
}
|