2013-06-17 07:01:42 -04:00
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-11-24 03:14:05 -05:00
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2013-06-17 07:01:42 -04:00
|
|
|
)
|
|
|
|
|
2020-01-30 05:27:58 -05:00
|
|
|
func generatedData() map[string]interface{} {
|
|
|
|
return make(map[string]interface{})
|
|
|
|
}
|
|
|
|
|
2013-06-17 07:01:42 -04:00
|
|
|
func TestArtifact_Impl(t *testing.T) {
|
|
|
|
var raw interface{}
|
|
|
|
raw = &Artifact{}
|
|
|
|
if _, ok := raw.(packer.Artifact); !ok {
|
|
|
|
t.Fatalf("Artifact should be artifact")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 03:14:05 -05:00
|
|
|
func TestArtifactId(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, []string{"sfo", "tor1"}, nil, generatedData()}
|
2017-05-16 13:02:04 -04:00
|
|
|
expected := "sfo,tor1:42"
|
|
|
|
|
|
|
|
if a.Id() != expected {
|
|
|
|
t.Fatalf("artifact ID should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArtifactIdWithoutMultipleRegions(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, []string{"sfo"}, nil, generatedData()}
|
2016-01-21 14:29:39 -05:00
|
|
|
expected := "sfo:42"
|
2014-11-24 03:14:05 -05:00
|
|
|
|
|
|
|
if a.Id() != expected {
|
|
|
|
t.Fatalf("artifact ID should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-17 07:01:42 -04:00
|
|
|
func TestArtifactString(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, []string{"sfo", "tor1"}, nil, generatedData()}
|
2017-05-16 13:02:04 -04:00
|
|
|
expected := "A snapshot was created: 'packer-foobar' (ID: 42) in regions 'sfo,tor1'"
|
|
|
|
|
|
|
|
if a.String() != expected {
|
|
|
|
t.Fatalf("artifact string should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArtifactStringWithoutMultipleRegions(t *testing.T) {
|
2020-01-30 05:27:58 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, []string{"sfo"}, nil, generatedData()}
|
2017-05-16 13:02:04 -04:00
|
|
|
expected := "A snapshot was created: 'packer-foobar' (ID: 42) in regions 'sfo'"
|
2013-06-17 07:01:42 -04:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|