2016-03-04 05:14:55 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
2018-01-22 19:03:49 -05:00
|
|
|
"context"
|
2017-11-09 06:20:09 -05:00
|
|
|
"errors"
|
2016-03-04 05:14:55 -05:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
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
|
|
|
)
|
|
|
|
|
2017-11-09 06:20:09 -05:00
|
|
|
func TestStepCreateResourceGroupShouldFailIfBothGroupNames(t *testing.T) {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmDoubleResourceGroupNameSet, true)
|
|
|
|
|
|
|
|
value := "Unit Test: Tags"
|
|
|
|
tags := map[string]*string{
|
|
|
|
"tag01": &value,
|
|
|
|
}
|
|
|
|
|
2018-04-11 11:25:33 -04:00
|
|
|
stateBag.Put(constants.ArmTags, tags)
|
2017-11-09 06:20:09 -05:00
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error { return nil },
|
2017-11-09 06:20:09 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, nil },
|
2017-11-09 06:20:09 -05:00
|
|
|
}
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2017-11-09 06:20:09 -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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
func TestStepCreateResourceGroupShouldFailIfCreateFails(t *testing.T) {
|
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error {
|
|
|
|
return fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
2016-03-04 05:14:55 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, nil },
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCreateResourceGroup()
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 06:20:09 -05:00
|
|
|
func TestStepCreateResourceGroupShouldFailIfExistsFails(t *testing.T) {
|
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error { return nil },
|
2017-11-09 06:20:09 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, errors.New("FAIL") },
|
2017-11-09 06:20:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCreateResourceGroup()
|
|
|
|
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2017-11-09 06:20:09 -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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
func TestStepCreateResourceGroupShouldPassIfCreatePasses(t *testing.T) {
|
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error { return nil },
|
2016-03-04 05:14:55 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, nil },
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCreateResourceGroup()
|
|
|
|
|
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 TestStepCreateResourceGroupShouldTakeStepArgumentsFromStateBag(t *testing.T) {
|
|
|
|
var actualResourceGroupName string
|
|
|
|
var actualLocation string
|
2018-04-11 11:25:33 -04:00
|
|
|
var actualTags map[string]*string
|
2016-03-04 05:14:55 -05:00
|
|
|
|
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2019-03-29 11:50:02 -04:00
|
|
|
create: func(ctx context.Context, resourceGroupName string, location string, tags map[string]*string) error {
|
2016-03-04 05:14:55 -05:00
|
|
|
actualResourceGroupName = resourceGroupName
|
|
|
|
actualLocation = location
|
2016-07-29 17:17:33 -04:00
|
|
|
actualTags = tags
|
2016-03-04 05:14:55 -05:00
|
|
|
return nil
|
|
|
|
},
|
2017-11-06 00:16:58 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, nil },
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCreateResourceGroup()
|
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 expectedResourceGroupName = stateBag.Get(constants.ArmResourceGroupName).(string)
|
2016-07-29 17:17:33 -04:00
|
|
|
var expectedLocation = stateBag.Get(constants.ArmLocation).(string)
|
2018-04-11 11:25:33 -04:00
|
|
|
var expectedTags = stateBag.Get(constants.ArmTags).(map[string]*string)
|
2016-03-04 05:14:55 -05:00
|
|
|
|
|
|
|
if actualResourceGroupName != expectedResourceGroupName {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected the step to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if actualLocation != expectedLocation {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected the step to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
2016-04-21 19:50:03 -04:00
|
|
|
|
2018-04-11 11:25:33 -04:00
|
|
|
if len(expectedTags) != len(actualTags) && expectedTags["tag01"] != actualTags["tag01"] {
|
2016-07-29 17:17:33 -04:00
|
|
|
t.Fatal("Expected the step to source 'constants.ArmTags' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
2016-04-21 19:50:03 -04:00
|
|
|
_, ok := stateBag.GetOk(constants.ArmIsResourceGroupCreated)
|
|
|
|
if !ok {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected the step to add item to stateBag['constants.ArmIsResourceGroupCreated'], but it did not.")
|
2016-04-21 19:50:03 -04:00
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
2017-11-09 06:20:09 -05:00
|
|
|
func TestStepCreateResourceGroupMarkShouldFailIfTryingExistingButDoesntExist(t *testing.T) {
|
2017-11-06 00:16:58 -05:00
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error {
|
|
|
|
return fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
2017-11-06 00:16:58 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return false, nil },
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
|
|
|
|
2017-11-09 06:20:09 -05:00
|
|
|
stateBag := createTestExistingStateBagStepCreateResourceGroup()
|
2017-11-06 00:16:58 -05:00
|
|
|
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2017-11-09 06:20:09 -05:00
|
|
|
if result != multistep.ActionHalt {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionHalt', but got '%d'.", result)
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
2017-11-09 06:20:09 -05:00
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == false {
|
|
|
|
t.Fatalf("Expected the step to set stateBag['%s'], but it was not.", constants.Error)
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 06:20:09 -05:00
|
|
|
func TestStepCreateResourceGroupMarkShouldFailIfTryingTempButExist(t *testing.T) {
|
2017-11-06 00:16:58 -05:00
|
|
|
var testSubject = &StepCreateResourceGroup{
|
2018-04-11 11:25:33 -04:00
|
|
|
create: func(context.Context, string, string, map[string]*string) error {
|
|
|
|
return fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
2017-11-06 00:16:58 -05:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2018-04-11 11:25:33 -04:00
|
|
|
exists: func(context.Context, string) (bool, error) { return true, nil },
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepCreateResourceGroup()
|
|
|
|
|
2018-01-22 19:03:49 -05:00
|
|
|
var result = testSubject.Run(context.Background(), stateBag)
|
2017-11-09 06:20:09 -05:00
|
|
|
if result != multistep.ActionHalt {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionHalt', but got '%d'.", result)
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
2017-11-09 06:20:09 -05:00
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == false {
|
|
|
|
t.Fatalf("Expected the step to set stateBag['%s'], but it was not.", constants.Error)
|
2017-11-06 00:16:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
func createTestStateBagStepCreateResourceGroup() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmLocation, "Unit Test: Location")
|
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
2017-11-09 06:20:09 -05:00
|
|
|
stateBag.Put(constants.ArmIsExistingResourceGroup, false)
|
|
|
|
|
|
|
|
value := "Unit Test: Tags"
|
|
|
|
tags := map[string]*string{
|
|
|
|
"tag01": &value,
|
|
|
|
}
|
|
|
|
|
2018-04-11 11:25:33 -04:00
|
|
|
stateBag.Put(constants.ArmTags, tags)
|
2017-11-09 06:20:09 -05:00
|
|
|
return stateBag
|
|
|
|
}
|
|
|
|
|
|
|
|
func createTestExistingStateBagStepCreateResourceGroup() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmLocation, "Unit Test: Location")
|
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
|
|
|
stateBag.Put(constants.ArmIsExistingResourceGroup, true)
|
2016-03-04 05:14:55 -05:00
|
|
|
|
2016-07-29 17:17:33 -04:00
|
|
|
value := "Unit Test: Tags"
|
|
|
|
tags := map[string]*string{
|
|
|
|
"tag01": &value,
|
|
|
|
}
|
|
|
|
|
2018-04-11 11:25:33 -04:00
|
|
|
stateBag.Put(constants.ArmTags, tags)
|
2016-03-04 05:14:55 -05:00
|
|
|
return stateBag
|
|
|
|
}
|