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>
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package secret
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/docker/docker/client"
|
|
)
|
|
|
|
type fakeClient struct {
|
|
client.Client
|
|
secretCreateFunc func(swarm.SecretSpec) (types.SecretCreateResponse, error)
|
|
secretInspectFunc func(string) (swarm.Secret, []byte, error)
|
|
secretListFunc func(types.SecretListOptions) ([]swarm.Secret, error)
|
|
secretRemoveFunc func(string) error
|
|
}
|
|
|
|
func (c *fakeClient) SecretCreate(ctx context.Context, spec swarm.SecretSpec) (types.SecretCreateResponse, error) {
|
|
if c.secretCreateFunc != nil {
|
|
return c.secretCreateFunc(spec)
|
|
}
|
|
return types.SecretCreateResponse{}, nil
|
|
}
|
|
|
|
func (c *fakeClient) SecretInspectWithRaw(ctx context.Context, id string) (swarm.Secret, []byte, error) {
|
|
if c.secretInspectFunc != nil {
|
|
return c.secretInspectFunc(id)
|
|
}
|
|
return swarm.Secret{}, nil, nil
|
|
}
|
|
|
|
func (c *fakeClient) SecretList(ctx context.Context, options types.SecretListOptions) ([]swarm.Secret, error) {
|
|
if c.secretListFunc != nil {
|
|
return c.secretListFunc(options)
|
|
}
|
|
return []swarm.Secret{}, nil
|
|
}
|
|
|
|
func (c *fakeClient) SecretRemove(ctx context.Context, name string) error {
|
|
if c.secretRemoveFunc != nil {
|
|
return c.secretRemoveFunc(name)
|
|
}
|
|
return nil
|
|
}
|