Documentation ¶
Index ¶
- func FakeRefs(p plugingetter.CompatPlugin) int
- func MakeFakePlugin(d volume.Driver, l net.Listener) (plugingetter.CompatPlugin, error)
- func NewFakeDriver(name string) volume.Driver
- func NewFakePluginGetter(pls ...plugingetter.CompatPlugin) plugingetter.PluginGetter
- func NewFakeVolume(name string, driverName string) volume.Volume
- type FakeDriver
- func (d *FakeDriver) Create(name string, opts map[string]string) (volume.Volume, error)
- func (d *FakeDriver) Get(name string) (volume.Volume, error)
- func (d *FakeDriver) List() ([]volume.Volume, error)
- func (d *FakeDriver) Name() string
- func (d *FakeDriver) Remove(v volume.Volume) error
- func (*FakeDriver) Scope() string
- type FakeVolume
- type NoopVolume
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FakeRefs ¶
func FakeRefs(p plugingetter.CompatPlugin) int
FakeRefs checks ref count on a fake plugin.
func MakeFakePlugin ¶
func MakeFakePlugin(d volume.Driver, l net.Listener) (plugingetter.CompatPlugin, error)
MakeFakePlugin creates a fake plugin from the passed in driver Note: currently only "Create" is implemented because that's all that's needed so far. If you need it to test something else, add it here, but probably you shouldn't need to use this except for very specific cases with v2 plugin handling.
func NewFakeDriver ¶
NewFakeDriver creates a new FakeDriver with the specified name
func NewFakePluginGetter ¶
func NewFakePluginGetter(pls ...plugingetter.CompatPlugin) plugingetter.PluginGetter
NewFakePluginGetter returns a plugin getter for fake plugins
Types ¶
type FakeDriver ¶
type FakeDriver struct {
// contains filtered or unexported fields
}
FakeDriver is a driver that generates fake volumes
func (*FakeDriver) Create ¶
Create initializes a fake volume. It returns an error if the options include an "error" key with a message
func (*FakeDriver) Get ¶
func (d *FakeDriver) Get(name string) (volume.Volume, error)
Get gets the volume
func (*FakeDriver) List ¶
func (d *FakeDriver) List() ([]volume.Volume, error)
List lists the volumes
type FakeVolume ¶
type FakeVolume struct {
// contains filtered or unexported fields
}
FakeVolume is a fake volume with a random name
func (FakeVolume) CreatedAt ¶
func (f FakeVolume) CreatedAt() (time.Time, error)
CreatedAt provides the time the volume (directory) was created at
func (FakeVolume) DriverName ¶
func (f FakeVolume) DriverName() string
DriverName is the name of the driver
func (FakeVolume) Mount ¶
func (FakeVolume) Mount(_ string) (string, error)
Mount mounts the volume in the container
func (FakeVolume) Status ¶
func (FakeVolume) Status() map[string]interface{}
Status provides low-level details about the volume
func (FakeVolume) Unmount ¶
func (FakeVolume) Unmount(_ string) error
Unmount unmounts the volume from the container
type NoopVolume ¶
type NoopVolume struct{}
NoopVolume is a volume that doesn't perform any operation
func (NoopVolume) CreatedAt ¶
func (NoopVolume) CreatedAt() (time.Time, error)
CreatedAt provides the time the volume (directory) was created at
func (NoopVolume) DriverName ¶
func (NoopVolume) DriverName() string
DriverName is the name of the driver
func (NoopVolume) Mount ¶
func (NoopVolume) Mount(_ string) (string, error)
Mount mounts the volume in the container
func (NoopVolume) Status ¶
func (NoopVolume) Status() map[string]interface{}
Status provides low-level details about the volume
func (NoopVolume) Unmount ¶
func (NoopVolume) Unmount(_ string) error
Unmount unmounts the volume from the container