2017-04-07 01:14:53 -04:00
|
|
|
package idresolver
|
|
|
|
|
|
|
|
import (
|
2018-05-03 18:02:44 -07:00
|
|
|
"context"
|
|
|
|
|
2017-04-07 01:14:53 -04:00
|
|
|
"github.com/docker/docker/api/types/swarm"
|
2017-05-08 10:51:30 -07: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)
|
|
|
|
}
|
|
|
|
|
2023-03-30 16:27:47 +02:00
|
|
|
func (cli *fakeClient) NodeInspectWithRaw(_ context.Context, nodeID string) (swarm.Node, []byte, error) {
|
2017-04-07 01:14:53 -04:00
|
|
|
if cli.nodeInspectFunc != nil {
|
|
|
|
return cli.nodeInspectFunc(nodeID)
|
|
|
|
}
|
|
|
|
return swarm.Node{}, []byte{}, nil
|
|
|
|
}
|
|
|
|
|
2025-05-19 17:03:39 +02:00
|
|
|
func (cli *fakeClient) ServiceInspectWithRaw(_ context.Context, serviceID string, _ swarm.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
|
|
|
|
}
|