mirror of https://github.com/docker/cli.git
36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
|
package checkpoint
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"github.com/docker/docker/client"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
type fakeClient struct {
|
||
|
client.Client
|
||
|
checkpointCreateFunc func(container string, options types.CheckpointCreateOptions) error
|
||
|
checkpointDeleteFunc func(container string, options types.CheckpointDeleteOptions) error
|
||
|
checkpointListFunc func(container string, options types.CheckpointListOptions) ([]types.Checkpoint, error)
|
||
|
}
|
||
|
|
||
|
func (cli *fakeClient) CheckpointCreate(ctx context.Context, container string, options types.CheckpointCreateOptions) error {
|
||
|
if cli.checkpointCreateFunc != nil {
|
||
|
return cli.checkpointCreateFunc(container, options)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (cli *fakeClient) CheckpointDelete(ctx context.Context, container string, options types.CheckpointDeleteOptions) error {
|
||
|
if cli.checkpointDeleteFunc != nil {
|
||
|
return cli.checkpointDeleteFunc(container, options)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (cli *fakeClient) CheckpointList(ctx context.Context, container string, options types.CheckpointListOptions) ([]types.Checkpoint, error) {
|
||
|
if cli.checkpointListFunc != nil {
|
||
|
return cli.checkpointListFunc(container, options)
|
||
|
}
|
||
|
return []types.Checkpoint{}, nil
|
||
|
}
|