2013-12-24 13:55:44 -05:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2013-12-25 01:33:49 -05:00
|
|
|
"sync"
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DriverMock struct {
|
2013-12-25 01:33:49 -05:00
|
|
|
sync.Mutex
|
|
|
|
|
2013-12-26 16:39:41 -05:00
|
|
|
CloneCalled bool
|
|
|
|
CloneDst string
|
|
|
|
CloneSrc string
|
|
|
|
CloneErr error
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
CompactDiskCalled bool
|
|
|
|
CompactDiskPath string
|
|
|
|
CompactDiskErr error
|
|
|
|
|
|
|
|
CreateDiskCalled bool
|
|
|
|
CreateDiskOutput string
|
|
|
|
CreateDiskSize string
|
|
|
|
CreateDiskTypeId string
|
|
|
|
CreateDiskErr error
|
|
|
|
|
|
|
|
IsRunningCalled bool
|
|
|
|
IsRunningPath string
|
|
|
|
IsRunningResult bool
|
|
|
|
IsRunningErr error
|
|
|
|
|
2015-06-13 19:23:33 -04:00
|
|
|
CommHostCalled bool
|
|
|
|
CommHostState multistep.StateBag
|
|
|
|
CommHostResult string
|
|
|
|
CommHostErr error
|
2013-12-24 13:55:44 -05:00
|
|
|
|
|
|
|
StartCalled bool
|
|
|
|
StartPath string
|
|
|
|
StartHeadless bool
|
|
|
|
StartErr error
|
|
|
|
|
|
|
|
StopCalled bool
|
|
|
|
StopPath string
|
|
|
|
StopErr error
|
|
|
|
|
|
|
|
SuppressMessagesCalled bool
|
|
|
|
SuppressMessagesPath string
|
|
|
|
SuppressMessagesErr error
|
|
|
|
|
|
|
|
ToolsIsoPathCalled bool
|
|
|
|
ToolsIsoPathFlavor string
|
|
|
|
ToolsIsoPathResult string
|
|
|
|
|
2014-04-21 11:25:32 -04:00
|
|
|
ToolsInstallCalled bool
|
|
|
|
ToolsInstallErr error
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
DhcpLeasesPathCalled bool
|
|
|
|
DhcpLeasesPathDevice string
|
|
|
|
DhcpLeasesPathResult string
|
|
|
|
|
|
|
|
VerifyCalled bool
|
|
|
|
VerifyErr error
|
|
|
|
}
|
|
|
|
|
2013-12-26 16:39:41 -05:00
|
|
|
func (d *DriverMock) Clone(dst string, src string) error {
|
|
|
|
d.CloneCalled = true
|
|
|
|
d.CloneDst = dst
|
|
|
|
d.CloneSrc = src
|
|
|
|
return d.CloneErr
|
|
|
|
}
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
func (d *DriverMock) CompactDisk(path string) error {
|
|
|
|
d.CompactDiskCalled = true
|
|
|
|
d.CompactDiskPath = path
|
|
|
|
return d.CompactDiskErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) CreateDisk(output string, size string, typeId string) error {
|
|
|
|
d.CreateDiskCalled = true
|
|
|
|
d.CreateDiskOutput = output
|
|
|
|
d.CreateDiskSize = size
|
|
|
|
d.CreateDiskTypeId = typeId
|
|
|
|
return d.CreateDiskErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) IsRunning(path string) (bool, error) {
|
2013-12-25 01:33:49 -05:00
|
|
|
d.Lock()
|
|
|
|
defer d.Unlock()
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
d.IsRunningCalled = true
|
|
|
|
d.IsRunningPath = path
|
|
|
|
return d.IsRunningResult, d.IsRunningErr
|
|
|
|
}
|
|
|
|
|
2015-06-13 19:23:33 -04:00
|
|
|
func (d *DriverMock) CommHost(state multistep.StateBag) (string, error) {
|
|
|
|
d.CommHostCalled = true
|
|
|
|
d.CommHostState = state
|
|
|
|
return d.CommHostResult, d.CommHostErr
|
2013-12-24 13:55:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) Start(path string, headless bool) error {
|
|
|
|
d.StartCalled = true
|
|
|
|
d.StartPath = path
|
|
|
|
d.StartHeadless = headless
|
|
|
|
return d.StartErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) Stop(path string) error {
|
|
|
|
d.StopCalled = true
|
|
|
|
d.StopPath = path
|
|
|
|
return d.StopErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) SuppressMessages(path string) error {
|
|
|
|
d.SuppressMessagesCalled = true
|
|
|
|
d.SuppressMessagesPath = path
|
|
|
|
return d.SuppressMessagesErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) ToolsIsoPath(flavor string) string {
|
|
|
|
d.ToolsIsoPathCalled = true
|
|
|
|
d.ToolsIsoPathFlavor = flavor
|
|
|
|
return d.ToolsIsoPathResult
|
|
|
|
}
|
|
|
|
|
2014-04-21 11:25:32 -04:00
|
|
|
func (d *DriverMock) ToolsInstall() error {
|
|
|
|
d.ToolsInstallCalled = true
|
|
|
|
return d.ToolsInstallErr
|
|
|
|
}
|
|
|
|
|
2013-12-24 13:55:44 -05:00
|
|
|
func (d *DriverMock) DhcpLeasesPath(device string) string {
|
|
|
|
d.DhcpLeasesPathCalled = true
|
|
|
|
d.DhcpLeasesPathDevice = device
|
|
|
|
return d.DhcpLeasesPathResult
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DriverMock) Verify() error {
|
|
|
|
d.VerifyCalled = true
|
|
|
|
return d.VerifyErr
|
|
|
|
}
|