mirror of https://github.com/docker/cli.git
235 lines
7.3 KiB
Go
235 lines
7.3 KiB
Go
package containerizedengine
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/containerd"
|
|
"github.com/containerd/containerd/cio"
|
|
"github.com/containerd/containerd/containers"
|
|
"github.com/containerd/containerd/content"
|
|
"github.com/containerd/containerd/oci"
|
|
prototypes "github.com/gogo/protobuf/types"
|
|
"github.com/opencontainers/go-digest"
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
|
)
|
|
|
|
type (
|
|
fakeContainerdClient struct {
|
|
containersFunc func(ctx context.Context, filters ...string) ([]containerd.Container, error)
|
|
newContainerFunc func(ctx context.Context, id string, opts ...containerd.NewContainerOpts) (containerd.Container, error)
|
|
pullFunc func(ctx context.Context, ref string, opts ...containerd.RemoteOpt) (containerd.Image, error)
|
|
getImageFunc func(ctx context.Context, ref string) (containerd.Image, error)
|
|
contentStoreFunc func() content.Store
|
|
containerServiceFunc func() containers.Store
|
|
installFunc func(context.Context, containerd.Image, ...containerd.InstallOpts) error
|
|
versionFunc func(ctx context.Context) (containerd.Version, error)
|
|
}
|
|
fakeContainer struct {
|
|
idFunc func() string
|
|
infoFunc func(context.Context) (containers.Container, error)
|
|
deleteFunc func(context.Context, ...containerd.DeleteOpts) error
|
|
newTaskFunc func(context.Context, cio.Creator, ...containerd.NewTaskOpts) (containerd.Task, error)
|
|
specFunc func(context.Context) (*oci.Spec, error)
|
|
taskFunc func(context.Context, cio.Attach) (containerd.Task, error)
|
|
imageFunc func(context.Context) (containerd.Image, error)
|
|
labelsFunc func(context.Context) (map[string]string, error)
|
|
setLabelsFunc func(context.Context, map[string]string) (map[string]string, error)
|
|
extensionsFunc func(context.Context) (map[string]prototypes.Any, error)
|
|
updateFunc func(context.Context, ...containerd.UpdateContainerOpts) error
|
|
checkpointFunc func(context.Context, string, ...containerd.CheckpointOpts) (containerd.Image, error)
|
|
}
|
|
fakeImage struct {
|
|
nameFunc func() string
|
|
targetFunc func() ocispec.Descriptor
|
|
labelFunc func() map[string]string
|
|
unpackFunc func(context.Context, string) error
|
|
rootFSFunc func(ctx context.Context) ([]digest.Digest, error)
|
|
sizeFunc func(ctx context.Context) (int64, error)
|
|
configFunc func(ctx context.Context) (ocispec.Descriptor, error)
|
|
isUnpackedFunc func(context.Context, string) (bool, error)
|
|
contentStoreFunc func() content.Store
|
|
}
|
|
)
|
|
|
|
func (w *fakeContainerdClient) Containers(ctx context.Context, filters ...string) ([]containerd.Container, error) {
|
|
if w.containersFunc != nil {
|
|
return w.containersFunc(ctx, filters...)
|
|
}
|
|
return []containerd.Container{}, nil
|
|
}
|
|
func (w *fakeContainerdClient) NewContainer(ctx context.Context, id string, opts ...containerd.NewContainerOpts) (containerd.Container, error) {
|
|
if w.newContainerFunc != nil {
|
|
return w.newContainerFunc(ctx, id, opts...)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (w *fakeContainerdClient) Pull(ctx context.Context, ref string, opts ...containerd.RemoteOpt) (containerd.Image, error) {
|
|
if w.pullFunc != nil {
|
|
return w.pullFunc(ctx, ref, opts...)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (w *fakeContainerdClient) GetImage(ctx context.Context, ref string) (containerd.Image, error) {
|
|
if w.getImageFunc != nil {
|
|
return w.getImageFunc(ctx, ref)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (w *fakeContainerdClient) ContentStore() content.Store {
|
|
if w.contentStoreFunc != nil {
|
|
return w.contentStoreFunc()
|
|
}
|
|
return nil
|
|
}
|
|
func (w *fakeContainerdClient) ContainerService() containers.Store {
|
|
if w.containerServiceFunc != nil {
|
|
return w.containerServiceFunc()
|
|
}
|
|
return nil
|
|
}
|
|
func (w *fakeContainerdClient) Close() error {
|
|
return nil
|
|
}
|
|
func (w *fakeContainerdClient) Install(ctx context.Context, image containerd.Image, args ...containerd.InstallOpts) error {
|
|
if w.installFunc != nil {
|
|
return w.installFunc(ctx, image, args...)
|
|
}
|
|
return nil
|
|
}
|
|
func (w *fakeContainerdClient) Version(ctx context.Context) (containerd.Version, error) {
|
|
if w.versionFunc != nil {
|
|
return w.versionFunc(ctx)
|
|
}
|
|
return containerd.Version{}, nil
|
|
}
|
|
|
|
func (c *fakeContainer) ID() string {
|
|
if c.idFunc != nil {
|
|
return c.idFunc()
|
|
}
|
|
return ""
|
|
}
|
|
func (c *fakeContainer) Info(ctx context.Context) (containers.Container, error) {
|
|
if c.infoFunc != nil {
|
|
return c.infoFunc(ctx)
|
|
}
|
|
return containers.Container{}, nil
|
|
}
|
|
func (c *fakeContainer) Delete(ctx context.Context, opts ...containerd.DeleteOpts) error {
|
|
if c.deleteFunc != nil {
|
|
return c.deleteFunc(ctx, opts...)
|
|
}
|
|
return nil
|
|
}
|
|
func (c *fakeContainer) NewTask(ctx context.Context, ioc cio.Creator, opts ...containerd.NewTaskOpts) (containerd.Task, error) {
|
|
if c.newTaskFunc != nil {
|
|
return c.newTaskFunc(ctx, ioc, opts...)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Spec(ctx context.Context) (*oci.Spec, error) {
|
|
if c.specFunc != nil {
|
|
return c.specFunc(ctx)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Task(ctx context.Context, attach cio.Attach) (containerd.Task, error) {
|
|
if c.taskFunc != nil {
|
|
return c.taskFunc(ctx, attach)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Image(ctx context.Context) (containerd.Image, error) {
|
|
if c.imageFunc != nil {
|
|
return c.imageFunc(ctx)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Labels(ctx context.Context) (map[string]string, error) {
|
|
if c.labelsFunc != nil {
|
|
return c.labelsFunc(ctx)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) SetLabels(ctx context.Context, labels map[string]string) (map[string]string, error) {
|
|
if c.setLabelsFunc != nil {
|
|
return c.setLabelsFunc(ctx, labels)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Extensions(ctx context.Context) (map[string]prototypes.Any, error) {
|
|
if c.extensionsFunc != nil {
|
|
return c.extensionsFunc(ctx)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (c *fakeContainer) Update(ctx context.Context, opts ...containerd.UpdateContainerOpts) error {
|
|
if c.updateFunc != nil {
|
|
return c.updateFunc(ctx, opts...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *fakeContainer) Checkpoint(ctx context.Context, ref string, opts ...containerd.CheckpointOpts) (containerd.Image, error) {
|
|
if c.checkpointFunc != nil {
|
|
return c.checkpointFunc(ctx, ref, opts...)
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
func (i *fakeImage) Name() string {
|
|
if i.nameFunc != nil {
|
|
return i.nameFunc()
|
|
}
|
|
return ""
|
|
}
|
|
func (i *fakeImage) Target() ocispec.Descriptor {
|
|
if i.targetFunc != nil {
|
|
return i.targetFunc()
|
|
}
|
|
return ocispec.Descriptor{}
|
|
}
|
|
func (i *fakeImage) Labels() map[string]string {
|
|
if i.labelFunc != nil {
|
|
return i.labelFunc()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (i *fakeImage) Unpack(ctx context.Context, name string) error {
|
|
if i.unpackFunc != nil {
|
|
return i.unpackFunc(ctx, name)
|
|
}
|
|
return nil
|
|
}
|
|
func (i *fakeImage) RootFS(ctx context.Context) ([]digest.Digest, error) {
|
|
if i.rootFSFunc != nil {
|
|
return i.rootFSFunc(ctx)
|
|
}
|
|
return nil, nil
|
|
}
|
|
func (i *fakeImage) Size(ctx context.Context) (int64, error) {
|
|
if i.sizeFunc != nil {
|
|
return i.sizeFunc(ctx)
|
|
}
|
|
return 0, nil
|
|
}
|
|
func (i *fakeImage) Config(ctx context.Context) (ocispec.Descriptor, error) {
|
|
if i.configFunc != nil {
|
|
return i.configFunc(ctx)
|
|
}
|
|
return ocispec.Descriptor{}, nil
|
|
}
|
|
func (i *fakeImage) IsUnpacked(ctx context.Context, name string) (bool, error) {
|
|
if i.isUnpackedFunc != nil {
|
|
return i.isUnpackedFunc(ctx, name)
|
|
}
|
|
return false, nil
|
|
}
|
|
func (i *fakeImage) ContentStore() content.Store {
|
|
if i.contentStoreFunc != nil {
|
|
return i.contentStoreFunc()
|
|
}
|
|
return nil
|
|
}
|