2017-04-07 01:14:53 -04:00
|
|
|
package idresolver
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
|
|
|
|
2017-03-30 20:15:54 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2017-04-07 01:14:53 -04:00
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2017-05-08 13:51:30 -04:00
|
|
|
"github.com/docker/docker/client"
|
2017-04-07 01:14:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type fakeClient struct {
|
|
|
|
client.Client
|
|
|
|
nodeInspectFunc func(string) (swarm.Node, []byte, error)
|
|
|
|
serviceInspectFunc func(string) (swarm.Service, []byte, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cli *fakeClient) NodeInspectWithRaw(ctx context.Context, nodeID string) (swarm.Node, []byte, error) {
|
|
|
|
if cli.nodeInspectFunc != nil {
|
|
|
|
return cli.nodeInspectFunc(nodeID)
|
|
|
|
}
|
|
|
|
return swarm.Node{}, []byte{}, nil
|
|
|
|
}
|
|
|
|
|
2017-03-30 20:15:54 -04:00
|
|
|
func (cli *fakeClient) ServiceInspectWithRaw(ctx context.Context, serviceID string, options types.ServiceInspectOptions) (swarm.Service, []byte, error) {
|
2017-04-07 01:14:53 -04:00
|
|
|
if cli.serviceInspectFunc != nil {
|
|
|
|
return cli.serviceInspectFunc(serviceID)
|
|
|
|
}
|
|
|
|
return swarm.Service{}, []byte{}, nil
|
|
|
|
}
|