packer-cn/packer/plugin/post_processor_test.go

38 lines
767 B
Go
Raw Normal View History

2013-06-18 16:49:07 -04:00
package plugin
import (
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
2013-06-18 16:49:07 -04:00
"os/exec"
"testing"
)
type helperPostProcessor byte
func (helperPostProcessor) Configure(...interface{}) error {
2013-06-18 16:49:07 -04:00
return nil
}
func (helperPostProcessor) PostProcess(packer.Ui, packer.Artifact) (packer.Artifact, bool, error) {
return nil, false, nil
2013-06-18 16:49:07 -04:00
}
func TestPostProcessor_NoExist(t *testing.T) {
c := NewClient(&ClientConfig{Cmd: exec.Command("i-should-not-exist")})
defer c.Kill()
_, err := c.PostProcessor()
if err == nil {
t.Fatal("should have error")
}
}
func TestPostProcessor_Good(t *testing.T) {
c := NewClient(&ClientConfig{Cmd: helperProcess("post-processor")})
defer c.Kill()
_, err := c.PostProcessor()
if err != nil {
t.Fatalf("should not have error: %s", err)
}
}