From 35b4e87c423cf0c203b8d61be0e37c4ce47298e1 Mon Sep 17 00:00:00 2001 From: DanHam Date: Sat, 7 Jul 2018 17:35:15 +0100 Subject: [PATCH] Add tests for export VM step --- builder/hyperv/common/step_export_vm_test.go | 92 ++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 builder/hyperv/common/step_export_vm_test.go diff --git a/builder/hyperv/common/step_export_vm_test.go b/builder/hyperv/common/step_export_vm_test.go new file mode 100644 index 000000000..75b232b45 --- /dev/null +++ b/builder/hyperv/common/step_export_vm_test.go @@ -0,0 +1,92 @@ +package common + +import ( + "context" + "path/filepath" + "testing" + + "github.com/hashicorp/packer/helper/multistep" +) + +func TestStepExportVm_impl(t *testing.T) { + var _ multistep.Step = new(StepExportVm) +} + +func TestStepExportVm(t *testing.T) { + state := testState(t) + step := new(StepExportVm) + + // ExportVirtualMachine needs the VM name and a path to export to + vmName := "foo" + state.Put("vmName", vmName) + outputDir := "foopath" + step.OutputDir = outputDir + + driver := state.Get("driver").(*DriverMock) + + // Test the run + if action := step.Run(context.Background(), state); action != multistep.ActionContinue { + t.Fatalf("Bad action: %v", action) + } + if _, ok := state.GetOk("error"); ok { + t.Fatal("Should NOT have error") + } + + // Test the driver + if !driver.ExportVirtualMachine_Called { + t.Fatal("Should have called ExportVirtualMachine") + } + if driver.ExportVirtualMachine_Path != outputDir { + t.Fatalf("Should call with correct path. Got: %s Wanted: %s", + driver.ExportVirtualMachine_Path, outputDir) + } + if driver.ExportVirtualMachine_VmName != vmName { + t.Fatalf("Should call with correct vm name. Got: %s Wanted: %s", + driver.ExportVirtualMachine_VmName, vmName) + } + + if !driver.PreserveLegacyExportBehaviour_Called { + t.Fatal("Should have called PreserveLegacyExportBehaviour") + } + exportPath := filepath.Join(outputDir, vmName) + if driver.PreserveLegacyExportBehaviour_SrcPath != exportPath { + t.Fatalf("Should call with correct srcPath. Got: %s Wanted: %s", + driver.PreserveLegacyExportBehaviour_SrcPath, exportPath) + } + if driver.PreserveLegacyExportBehaviour_DstPath != outputDir { + t.Fatalf("Should call with correct dstPath. Got: %s Wanted: %s", + driver.PreserveLegacyExportBehaviour_DstPath, outputDir) + } + +} + +func TestStepExportVm_skip(t *testing.T) { + state := testState(t) + step := new(StepExportVm) + step.SkipExport = true + + // ExportVirtualMachine needs the VM name and a path to export to + vmName := "foo" + state.Put("vmName", vmName) + outputDir := "foopath" + step.OutputDir = outputDir + + driver := state.Get("driver").(*DriverMock) + + // Test the run + if action := step.Run(context.Background(), state); action != multistep.ActionContinue { + t.Fatalf("Bad action: %v", action) + } + if _, ok := state.GetOk("error"); ok { + t.Fatalf("Should NOT have error") + } + + // Test the driver + if driver.ExportVirtualMachine_Called { + t.Fatal("Should not have called ExportVirtualMachine") + } + + if driver.PreserveLegacyExportBehaviour_Called { + t.Fatal("Should NOT have called PreserveLegacyExportBehaviour") + } +}