2019-04-15 17:22:25 -04:00
|
|
|
package linode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestArtifact_Impl(t *testing.T) {
|
|
|
|
var raw interface{}
|
|
|
|
raw = &Artifact{}
|
|
|
|
if _, ok := raw.(packer.Artifact); !ok {
|
|
|
|
t.Fatalf("Artifact should be artifact")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArtifactId(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
generatedData := make(map[string]interface{})
|
|
|
|
a := &Artifact{"private/42", "packer-foobar", nil, generatedData}
|
2019-04-15 17:22:25 -04:00
|
|
|
expected := "private/42"
|
|
|
|
|
|
|
|
if a.Id() != expected {
|
|
|
|
t.Fatalf("artifact ID should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArtifactString(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
generatedData := make(map[string]interface{})
|
|
|
|
a := &Artifact{"private/42", "packer-foobar", nil, generatedData}
|
2019-04-15 17:22:25 -04:00
|
|
|
expected := "Linode image: packer-foobar (private/42)"
|
|
|
|
|
|
|
|
if a.String() != expected {
|
|
|
|
t.Fatalf("artifact string should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 05:27:58 -05:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|