42 lines
782 B
Go
42 lines
782 B
Go
package rpc
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/packer"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestArtifactRPC(t *testing.T) {
|
|
// Create the interface to test
|
|
a := new(packer.MockArtifact)
|
|
|
|
// Start the server
|
|
client, server := testClientServer(t)
|
|
defer client.Close()
|
|
defer server.Close()
|
|
server.RegisterArtifact(a)
|
|
|
|
aClient := client.Artifact()
|
|
|
|
// Test
|
|
if aClient.BuilderId() != "bid" {
|
|
t.Fatalf("bad: %s", aClient.BuilderId())
|
|
}
|
|
|
|
if !reflect.DeepEqual(aClient.Files(), []string{"a", "b"}) {
|
|
t.Fatalf("bad: %#v", aClient.Files())
|
|
}
|
|
|
|
if aClient.Id() != "id" {
|
|
t.Fatalf("bad: %s", aClient.Id())
|
|
}
|
|
|
|
if aClient.String() != "string" {
|
|
t.Fatalf("bad: %s", aClient.String())
|
|
}
|
|
}
|
|
|
|
func TestArtifact_Implements(t *testing.T) {
|
|
var _ packer.Artifact = new(artifact)
|
|
}
|