mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
981686787b
When fixed-cidrv6 is used, the allocation and release must happen from the appropriate network. Allocation is done properly in createendpoint, but the DeleteEndpoint wasnt taking care of this case. Signed-off-by: Madhu Venugopal <madhu@docker.com>
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package bridge
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
|
|
"github.com/docker/libnetwork/netutils"
|
|
)
|
|
|
|
func TestSetupFixedCIDRv6(t *testing.T) {
|
|
defer netutils.SetupTestNetNS(t)()
|
|
|
|
config := &networkConfiguration{}
|
|
br := newInterface(config)
|
|
|
|
_, config.FixedCIDRv6, _ = net.ParseCIDR("2002:db8::/48")
|
|
if err := setupDevice(config, br); err != nil {
|
|
t.Fatalf("Bridge creation failed: %v", err)
|
|
}
|
|
if err := setupBridgeIPv4(config, br); err != nil {
|
|
t.Fatalf("Assign IPv4 to bridge failed: %v", err)
|
|
}
|
|
|
|
if err := setupBridgeIPv6(config, br); err != nil {
|
|
t.Fatalf("Assign IPv4 to bridge failed: %v", err)
|
|
}
|
|
|
|
if err := setupFixedCIDRv6(config, br); err != nil {
|
|
t.Fatalf("Failed to setup bridge FixedCIDRv6: %v", err)
|
|
}
|
|
|
|
var ip net.IP
|
|
if ip, err := ipAllocator.RequestIP(config.FixedCIDRv6, nil); err != nil {
|
|
t.Fatalf("Failed to request IP to allocator: %v", err)
|
|
} else if expected := "2002:db8::1"; ip.String() != expected {
|
|
t.Fatalf("Expected allocated IP %s, got %s", expected, ip)
|
|
}
|
|
|
|
if err := ipAllocator.ReleaseIP(config.FixedCIDRv6, ip); err != nil {
|
|
t.Fatalf("Failed to release IP from allocator: %v", err)
|
|
} else if _, err := ipAllocator.RequestIP(config.FixedCIDRv6, ip); err != nil {
|
|
t.Fatalf("Failed to request a released IP: %v", err)
|
|
}
|
|
}
|