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) {
|
|
|
|
a := &Artifact{"packer-foobar", 42, "San Francisco", nil}
|
2015-10-06 10:52:47 -04:00
|
|
|
expected := "San Francisco: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) {
|
2014-04-29 23:33:31 -04:00
|
|
|
a := &Artifact{"packer-foobar", 42, "San Francisco", nil}
|
2015-12-15 12:00:04 -05:00
|
|
|
expected := "A snapshot was created: 'packer-foobar' (ID: 42) in region 'San Francisco'"
|
2013-06-17 07:01:42 -04:00
|
|
|
|
|
|
|
if a.String() != expected {
|
|
|
|
t.Fatalf("artifact string should match: %v", expected)
|
|
|
|
}
|
|
|
|
}
|