66 lines
1.1 KiB
Go
66 lines
1.1 KiB
Go
|
package uhost
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/packer/packer"
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestArtifact_Impl(t *testing.T) {
|
||
|
var _ packer.Artifact = new(Artifact)
|
||
|
}
|
||
|
|
||
|
func TestArtifactId(t *testing.T) {
|
||
|
expected := `project1:region1:foo,project2:region2:bar`
|
||
|
|
||
|
images := newImageInfoSet(nil)
|
||
|
images.Set(imageInfo{
|
||
|
Region: "region1",
|
||
|
ProjectId: "project1",
|
||
|
ImageId: "foo",
|
||
|
})
|
||
|
|
||
|
images.Set(imageInfo{
|
||
|
Region: "region2",
|
||
|
ProjectId: "project2",
|
||
|
ImageId: "bar",
|
||
|
})
|
||
|
|
||
|
a := &Artifact{
|
||
|
UCloudImages: images,
|
||
|
}
|
||
|
|
||
|
result := a.Id()
|
||
|
if result != expected {
|
||
|
t.Fatalf("bad: %s", result)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestArtifactState_atlasMetadata(t *testing.T) {
|
||
|
images := newImageInfoSet(nil)
|
||
|
images.Set(imageInfo{
|
||
|
Region: "region1",
|
||
|
ProjectId: "project1",
|
||
|
ImageId: "foo",
|
||
|
})
|
||
|
|
||
|
images.Set(imageInfo{
|
||
|
Region: "region2",
|
||
|
ProjectId: "project2",
|
||
|
ImageId: "bar",
|
||
|
})
|
||
|
|
||
|
a := &Artifact{
|
||
|
UCloudImages: images,
|
||
|
}
|
||
|
|
||
|
actual := a.State("atlas.artifact.metadata")
|
||
|
expected := map[string]string{
|
||
|
"project1:region1": "foo",
|
||
|
"project2:region2": "bar",
|
||
|
}
|
||
|
if !reflect.DeepEqual(actual, expected) {
|
||
|
t.Fatalf("bad: %#v", actual)
|
||
|
}
|
||
|
}
|