53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
package packer
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// 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 {
|
|
ArtifactId string
|
|
PrepareWarnings []string
|
|
RunErrResult bool
|
|
RunNilResult bool
|
|
|
|
PrepareCalled bool
|
|
PrepareConfig []interface{}
|
|
RunCalled bool
|
|
RunCache Cache
|
|
RunHook Hook
|
|
RunUi Ui
|
|
CancelCalled bool
|
|
}
|
|
|
|
func (tb *MockBuilder) Prepare(config ...interface{}) ([]string, error) {
|
|
tb.PrepareCalled = true
|
|
tb.PrepareConfig = config
|
|
return tb.PrepareWarnings, nil
|
|
}
|
|
|
|
func (tb *MockBuilder) Run(ui Ui, h Hook, c Cache) (Artifact, error) {
|
|
tb.RunCalled = true
|
|
tb.RunHook = h
|
|
tb.RunUi = ui
|
|
tb.RunCache = c
|
|
|
|
if tb.RunErrResult {
|
|
return nil, errors.New("foo")
|
|
}
|
|
|
|
if tb.RunNilResult {
|
|
return nil, nil
|
|
}
|
|
|
|
return &MockArtifact{
|
|
IdValue: tb.ArtifactId,
|
|
}, nil
|
|
}
|
|
|
|
func (tb *MockBuilder) Cancel() {
|
|
tb.CancelCalled = true
|
|
}
|