38 lines
740 B
Go
38 lines
740 B
Go
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/packer"
|
||
|
"os/exec"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
type helperPostProcessor byte
|
||
|
|
||
|
func (helperPostProcessor) Configure(interface{}) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (helperPostProcessor) PostProcess(packer.Artifact) (packer.Artifact, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
}
|
||
|
}
|