2016-03-04 05:14:55 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
2018-01-22 19:03:49 -05:00
|
|
|
"context"
|
2016-03-04 05:14:55 -05:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/Azure/azure-sdk-for-go/arm/compute"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2016-03-04 05:14:55 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStepCaptureImageShouldFailIfCaptureFails(t *testing.T) {
|
|
|
|
var testSubject = &StepCaptureImage{
|
2017-05-29 00:06:09 -04:00
|
|
|
captureVhd: func(string, string, *compute.VirtualMachineCaptureParameters, <-chan struct{}) error {
|
2016-03-04 05:14:55 -05:00
|
|
|
return fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
2017-05-29 00:06:09 -04:00
|
|
|
generalizeVM: func(string, string) error {
|
|
|
|
return nil
|
|
|
|
},
|
2016-04-21 19:50:03 -04:00
|
|
|
get: func(client *AzureClient) *CaptureTemplate {
|
|
|
|
return nil
|
|
|
|
},
|
2016-03-04 05:14:55 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCaptureImage()
|
|
|
|
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2016-03-04 05:14:55 -05:00
|
|
|
if result != multistep.ActionHalt {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionHalt', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == false {
|
|
|
|
t.Fatalf("Expected the step to set stateBag['%s'], but it was not.", constants.Error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepCaptureImageShouldPassIfCapturePasses(t *testing.T) {
|
|
|
|
var testSubject = &StepCaptureImage{
|
2017-05-29 00:06:09 -04:00
|
|
|
captureVhd: func(string, string, *compute.VirtualMachineCaptureParameters, <-chan struct{}) error { return nil },
|
|
|
|
generalizeVM: func(string, string) error {
|
|
|
|
return nil
|
|
|
|
},
|
2016-04-21 19:50:03 -04:00
|
|
|
get: func(client *AzureClient) *CaptureTemplate {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCaptureImage()
|
|
|
|
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2016-03-04 05:14:55 -05:00
|
|
|
if result != multistep.ActionContinue {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionContinue', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == true {
|
|
|
|
t.Fatalf("Expected the step to not set stateBag['%s'], but it was.", constants.Error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepCaptureImageShouldTakeStepArgumentsFromStateBag(t *testing.T) {
|
2016-04-21 19:50:03 -04:00
|
|
|
cancelCh := make(chan<- struct{})
|
|
|
|
defer close(cancelCh)
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
var actualResourceGroupName string
|
|
|
|
var actualComputeName string
|
|
|
|
var actualVirtualMachineCaptureParameters *compute.VirtualMachineCaptureParameters
|
2016-04-21 19:50:03 -04:00
|
|
|
actualCaptureTemplate := &CaptureTemplate{
|
|
|
|
Schema: "!! Unit Test !!",
|
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
|
|
|
|
var testSubject = &StepCaptureImage{
|
2017-05-29 00:06:09 -04:00
|
|
|
captureVhd: func(resourceGroupName string, computeName string, parameters *compute.VirtualMachineCaptureParameters, cancelCh <-chan struct{}) error {
|
2016-03-04 05:14:55 -05:00
|
|
|
actualResourceGroupName = resourceGroupName
|
|
|
|
actualComputeName = computeName
|
|
|
|
actualVirtualMachineCaptureParameters = parameters
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
2017-05-29 00:06:09 -04:00
|
|
|
generalizeVM: func(string, string) error {
|
|
|
|
return nil
|
|
|
|
},
|
2016-04-21 19:50:03 -04:00
|
|
|
get: func(client *AzureClient) *CaptureTemplate {
|
|
|
|
return actualCaptureTemplate
|
|
|
|
},
|
2016-03-04 05:14:55 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCaptureImage()
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2016-03-04 05:14:55 -05:00
|
|
|
|
|
|
|
if result != multistep.ActionContinue {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionContinue', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
var expectedComputeName = stateBag.Get(constants.ArmComputeName).(string)
|
|
|
|
var expectedResourceGroupName = stateBag.Get(constants.ArmResourceGroupName).(string)
|
|
|
|
var expectedVirtualMachineCaptureParameters = stateBag.Get(constants.ArmVirtualMachineCaptureParameters).(*compute.VirtualMachineCaptureParameters)
|
2016-04-21 19:50:03 -04:00
|
|
|
var expectedCaptureTemplate = stateBag.Get(constants.ArmCaptureTemplate).(*CaptureTemplate)
|
2016-03-04 05:14:55 -05:00
|
|
|
|
|
|
|
if actualComputeName != expectedComputeName {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected StepCaptureImage to source 'constants.ArmComputeName' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if actualResourceGroupName != expectedResourceGroupName {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected StepCaptureImage to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if actualVirtualMachineCaptureParameters != expectedVirtualMachineCaptureParameters {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected StepCaptureImage to source 'constants.ArmVirtualMachineCaptureParameters' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
2016-04-21 19:50:03 -04:00
|
|
|
|
|
|
|
if actualCaptureTemplate != expectedCaptureTemplate {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected StepCaptureImage to source 'constants.ArmCaptureTemplate' from the state bag, but it did not.")
|
2016-04-21 19:50:03 -04:00
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func createTestStateBagStepCaptureImage() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
2017-05-30 03:33:54 -04:00
|
|
|
stateBag.Put(constants.ArmLocation, "localhost")
|
2016-03-04 05:14:55 -05:00
|
|
|
stateBag.Put(constants.ArmComputeName, "Unit Test: ComputeName")
|
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
|
|
|
stateBag.Put(constants.ArmVirtualMachineCaptureParameters, &compute.VirtualMachineCaptureParameters{})
|
|
|
|
|
2017-05-29 00:06:09 -04:00
|
|
|
stateBag.Put(constants.ArmIsManagedImage, false)
|
2017-05-30 14:25:46 -04:00
|
|
|
stateBag.Put(constants.ArmManagedImageResourceGroupName, "")
|
|
|
|
stateBag.Put(constants.ArmManagedImageName, "")
|
|
|
|
stateBag.Put(constants.ArmManagedImageLocation, "")
|
2017-05-29 00:06:09 -04:00
|
|
|
stateBag.Put(constants.ArmImageParameters, &compute.Image{})
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
return stateBag
|
|
|
|
}
|