2018-02-23 18:34:13 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
2018-04-11 11:25:33 -04:00
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-04-01/compute"
|
2018-02-23 18:34:13 -05:00
|
|
|
|
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
|
|
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestStepGetAdditionalDiskShouldFailIfGetFails(t *testing.T) {
|
|
|
|
var testSubject = &StepGetDataDisk{
|
2018-04-11 11:25:33 -04:00
|
|
|
query: func(context.Context, string, string) (compute.VirtualMachine, error) {
|
2018-02-23 18:34:13 -05:00
|
|
|
return createVirtualMachineWithDataDisksFromUri("test.vhd"), fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetAdditionalDisks()
|
|
|
|
|
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
|
|
|
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 TestStepGetAdditionalDiskShouldPassIfGetPasses(t *testing.T) {
|
|
|
|
var testSubject = &StepGetDataDisk{
|
2018-04-11 11:25:33 -04:00
|
|
|
query: func(context.Context, string, string) (compute.VirtualMachine, error) {
|
2018-02-23 18:34:13 -05:00
|
|
|
return createVirtualMachineWithDataDisksFromUri("test.vhd"), nil
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetAdditionalDisks()
|
|
|
|
|
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
|
|
|
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 TestStepGetAdditionalDiskShouldTakeValidateArgumentsFromStateBag(t *testing.T) {
|
|
|
|
var actualResourceGroupName string
|
|
|
|
var actualComputeName string
|
|
|
|
|
|
|
|
var testSubject = &StepGetDataDisk{
|
2018-04-11 11:25:33 -04:00
|
|
|
query: func(ctx context.Context, resourceGroupName string, computeName string) (compute.VirtualMachine, error) {
|
2018-02-23 18:34:13 -05:00
|
|
|
actualResourceGroupName = resourceGroupName
|
|
|
|
actualComputeName = computeName
|
|
|
|
|
|
|
|
return createVirtualMachineWithDataDisksFromUri("test.vhd"), nil
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetAdditionalDisks()
|
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
if actualComputeName != expectedComputeName {
|
|
|
|
t.Fatal("Expected the step to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if actualResourceGroupName != expectedResourceGroupName {
|
|
|
|
t.Fatal("Expected the step to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedAdditionalDiskVhds, ok := stateBag.GetOk(constants.ArmAdditionalDiskVhds)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Expected the state bag to have a value for '%s', but it did not.", constants.ArmAdditionalDiskVhds)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedAdditionalDiskVhd := expectedAdditionalDiskVhds.([]string)
|
|
|
|
if expectedAdditionalDiskVhd[0] != "test.vhd" {
|
|
|
|
t.Fatalf("Expected the value of stateBag[%s] to be 'test.vhd', but got '%s'.", constants.ArmAdditionalDiskVhds, expectedAdditionalDiskVhd[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func createTestStateBagStepGetAdditionalDisks() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmComputeName, "Unit Test: ComputeName")
|
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
|
|
|
|
|
|
|
return stateBag
|
|
|
|
}
|
|
|
|
|
|
|
|
func createVirtualMachineWithDataDisksFromUri(vhdUri string) compute.VirtualMachine {
|
|
|
|
vm := compute.VirtualMachine{
|
|
|
|
VirtualMachineProperties: &compute.VirtualMachineProperties{
|
|
|
|
StorageProfile: &compute.StorageProfile{
|
|
|
|
OsDisk: &compute.OSDisk{
|
|
|
|
Vhd: &compute.VirtualHardDisk{
|
|
|
|
URI: &vhdUri,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
DataDisks: &[]compute.DataDisk{
|
2018-02-23 21:43:55 -05:00
|
|
|
{
|
2018-02-23 18:34:13 -05:00
|
|
|
Vhd: &compute.VirtualHardDisk{
|
|
|
|
URI: &vhdUri,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return vm
|
|
|
|
}
|