packer-cn/packer/plugin/hook_test.go

27 lines
449 B
Go
Raw Normal View History

2013-05-11 13:46:17 -04:00
package plugin
import (
"os/exec"
"testing"
)
func TestHook_NoExist(t *testing.T) {
c := NewClient(&ClientConfig{Cmd: exec.Command("i-should-not-exist")})
defer c.Kill()
2013-05-11 13:46:17 -04:00
_, err := c.Hook()
if err == nil {
t.Fatal("should have error")
}
2013-05-11 13:46:17 -04:00
}
func TestHook_Good(t *testing.T) {
c := NewClient(&ClientConfig{Cmd: helperProcess("hook")})
defer c.Kill()
2013-05-11 13:46:17 -04:00
_, err := c.Hook()
if err != nil {
t.Fatalf("should not have error: %s", err)
}
2013-05-11 13:46:17 -04:00
}