2013-08-22 14:32:59 -04:00
|
|
|
package packer
|
|
|
|
|
2013-11-02 23:47:23 -04:00
|
|
|
import (
|
2019-03-22 09:50:33 -04:00
|
|
|
"context"
|
2013-11-02 23:47:23 -04:00
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2013-08-22 14:32:59 -04:00
|
|
|
// MockBuilder is an implementation of Builder that can be used for tests.
|
|
|
|
// You can set some fake return values and you can keep track of what
|
|
|
|
// methods were called on the builder. It is fairly basic.
|
|
|
|
type MockBuilder struct {
|
2013-11-02 23:31:12 -04:00
|
|
|
ArtifactId string
|
|
|
|
PrepareWarnings []string
|
2013-11-02 23:47:23 -04:00
|
|
|
RunErrResult bool
|
|
|
|
RunNilResult bool
|
2013-08-22 14:32:59 -04:00
|
|
|
|
|
|
|
PrepareCalled bool
|
|
|
|
PrepareConfig []interface{}
|
|
|
|
RunCalled bool
|
|
|
|
RunHook Hook
|
|
|
|
RunUi Ui
|
|
|
|
CancelCalled bool
|
2019-03-27 07:29:09 -04:00
|
|
|
RunFn func(ctx context.Context)
|
2013-08-22 14:32:59 -04:00
|
|
|
}
|
|
|
|
|
2013-11-02 23:31:12 -04:00
|
|
|
func (tb *MockBuilder) Prepare(config ...interface{}) ([]string, error) {
|
2013-08-22 14:32:59 -04:00
|
|
|
tb.PrepareCalled = true
|
|
|
|
tb.PrepareConfig = config
|
2013-11-02 23:31:12 -04:00
|
|
|
return tb.PrepareWarnings, nil
|
2013-08-22 14:32:59 -04:00
|
|
|
}
|
|
|
|
|
2019-03-22 09:50:33 -04:00
|
|
|
func (tb *MockBuilder) Run(ctx context.Context, ui Ui, h Hook) (Artifact, error) {
|
2013-08-22 14:32:59 -04:00
|
|
|
tb.RunCalled = true
|
|
|
|
tb.RunHook = h
|
|
|
|
tb.RunUi = ui
|
2013-11-02 23:47:23 -04:00
|
|
|
|
|
|
|
if tb.RunErrResult {
|
|
|
|
return nil, errors.New("foo")
|
|
|
|
}
|
|
|
|
|
|
|
|
if tb.RunNilResult {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2019-03-27 07:29:09 -04:00
|
|
|
if tb.RunFn != nil {
|
|
|
|
tb.RunFn(ctx)
|
|
|
|
}
|
2013-11-02 23:47:23 -04:00
|
|
|
|
2015-05-26 12:14:29 -04:00
|
|
|
if h != nil {
|
2019-03-22 09:50:33 -04:00
|
|
|
if err := h.Run(ctx, HookProvision, ui, new(MockCommunicator), nil); err != nil {
|
2015-05-26 12:14:29 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 14:32:59 -04:00
|
|
|
return &MockArtifact{
|
|
|
|
IdValue: tb.ArtifactId,
|
|
|
|
}, nil
|
|
|
|
}
|