packer-cn/clone/builder_acc_test.go

513 lines
12 KiB
Go
Raw Normal View History

package clone
2017-06-14 14:16:57 -04:00
import (
builderT "github.com/hashicorp/packer/helper/builder/testing"
commonT "github.com/jetbrains-infra/packer-builder-vsphere/common/testing"
2017-08-17 19:24:59 -04:00
"github.com/hashicorp/packer/packer"
"testing"
"github.com/jetbrains-infra/packer-builder-vsphere/common"
2017-06-14 14:16:57 -04:00
)
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_default(t *testing.T) {
2017-08-17 19:24:59 -04:00
config := defaultConfig()
2017-06-14 14:16:57 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: commonT.RenderConfig(config),
Check: checkDefault(t, config["vm_name"].(string), config["host"].(string), "datastore1"),
2017-06-14 14:16:57 -04:00
})
}
2017-08-17 19:24:59 -04:00
func defaultConfig() map[string]interface{} {
config := map[string]interface{}{
2018-01-23 14:51:05 -05:00
"vcenter_server": "vcenter.vsphere65.test",
2017-11-08 11:47:29 -05:00
"username": "root",
"password": "jetbrains",
2017-07-01 11:59:36 -04:00
"insecure_connection": true,
2017-06-14 14:16:57 -04:00
2017-11-08 11:47:29 -05:00
"template": "alpine",
2018-01-23 14:51:05 -05:00
"host": "esxi-1.vsphere65.test",
2017-06-14 14:16:57 -04:00
2018-03-22 18:21:04 -04:00
"linked_clone": true, // speed up
"communicator": "none",
2017-08-17 19:24:59 -04:00
}
config["vm_name"] = commonT.NewVMName()
2017-08-17 19:24:59 -04:00
return config
}
func checkDefault(t *testing.T, name string, host string, datastore string) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
2018-03-22 18:21:04 -04:00
vmInfo, err := vm.Info("name", "parent", "runtime.host", "resourcePool", "datastore")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
if vmInfo.Name != name {
t.Errorf("Invalid VM name: expected '%v', got '%v'", name, vmInfo.Name)
}
f := d.NewFolder(vmInfo.Parent)
folderPath, err := f.Path()
if err != nil {
t.Fatalf("Cannot read folder name: %v", err)
}
if folderPath != "" {
t.Errorf("Invalid folder: expected '/', got '%v'", folderPath)
}
h := d.NewHost(vmInfo.Runtime.Host)
hostInfo, err := h.Info("name")
if err != nil {
t.Fatal("Cannot read host properties: ", err)
}
if hostInfo.Name != host {
t.Errorf("Invalid host name: expected '%v', got '%v'", host, hostInfo.Name)
}
p := d.NewResourcePool(vmInfo.ResourcePool)
poolPath, err := p.Path()
if err != nil {
t.Fatalf("Cannot read resource pool name: %v", err)
}
if poolPath != "" {
t.Errorf("Invalid resource pool: expected '/', got '%v'", poolPath)
}
dsr := vmInfo.Datastore[0].Reference()
ds := d.NewDatastore(&dsr)
dsInfo, err := ds.Info("name")
if err != nil {
t.Fatal("Cannot read datastore properties: ", err)
}
if dsInfo.Name != datastore {
t.Errorf("Invalid datastore name: expected '%v', got '%v'", datastore, dsInfo.Name)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_artifact(t *testing.T) {
config := defaultConfig()
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: commonT.RenderConfig(config),
Check: checkArtifact(t),
})
}
func checkArtifact(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
if len(artifacts) > 1 {
t.Fatal("more than 1 artifact")
}
artifactRaw := artifacts[0]
_, ok := artifactRaw.(*common.Artifact)
if !ok {
t.Fatalf("unknown artifact: %#v", artifactRaw)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_folder(t *testing.T) {
2017-08-23 17:23:29 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: folderConfig(),
2017-11-08 11:47:29 -05:00
Check: checkFolder(t, "folder1/folder2"),
2017-08-23 17:23:29 -04:00
})
}
func folderConfig() string {
config := defaultConfig()
2017-11-08 11:47:29 -05:00
config["folder"] = "folder1/folder2"
return commonT.RenderConfig(config)
2017-08-23 17:23:29 -04:00
}
func checkFolder(t *testing.T, folder string) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("parent")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
f := d.NewFolder(vmInfo.Parent)
path, err := f.Path()
if err != nil {
t.Fatalf("Cannot read folder name: %v", err)
}
if path != folder {
t.Errorf("Wrong folder. expected: %v, got: %v", folder, path)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_resourcePool(t *testing.T) {
2017-08-23 18:23:48 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: resourcePoolConfig(),
2017-11-08 11:47:29 -05:00
Check: checkResourcePool(t, "pool1/pool2"),
2017-08-23 18:23:48 -04:00
})
}
func resourcePoolConfig() string {
config := defaultConfig()
2017-11-08 11:47:29 -05:00
config["resource_pool"] = "pool1/pool2"
return commonT.RenderConfig(config)
2017-08-23 18:23:48 -04:00
}
func checkResourcePool(t *testing.T, pool string) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
2017-08-23 18:23:48 -04:00
2017-08-23 20:06:50 -04:00
vmInfo, err := vm.Info("resourcePool")
2017-08-23 18:23:48 -04:00
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
p := d.NewResourcePool(vmInfo.ResourcePool)
path, err := p.Path()
if err != nil {
t.Fatalf("Cannot read resource pool name: %v", err)
}
if path != pool {
t.Errorf("Wrong folder. expected: %v, got: %v", pool, path)
}
2017-08-23 18:23:48 -04:00
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_datastore(t *testing.T) {
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: datastoreConfig(),
2018-01-23 14:51:05 -05:00
Check: checkDatastore(t, "datastore1"), // on esxi-1.vsphere65.test
})
}
func datastoreConfig() string {
config := defaultConfig()
2018-01-23 14:51:05 -05:00
config["template"] = "alpine-host4" // on esxi-4.vsphere65.test
2018-03-22 18:21:04 -04:00
config["linked_clone"] = false
return commonT.RenderConfig(config)
}
func checkDatastore(t *testing.T, name string) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("datastore")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
n := len(vmInfo.Datastore)
if n != 1 {
t.Fatalf("VM should have 1 datastore, got %v", n)
}
ds := d.NewDatastore(&vmInfo.Datastore[0])
info, err := ds.Info("name")
if err != nil {
t.Fatalf("Cannot read datastore properties: %v", err)
}
if info.Name != name {
t.Errorf("Wrong datastore. expected: %v, got: %v", name, info.Name)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_multipleDatastores(t *testing.T) {
t.Skip("test must fail")
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: multipleDatastoresConfig(),
})
}
func multipleDatastoresConfig() string {
config := defaultConfig()
2018-01-23 14:51:05 -05:00
config["host"] = "esxi-4.vsphere65.test" // host with 2 datastores
2018-03-22 18:21:04 -04:00
config["linked_clone"] = false
return commonT.RenderConfig(config)
}
func TestCloneBuilderAcc_fullClone(t *testing.T) {
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: fullCloneConfig(),
Check: checkFullClone(t),
})
}
func fullCloneConfig() string {
config := defaultConfig()
config["linked_clone"] = false
return commonT.RenderConfig(config)
}
2018-03-22 18:21:04 -04:00
func checkFullClone(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("layoutEx.disk")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
if len(vmInfo.LayoutEx.Disk[0].Chain) != 1 {
t.Error("Not a full clone")
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_linkedClone(t *testing.T) {
2017-08-17 19:24:59 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: linkedCloneConfig(),
Check: checkLinkedClone(t),
})
}
func linkedCloneConfig() string {
config := defaultConfig()
config["linked_clone"] = true
return commonT.RenderConfig(config)
2017-08-17 19:24:59 -04:00
}
func checkLinkedClone(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
2017-08-17 19:24:59 -04:00
2017-08-23 20:06:50 -04:00
vmInfo, err := vm.Info("layoutEx.disk")
2017-08-17 19:24:59 -04:00
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
2017-08-31 08:05:26 -04:00
if len(vmInfo.LayoutEx.Disk[0].Chain) != 2 {
2017-08-17 19:24:59 -04:00
t.Error("Not a linked clone")
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_hardware(t *testing.T) {
2017-08-24 16:50:25 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: hardwareConfig(),
Check: checkHardware(t),
2017-08-24 16:50:25 -04:00
})
}
func hardwareConfig() string {
config := defaultConfig()
2017-11-08 11:47:29 -05:00
config["CPUs"] = 2
config["CPU_reservation"] = 1000
config["CPU_limit"] = 1500
config["RAM"] = 2048
config["RAM_reservation"] = 1024
config["CPU_hot_plug"] = true
config["RAM_hot_plug"] = true
2017-08-24 16:50:25 -04:00
return commonT.RenderConfig(config)
2017-08-24 16:50:25 -04:00
}
func checkHardware(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("config")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
cpuSockets := vmInfo.Config.Hardware.NumCPU
if cpuSockets != 2 {
t.Errorf("VM should have 2 CPU sockets, got %v", cpuSockets)
}
cpuReservation := vmInfo.Config.CpuAllocation.GetResourceAllocationInfo().Reservation
if cpuReservation != 1000 {
t.Errorf("VM should have CPU reservation for 1000 Mhz, got %v", cpuReservation)
}
cpuLimit := vmInfo.Config.CpuAllocation.GetResourceAllocationInfo().Limit
if cpuLimit != 1500 {
t.Errorf("VM should have CPU reservation for 1500 Mhz, got %v", cpuLimit)
}
ram := vmInfo.Config.Hardware.MemoryMB
if ram != 2048 {
t.Errorf("VM should have 2048 MB of RAM, got %v", ram)
}
ramReservation := vmInfo.Config.MemoryAllocation.GetResourceAllocationInfo().Reservation
if ramReservation != 1024 {
t.Errorf("VM should have RAM reservation for 1024 MB, got %v", ramReservation)
}
cpuHotAdd := vmInfo.Config.CpuHotAddEnabled
if !*cpuHotAdd {
t.Errorf("VM should have CPU hot add enabled, got %v", cpuHotAdd)
}
memoryHotAdd := vmInfo.Config.MemoryHotAddEnabled
if !*memoryHotAdd {
t.Errorf("VM should have Memory hot add enabled, got %v", memoryHotAdd)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_RAMReservation(t *testing.T) {
2017-08-24 16:50:25 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: RAMReservationConfig(),
Check: checkRAMReservation(t),
})
}
func RAMReservationConfig() string {
config := defaultConfig()
config["RAM_reserve_all"] = true
return commonT.RenderConfig(config)
2017-08-24 16:50:25 -04:00
}
func checkRAMReservation(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
2017-08-24 16:50:25 -04:00
vm := commonT.GetVM(t, d, artifacts)
2017-08-24 16:50:25 -04:00
vmInfo, err := vm.Info("config")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
if *vmInfo.Config.MemoryReservationLockedToMax != true {
t.Errorf("VM should have all RAM reserved")
}
return nil
}
}
2018-03-22 18:21:04 -04:00
func TestCloneBuilderAcc_sshPassword(t *testing.T) {
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: sshPasswordConfig(),
})
}
func sshPasswordConfig() string {
config := defaultConfig()
config["communicator"] = "ssh"
config["ssh_username"] = "root"
config["ssh_password"] = "jetbrains"
return commonT.RenderConfig(config)
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_sshKey(t *testing.T) {
2017-08-31 08:05:26 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: sshKeyConfig(),
})
}
func sshKeyConfig() string {
config := defaultConfig()
2018-03-22 18:21:04 -04:00
config["communicator"] = "ssh"
config["ssh_username"] = "root"
2018-04-24 15:11:33 -04:00
config["ssh_private_key_file"] = "../test/test-key.pem"
return commonT.RenderConfig(config)
2017-08-31 08:05:26 -04:00
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_snapshot(t *testing.T) {
2017-08-23 16:15:19 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: snapshotConfig(),
Check: checkSnapshot(t),
2017-08-23 16:15:19 -04:00
})
}
func snapshotConfig() string {
config := defaultConfig()
2018-03-22 18:21:04 -04:00
config["linked_clone"] = false
2017-08-23 16:15:19 -04:00
config["create_snapshot"] = true
return commonT.RenderConfig(config)
2017-08-23 16:15:19 -04:00
}
func checkSnapshot(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("layoutEx.disk")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
layers := len(vmInfo.LayoutEx.Disk[0].Chain)
if layers != 2 {
t.Errorf("VM should have a single snapshot. expected 2 disk layers, got %v", layers)
}
return nil
}
}
2018-01-24 13:52:29 -05:00
func TestCloneBuilderAcc_template(t *testing.T) {
2017-08-17 19:24:59 -04:00
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: templateConfig(),
Check: checkTemplate(t),
2017-08-17 19:24:59 -04:00
})
}
func templateConfig() string {
config := defaultConfig()
config["convert_to_template"] = true
return commonT.RenderConfig(config)
2017-08-17 19:24:59 -04:00
}
func checkTemplate(t *testing.T) builderT.TestCheckFunc {
return func(artifacts []packer.Artifact) error {
d := commonT.TestConn(t)
vm := commonT.GetVM(t, d, artifacts)
vmInfo, err := vm.Info("config.template")
if err != nil {
t.Fatalf("Cannot read VM properties: %v", err)
}
if vmInfo.Config.Template != true {
t.Error("Not a template")
}
return nil
}
}