54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package packer
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
|
)
|
|
|
|
// MockProvisioner is an implementation of Provisioner that can be
|
|
// used for tests.
|
|
type MockProvisioner struct {
|
|
ProvFunc func(context.Context) error
|
|
|
|
PrepCalled bool
|
|
PrepConfigs []interface{}
|
|
ProvCalled bool
|
|
ProvCommunicator Communicator
|
|
ProvUi Ui
|
|
}
|
|
|
|
func (tp *MockProvisioner) ConfigSpec() hcldec.ObjectSpec { return tp.FlatMapstructure().HCL2Spec() }
|
|
|
|
func (tp *MockProvisioner) FlatConfig() interface{} { return tp.FlatMapstructure() }
|
|
|
|
func (t *MockProvisioner) Prepare(configs ...interface{}) error {
|
|
t.PrepCalled = true
|
|
t.PrepConfigs = configs
|
|
return nil
|
|
}
|
|
|
|
func (t *MockProvisioner) Provision(ctx context.Context, ui Ui, comm Communicator, generatedData map[string]interface{}) error {
|
|
t.ProvCalled = true
|
|
t.ProvCommunicator = comm
|
|
t.ProvUi = ui
|
|
|
|
if t.ProvFunc == nil {
|
|
return nil
|
|
}
|
|
|
|
return t.ProvFunc(ctx)
|
|
}
|
|
|
|
func (t *MockProvisioner) Communicator() Communicator {
|
|
return t.ProvCommunicator
|
|
}
|
|
|
|
func (t *MockProvisioner) ElevatedUser() string {
|
|
return "user"
|
|
}
|
|
|
|
func (t *MockProvisioner) ElevatedPassword() string {
|
|
return "password"
|
|
}
|