packer-cn/packer/plugin/post_processor_test.go

43 lines
921 B
Go

package plugin
import (
"context"
"os/exec"
"testing"
"github.com/hashicorp/hcl/v2/hcldec"
"github.com/hashicorp/packer/packer"
)
type helperPostProcessor byte
func (helperPostProcessor) ConfigSpec() hcldec.ObjectSpec { return nil }
func (helperPostProcessor) Configure(...interface{}) error {
return nil
}
func (helperPostProcessor) PostProcess(context.Context, packer.Ui, packer.Artifact) (packer.Artifact, bool, bool, error) {
return nil, false, false, 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)
}
}