74 lines
1.6 KiB
Go
74 lines
1.6 KiB
Go
package cloudstack
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
"github.com/xanzy/go-cloudstack/cloudstack"
|
|
)
|
|
|
|
const templateID = "286dd44a-ec6b-4789-b192-804f08f04b4c"
|
|
|
|
func TestArtifact_Impl(t *testing.T) {
|
|
var raw interface{} = &Artifact{}
|
|
|
|
if _, ok := raw.(packer.Artifact); !ok {
|
|
t.Fatalf("Artifact does not implement packer.Artifact")
|
|
}
|
|
}
|
|
|
|
func TestArtifactId(t *testing.T) {
|
|
a := &Artifact{
|
|
client: nil,
|
|
config: nil,
|
|
template: &cloudstack.CreateTemplateResponse{
|
|
Id: "286dd44a-ec6b-4789-b192-804f08f04b4c",
|
|
},
|
|
}
|
|
|
|
if a.Id() != templateID {
|
|
t.Fatalf("artifact ID should match: %s", templateID)
|
|
}
|
|
}
|
|
|
|
func TestArtifactString(t *testing.T) {
|
|
a := &Artifact{
|
|
client: nil,
|
|
config: nil,
|
|
template: &cloudstack.CreateTemplateResponse{
|
|
Name: "packer-foobar",
|
|
},
|
|
}
|
|
expected := "A template was created: packer-foobar"
|
|
|
|
if a.String() != expected {
|
|
t.Fatalf("artifact string should match: %s", expected)
|
|
}
|
|
}
|
|
|
|
func TestArtifactState_StateData(t *testing.T) {
|
|
expectedData := "this is the data"
|
|
artifact := &Artifact{
|
|
StateData: map[string]interface{}{"state_data": expectedData},
|
|
}
|
|
|
|
// Valid state
|
|
result := artifact.State("state_data")
|
|
if result != expectedData {
|
|
t.Fatalf("Bad: State data was %s instead of %s", result, expectedData)
|
|
}
|
|
|
|
// Invalid state
|
|
result = artifact.State("invalid_key")
|
|
if result != nil {
|
|
t.Fatalf("Bad: State should be nil for invalid state data name")
|
|
}
|
|
|
|
// Nil StateData should not fail and should return nil
|
|
artifact = &Artifact{}
|
|
result = artifact.State("key")
|
|
if result != nil {
|
|
t.Fatalf("Bad: State should be nil for nil StateData")
|
|
}
|
|
}
|