93 lines
1.9 KiB
Go
93 lines
1.9 KiB
Go
package rpc
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
var testPostProcessorArtifact = new(packer.MockArtifact)
|
|
|
|
type TestPostProcessor struct {
|
|
configCalled bool
|
|
configVal []interface{}
|
|
ppCalled bool
|
|
ppArtifact packer.Artifact
|
|
ppArtifactId string
|
|
ppUi packer.Ui
|
|
}
|
|
|
|
func (pp *TestPostProcessor) Configure(v ...interface{}) error {
|
|
pp.configCalled = true
|
|
pp.configVal = v
|
|
return nil
|
|
}
|
|
|
|
func (pp *TestPostProcessor) PostProcess(ui packer.Ui, a packer.Artifact) (packer.Artifact, bool, error) {
|
|
pp.ppCalled = true
|
|
pp.ppArtifact = a
|
|
pp.ppArtifactId = a.Id()
|
|
pp.ppUi = ui
|
|
return testPostProcessorArtifact, false, nil
|
|
}
|
|
|
|
func TestPostProcessorRPC(t *testing.T) {
|
|
// Create the interface to test
|
|
p := new(TestPostProcessor)
|
|
|
|
// Start the server
|
|
client, server := testClientServer(t)
|
|
defer client.Close()
|
|
defer server.Close()
|
|
server.RegisterPostProcessor(p)
|
|
|
|
ppClient := client.PostProcessor()
|
|
|
|
// Test Configure
|
|
config := 42
|
|
err := ppClient.Configure(config)
|
|
if err != nil {
|
|
t.Fatalf("error: %s", err)
|
|
}
|
|
|
|
if !p.configCalled {
|
|
t.Fatal("config should be called")
|
|
}
|
|
|
|
expected := []interface{}{int64(42)}
|
|
if !reflect.DeepEqual(p.configVal, expected) {
|
|
t.Fatalf("unknown config value: %#v", p.configVal)
|
|
}
|
|
|
|
// Test PostProcess
|
|
a := &packer.MockArtifact{
|
|
IdValue: "ppTestId",
|
|
}
|
|
ui := new(testUi)
|
|
artifact, _, err := ppClient.PostProcess(ui, a)
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
if !p.ppCalled {
|
|
t.Fatal("postprocess should be called")
|
|
}
|
|
|
|
if p.ppArtifactId != "ppTestId" {
|
|
t.Fatalf("unknown artifact: %s", p.ppArtifact.Id())
|
|
}
|
|
|
|
if artifact.Id() != "id" {
|
|
t.Fatalf("unknown artifact: %s", artifact.Id())
|
|
}
|
|
}
|
|
|
|
func TestPostProcessor_Implements(t *testing.T) {
|
|
var raw interface{}
|
|
raw = new(postProcessor)
|
|
if _, ok := raw.(packer.PostProcessor); !ok {
|
|
t.Fatal("not a postprocessor")
|
|
}
|
|
}
|