2013-06-17 07:01:42 -04:00
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-11-24 03:14:05 -05:00
|
|
|
|
|
|
|
"github.com/mitchellh/packer/packer"
|
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) {
|
2016-01-21 14:29:39 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, "sfo", nil}
|
|
|
|
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) {
|
2016-01-21 14:29:39 -05:00
|
|
|
a := &Artifact{"packer-foobar", 42, "sfo", nil}
|
|
|
|
expected := "A snapshot was created: 'packer-foobar' (ID: 42) in region 'sfo'"
|
2013-06-17 07:01:42 -04:00
|
|
|
|
|
|
|
if a.String() != expected {
|
|
|
|
t.Fatalf("artifact string should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|