mirror of
https://github.com/docker/cli.git
synced 2025-08-29 00:47:54 +03:00
Since go 1.7, "context" is a standard package. Since go 1.9, x/net/context merely provides some types aliased to those in the standard context package. The changes were performed by the following script: for f in $(git ls-files \*.go | grep -v ^vendor/); do sed -i 's|golang.org/x/net/context|context|' $f goimports -w $f for i in 1 2; do awk '/^$/ {e=1; next;} /\t"context"$/ {e=0;} {if (e) {print ""; e=0}; print;}' < $f > $f.new && \ mv $f.new $f goimports -w $f done done [v2: do awk/goimports fixup twice] Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
58 lines
2.0 KiB
Go
58 lines
2.0 KiB
Go
package network
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/network"
|
|
)
|
|
|
|
// FakeClient is a fake NetworkAPIClient
|
|
type FakeClient struct {
|
|
NetworkInspectFunc func(ctx context.Context, networkID string, options types.NetworkInspectOptions) (types.NetworkResource, error)
|
|
}
|
|
|
|
// NetworkConnect fakes connecting to a network
|
|
func (c *FakeClient) NetworkConnect(ctx context.Context, networkID, container string, config *network.EndpointSettings) error {
|
|
return nil
|
|
}
|
|
|
|
// NetworkCreate fakes creating a network
|
|
func (c *FakeClient) NetworkCreate(_ context.Context, _ string, options types.NetworkCreate) (types.NetworkCreateResponse, error) {
|
|
return types.NetworkCreateResponse{}, nil
|
|
}
|
|
|
|
// NetworkDisconnect fakes disconnecting from a network
|
|
func (c *FakeClient) NetworkDisconnect(ctx context.Context, networkID, container string, force bool) error {
|
|
return nil
|
|
}
|
|
|
|
// NetworkInspect fakes inspecting a network
|
|
func (c *FakeClient) NetworkInspect(ctx context.Context, networkID string, options types.NetworkInspectOptions) (types.NetworkResource, error) {
|
|
if c.NetworkInspectFunc != nil {
|
|
return c.NetworkInspectFunc(ctx, networkID, options)
|
|
}
|
|
return types.NetworkResource{}, nil
|
|
}
|
|
|
|
// NetworkInspectWithRaw fakes inspecting a network with a raw response
|
|
func (c *FakeClient) NetworkInspectWithRaw(_ context.Context, _ string, _ types.NetworkInspectOptions) (types.NetworkResource, []byte, error) {
|
|
return types.NetworkResource{}, nil, nil
|
|
}
|
|
|
|
// NetworkList fakes listing networks
|
|
func (c *FakeClient) NetworkList(_ context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// NetworkRemove fakes removing networks
|
|
func (c *FakeClient) NetworkRemove(ctx context.Context, networkID string) error {
|
|
return nil
|
|
}
|
|
|
|
// NetworksPrune fakes pruning networks
|
|
func (c *FakeClient) NetworksPrune(_ context.Context, pruneFilter filters.Args) (types.NetworksPruneReport, error) {
|
|
return types.NetworksPruneReport{}, nil
|
|
}
|