2017-04-04 13:40:37 -04:00
|
|
|
package dockerfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/distribution/reference"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/backend"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
"github.com/docker/docker/builder"
|
|
|
|
"github.com/docker/docker/image"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockBackend implements the builder.Backend interface for unit testing
|
|
|
|
type MockBackend struct {
|
2017-04-21 15:08:11 -04:00
|
|
|
getImageOnBuildFunc func(string) (builder.Image, error)
|
|
|
|
getImageOnBuildImage *mockImage
|
|
|
|
containerCreateFunc func(config types.ContainerCreateConfig) (container.ContainerCreateCreatedBody, error)
|
|
|
|
commitFunc func(string, *backend.ContainerCommitConfig) (string, error)
|
2017-04-04 13:40:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) GetImageOnBuild(name string) (builder.Image, error) {
|
|
|
|
if m.getImageOnBuildFunc != nil {
|
|
|
|
return m.getImageOnBuildFunc(name)
|
|
|
|
}
|
2017-04-21 15:08:11 -04:00
|
|
|
if m.getImageOnBuildImage != nil {
|
|
|
|
return m.getImageOnBuildImage, nil
|
|
|
|
}
|
2017-04-04 13:40:37 -04:00
|
|
|
return &mockImage{id: "theid"}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) TagImageWithReference(image.ID, reference.Named) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) PullOnBuild(ctx context.Context, name string, authConfigs map[string]types.AuthConfig, output io.Writer) (builder.Image, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-03-15 07:33:04 -04:00
|
|
|
func (m *MockBackend) ContainerAttachRaw(cID string, stdin io.ReadCloser, stdout, stderr io.Writer, stream bool, attached chan struct{}) error {
|
2017-04-04 13:40:37 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerCreate(config types.ContainerCreateConfig) (container.ContainerCreateCreatedBody, error) {
|
2017-04-21 15:08:11 -04:00
|
|
|
if m.containerCreateFunc != nil {
|
|
|
|
return m.containerCreateFunc(config)
|
|
|
|
}
|
2017-04-04 13:40:37 -04:00
|
|
|
return container.ContainerCreateCreatedBody{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerRm(name string, config *types.ContainerRmConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-21 15:08:11 -04:00
|
|
|
func (m *MockBackend) Commit(cID string, cfg *backend.ContainerCommitConfig) (string, error) {
|
|
|
|
if m.commitFunc != nil {
|
|
|
|
return m.commitFunc(cID, cfg)
|
|
|
|
}
|
2017-04-04 13:40:37 -04:00
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerKill(containerID string, sig uint64) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerStart(containerID string, hostConfig *container.HostConfig, checkpoint string, checkpointDir string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerWait(containerID string, timeout time.Duration) (int, error) {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerUpdateCmdOnBuild(containerID string, cmd []string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) ContainerCreateWorkdir(containerID string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-20 18:22:29 -04:00
|
|
|
func (m *MockBackend) CopyOnBuild(containerID string, destPath string, srcRoot string, srcPath string, decompress bool) error {
|
2017-04-04 13:40:37 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) HasExperimental() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) SquashImage(from string, to string) (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) MountImage(name string) (string, func() error, error) {
|
|
|
|
return "", func() error { return nil }, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockImage struct {
|
|
|
|
id string
|
|
|
|
config *container.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *mockImage) ImageID() string {
|
|
|
|
return i.id
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *mockImage) RunConfig() *container.Config {
|
|
|
|
return i.config
|
|
|
|
}
|
2017-04-21 15:08:11 -04:00
|
|
|
|
|
|
|
type mockImageCache struct {
|
|
|
|
getCacheFunc func(parentID string, cfg *container.Config) (string, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mic *mockImageCache) GetCache(parentID string, cfg *container.Config) (string, error) {
|
|
|
|
if mic.getCacheFunc != nil {
|
|
|
|
return mic.getCacheFunc(parentID, cfg)
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|