Files
Packer-Cn/builder/ucloud/common/artifact_test.go
T

93 lines
1.8 KiB
Go
Raw Normal View History

2019-10-12 16:46:21 +08:00
package common
2019-06-13 15:16:49 +08:00
import (
"reflect"
"testing"
2019-12-17 11:25:56 +01:00
"github.com/hashicorp/packer/packer"
2019-06-13 15:16:49 +08:00
)
func TestArtifact_Impl(t *testing.T) {
var _ packer.Artifact = new(Artifact)
}
func TestArtifactId(t *testing.T) {
expected := `project1:region1:foo,project2:region2:bar`
2019-10-12 16:46:21 +08:00
images := NewImageInfoSet(nil)
images.Set(ImageInfo{
2019-06-13 15:16:49 +08:00
Region: "region1",
ProjectId: "project1",
ImageId: "foo",
})
2019-10-12 16:46:21 +08:00
images.Set(ImageInfo{
2019-06-13 15:16:49 +08:00
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) {
2019-10-12 16:46:21 +08:00
images := NewImageInfoSet(nil)
images.Set(ImageInfo{
2019-06-13 15:16:49 +08:00
Region: "region1",
ProjectId: "project1",
ImageId: "foo",
})
2019-10-12 16:46:21 +08:00
images.Set(ImageInfo{
2019-06-13 15:16:49 +08:00
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)
}
}
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")
}
}