2018-01-24 09:56:14 -05:00
|
|
|
package iso
|
|
|
|
|
|
|
|
import (
|
|
|
|
builderT "github.com/hashicorp/packer/helper/builder/testing"
|
|
|
|
commonT "github.com/jetbrains-infra/packer-builder-vsphere/common/testing"
|
|
|
|
"testing"
|
2018-01-30 11:48:32 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2018-01-31 10:15:26 -05:00
|
|
|
"github.com/vmware/govmomi/vim25/types"
|
2018-01-31 12:29:03 -05:00
|
|
|
"fmt"
|
2018-02-01 06:47:09 -05:00
|
|
|
"io/ioutil"
|
2018-01-24 09:56:14 -05:00
|
|
|
)
|
|
|
|
|
2018-01-24 13:52:29 -05:00
|
|
|
func TestISOBuilderAcc_default(t *testing.T) {
|
2018-01-24 09:56:14 -05:00
|
|
|
config := defaultConfig()
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: commonT.RenderConfig(config),
|
2018-01-31 06:31:11 -05:00
|
|
|
Check: checkDefault(t, config["vm_name"].(string), config["host"].(string), "datastore1"),
|
2018-01-24 09:56:14 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultConfig() map[string]interface{} {
|
|
|
|
config := map[string]interface{}{
|
|
|
|
"vcenter_server": "vcenter.vsphere65.test",
|
|
|
|
"username": "root",
|
|
|
|
"password": "jetbrains",
|
|
|
|
"insecure_connection": true,
|
|
|
|
|
|
|
|
"host": "esxi-1.vsphere65.test",
|
|
|
|
|
|
|
|
"ssh_username": "root",
|
|
|
|
"ssh_password": "jetbrains",
|
|
|
|
|
2018-02-01 07:50:12 -05:00
|
|
|
"vm_name": commonT.NewVMName(),
|
2018-04-27 05:11:02 -04:00
|
|
|
"disk_size": 2048,
|
2018-02-01 07:50:12 -05:00
|
|
|
|
2018-01-31 06:31:11 -05:00
|
|
|
"communicator": "none", // do not start the VM without any bootable devices
|
2018-01-24 09:56:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return config
|
|
|
|
}
|
2018-01-30 11:48:32 -05:00
|
|
|
|
|
|
|
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-10-16 19:15:27 -04:00
|
|
|
vmInfo, err := vm.Info("name", "parent", "runtime.host", "resourcePool", "datastore", "layoutEx.disk", "config.firmware")
|
2018-01-30 11:48:32 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2018-10-16 19:15:27 -04:00
|
|
|
fw := vmInfo.Config.Firmware
|
|
|
|
if fw != "bios" {
|
|
|
|
t.Errorf("Invalid firmware: expected 'bios', got '%v'", fw)
|
|
|
|
}
|
|
|
|
|
2018-01-30 11:48:32 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestISOBuilderAcc_hardware(t *testing.T) {
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: hardwareConfig(),
|
|
|
|
Check: checkHardware(t),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func hardwareConfig() string {
|
|
|
|
config := defaultConfig()
|
|
|
|
config["CPUs"] = 2
|
|
|
|
config["CPU_reservation"] = 1000
|
|
|
|
config["CPU_limit"] = 1500
|
|
|
|
config["RAM"] = 2048
|
|
|
|
config["RAM_reservation"] = 1024
|
2018-04-25 02:45:02 -04:00
|
|
|
config["NestedHV"] = true
|
2018-10-16 19:15:27 -04:00
|
|
|
config["firmware"] = "efi"
|
2018-01-30 11:48:32 -05:00
|
|
|
|
|
|
|
return commonT.RenderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2018-05-12 07:19:17 -04:00
|
|
|
cpuReservation := *vmInfo.Config.CpuAllocation.Reservation
|
2018-01-30 11:48:32 -05:00
|
|
|
if cpuReservation != 1000 {
|
|
|
|
t.Errorf("VM should have CPU reservation for 1000 Mhz, got %v", cpuReservation)
|
|
|
|
}
|
|
|
|
|
2018-05-12 07:19:17 -04:00
|
|
|
cpuLimit := *vmInfo.Config.CpuAllocation.Limit
|
2018-01-30 11:48:32 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2018-05-12 07:19:17 -04:00
|
|
|
ramReservation := *vmInfo.Config.MemoryAllocation.Reservation
|
2018-01-30 11:48:32 -05:00
|
|
|
if ramReservation != 1024 {
|
|
|
|
t.Errorf("VM should have RAM reservation for 1024 MB, got %v", ramReservation)
|
|
|
|
}
|
|
|
|
|
2018-04-25 02:45:02 -04:00
|
|
|
nestedHV := vmInfo.Config.NestedHVEnabled
|
|
|
|
if !*nestedHV {
|
|
|
|
t.Errorf("VM should have NestedHV enabled, got %v", nestedHV)
|
|
|
|
}
|
|
|
|
|
2018-10-16 19:15:27 -04:00
|
|
|
fw := vmInfo.Config.Firmware
|
|
|
|
if fw != "efi" {
|
|
|
|
t.Errorf("Invalid firmware: expected 'efi', got '%v'", fw)
|
|
|
|
}
|
|
|
|
|
2018-01-30 11:48:32 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-16 11:59:51 -04:00
|
|
|
func TestISOBuilderAcc_limit(t *testing.T) {
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: limitConfig(),
|
|
|
|
Check: checkLimit(t),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func limitConfig() string {
|
|
|
|
config := defaultConfig()
|
|
|
|
config["CPUs"] = 1 // hardware is customized, but CPU limit is not specified explicitly
|
|
|
|
|
|
|
|
return commonT.RenderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkLimit(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.cpuAllocation")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Cannot read VM properties: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
limit := *vmInfo.Config.CpuAllocation.Limit
|
|
|
|
if limit != -1 { // must be unlimited
|
|
|
|
t.Errorf("Invalid CPU limit: expected '%v', got '%v'", -1, limit)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 11:48:32 -05:00
|
|
|
func TestISOBuilderAcc_cdrom(t *testing.T) {
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: cdromConfig(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func cdromConfig() string {
|
|
|
|
config := defaultConfig()
|
2018-01-31 12:29:03 -05:00
|
|
|
config["iso_paths"] = []string{
|
|
|
|
"[datastore1] test0.iso",
|
|
|
|
"[datastore1] test1.iso",
|
|
|
|
}
|
2018-01-30 11:48:32 -05:00
|
|
|
return commonT.RenderConfig(config)
|
|
|
|
}
|
2018-01-31 06:31:11 -05:00
|
|
|
|
|
|
|
func TestISOBuilderAcc_networkCard(t *testing.T) {
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: networkCardConfig(),
|
|
|
|
Check: checkNetworkCard(t),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func networkCardConfig() string {
|
|
|
|
config := defaultConfig()
|
|
|
|
config["network_card"] = "vmxnet3"
|
|
|
|
return commonT.RenderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkNetworkCard(t *testing.T) builderT.TestCheckFunc {
|
|
|
|
return func(artifacts []packer.Artifact) error {
|
|
|
|
d := commonT.TestConn(t)
|
|
|
|
|
|
|
|
vm := commonT.GetVM(t, d, artifacts)
|
|
|
|
devices, err := vm.Devices()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Cannot read VM properties: %v", err)
|
|
|
|
}
|
2018-01-31 10:15:26 -05:00
|
|
|
|
|
|
|
netCards := devices.SelectByType((*types.VirtualEthernetCard)(nil))
|
|
|
|
if len(netCards) == 0 {
|
|
|
|
t.Fatalf("Cannot find the network card")
|
|
|
|
}
|
|
|
|
if len(netCards) > 1 {
|
|
|
|
t.Fatalf("Found several network catds")
|
|
|
|
}
|
|
|
|
if _, ok := netCards[0].(*types.VirtualVmxnet3); !ok {
|
|
|
|
t.Errorf("The network card type is not the expected one (vmxnet3)")
|
2018-01-31 06:31:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2018-02-01 06:47:09 -05:00
|
|
|
|
|
|
|
func TestISOBuilderAcc_createFloppy(t *testing.T) {
|
|
|
|
tmpFile, err := ioutil.TempFile("", "packer-vsphere-iso-test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Error creating temp file ")
|
|
|
|
}
|
2018-02-01 07:48:30 -05:00
|
|
|
fmt.Fprint(tmpFile, "Hello, World!")
|
2018-02-01 06:47:09 -05:00
|
|
|
tmpFile.Close()
|
|
|
|
|
|
|
|
builderT.Test(t, builderT.TestCase{
|
|
|
|
Builder: &Builder{},
|
|
|
|
Template: createFloppyConfig(tmpFile.Name()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func createFloppyConfig(filePath string) string {
|
|
|
|
config := defaultConfig()
|
|
|
|
config["floppy_files"] = []string{filePath}
|
|
|
|
return commonT.RenderConfig(config)
|
|
|
|
}
|