mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ac1ec348ff
Signed-off-by: Alessandro Boch <aboch@docker.com> Signed-off-by: Chun Chen <ramichen@tencent.com>
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package null
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/docker/libnetwork/testutils"
|
|
"github.com/docker/libnetwork/types"
|
|
)
|
|
|
|
func TestPoolRequest(t *testing.T) {
|
|
a := allocator{}
|
|
|
|
pid, pool, _, err := a.RequestPool(defaultAS, "", "", nil, false)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !types.CompareIPNet(defaultPool, pool) {
|
|
t.Fatalf("Unexpected pool returned. Expected %v. Got: %v", defaultPool, pool)
|
|
}
|
|
if pid != defaultPoolID {
|
|
t.Fatalf("Unexpected pool id returned. Expected: %s. Got: %s", defaultPoolID, pid)
|
|
}
|
|
|
|
_, _, _, err = a.RequestPool("default", "", "", nil, false)
|
|
if err == nil {
|
|
t.Fatalf("Unexpected success")
|
|
}
|
|
|
|
_, _, _, err = a.RequestPool(defaultAS, "192.168.0.0/16", "", nil, false)
|
|
if err == nil {
|
|
t.Fatalf("Unexpected success")
|
|
}
|
|
|
|
_, _, _, err = a.RequestPool(defaultAS, "", "192.168.0.0/24", nil, false)
|
|
if err == nil {
|
|
t.Fatalf("Unexpected success")
|
|
}
|
|
|
|
_, _, _, err = a.RequestPool(defaultAS, "", "", nil, true)
|
|
if err == nil {
|
|
t.Fatalf("Unexpected success")
|
|
}
|
|
}
|
|
|
|
func TestOtherRequests(t *testing.T) {
|
|
a := allocator{}
|
|
|
|
ip, _, err := a.RequestAddress(defaultPoolID, nil, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if ip != nil {
|
|
t.Fatalf("Unexpected address returned: %v", ip)
|
|
}
|
|
|
|
_, _, err = a.RequestAddress("anypid", nil, nil)
|
|
if err == nil {
|
|
t.Fatalf("Unexpected success")
|
|
}
|
|
|
|
}
|