mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a0a473125b
After moving libnetwork to this repo, we need to update all the import paths for libnetwork to point to docker/docker/libnetwork instead of docker/libnetwork. This change implements that. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
package libnetwork
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/libnetwork/types"
|
|
)
|
|
|
|
func TestErrorInterfaces(t *testing.T) {
|
|
|
|
badRequestErrorList := []error{ErrInvalidID(""), ErrInvalidName(""), ErrInvalidJoin{}, ErrInvalidNetworkDriver(""), InvalidContainerIDError(""), ErrNoSuchNetwork(""), ErrNoSuchEndpoint("")}
|
|
for _, err := range badRequestErrorList {
|
|
switch u := err.(type) {
|
|
case types.BadRequestError:
|
|
return
|
|
default:
|
|
t.Fatalf("Failed to detect err %v is of type BadRequestError. Got type: %T", err, u)
|
|
}
|
|
}
|
|
|
|
maskableErrorList := []error{ErrNoContainer{}}
|
|
for _, err := range maskableErrorList {
|
|
switch u := err.(type) {
|
|
case types.MaskableError:
|
|
return
|
|
default:
|
|
t.Fatalf("Failed to detect err %v is of type MaskableError. Got type: %T", err, u)
|
|
}
|
|
}
|
|
|
|
notFoundErrorList := []error{NetworkTypeError(""), &UnknownNetworkError{}, &UnknownEndpointError{}}
|
|
for _, err := range notFoundErrorList {
|
|
switch u := err.(type) {
|
|
case types.NotFoundError:
|
|
return
|
|
default:
|
|
t.Fatalf("Failed to detect err %v is of type NotFoundError. Got type: %T", err, u)
|
|
}
|
|
}
|
|
|
|
forbiddenErrorList := []error{NetworkTypeError(""), &UnknownNetworkError{}, &UnknownEndpointError{}}
|
|
for _, err := range forbiddenErrorList {
|
|
switch u := err.(type) {
|
|
case types.ForbiddenError:
|
|
return
|
|
default:
|
|
t.Fatalf("Failed to detect err %v is of type ForbiddenError. Got type: %T", err, u)
|
|
}
|
|
}
|
|
|
|
}
|