packer-cn/packer/builder_test.go

30 lines
556 B
Go
Raw Normal View History

package packer
type TestBuilder struct {
prepareCalled bool
prepareConfig []interface{}
runCalled bool
2013-06-10 01:00:47 -04:00
runCache Cache
runHook Hook
runUi Ui
cancelCalled bool
}
func (tb *TestBuilder) Prepare(config ...interface{}) error {
tb.prepareCalled = true
tb.prepareConfig = config
return nil
}
func (tb *TestBuilder) Run(ui Ui, h Hook, c Cache) (Artifact, error) {
tb.runCalled = true
tb.runHook = h
tb.runUi = ui
2013-06-10 01:00:47 -04:00
tb.runCache = c
2013-06-18 13:54:22 -04:00
return new(TestArtifact), nil
}
func (tb *TestBuilder) Cancel() {
tb.cancelCalled = true
}