93 lines
2.7 KiB
Go
93 lines
2.7 KiB
Go
package common
|
|
|
|
import (
|
|
"context"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
)
|
|
|
|
func TestStepCollateArtifacts_impl(t *testing.T) {
|
|
var _ multistep.Step = new(StepCollateArtifacts)
|
|
}
|
|
|
|
func TestStepCollateArtifacts_exportedArtifacts(t *testing.T) {
|
|
state := testState(t)
|
|
step := new(StepCollateArtifacts)
|
|
|
|
step.OutputDir = "foopath"
|
|
vmName := "foo"
|
|
|
|
// Uses export path from the state bag
|
|
exportPath := filepath.Join(step.OutputDir, vmName)
|
|
state.Put("export_path", exportPath)
|
|
|
|
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.PreserveLegacyExportBehaviour_Called {
|
|
t.Fatal("Should have called PreserveLegacyExportBehaviour")
|
|
}
|
|
if driver.PreserveLegacyExportBehaviour_SrcPath != exportPath {
|
|
t.Fatalf("Should call with correct srcPath. Got: %s Wanted: %s",
|
|
driver.PreserveLegacyExportBehaviour_SrcPath, exportPath)
|
|
}
|
|
if driver.PreserveLegacyExportBehaviour_DstPath != step.OutputDir {
|
|
t.Fatalf("Should call with correct dstPath. Got: %s Wanted: %s",
|
|
driver.PreserveLegacyExportBehaviour_DstPath, step.OutputDir)
|
|
}
|
|
|
|
// Should only be called when skip_export is true
|
|
if driver.MoveCreatedVHDsToOutputDir_Called {
|
|
t.Fatal("Should NOT have called MoveCreatedVHDsToOutputDir")
|
|
}
|
|
}
|
|
|
|
func TestStepCollateArtifacts_skipExportArtifacts(t *testing.T) {
|
|
state := testState(t)
|
|
step := new(StepCollateArtifacts)
|
|
|
|
// Needs the path to the main output directory and build directory
|
|
step.OutputDir = "foopath"
|
|
buildDir := "fooBuildPath"
|
|
state.Put("build_dir", buildDir)
|
|
// Export has been skipped
|
|
step.SkipExport = true
|
|
|
|
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.MoveCreatedVHDsToOutputDir_Called {
|
|
t.Fatal("Should have called MoveCreatedVHDsToOutputDir")
|
|
}
|
|
if driver.MoveCreatedVHDsToOutputDir_SrcPath != buildDir {
|
|
t.Fatalf("Should call with correct srcPath. Got: %s Wanted: %s",
|
|
driver.MoveCreatedVHDsToOutputDir_SrcPath, buildDir)
|
|
}
|
|
if driver.MoveCreatedVHDsToOutputDir_DstPath != step.OutputDir {
|
|
t.Fatalf("Should call with correct dstPath. Got: %s Wanted: %s",
|
|
driver.MoveCreatedVHDsToOutputDir_DstPath, step.OutputDir)
|
|
}
|
|
|
|
if driver.PreserveLegacyExportBehaviour_Called {
|
|
t.Fatal("Should NOT have called PreserveLegacyExportBehaviour")
|
|
}
|
|
}
|