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"
|
|
|
|
|
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 TestStepDeployTemplateShouldFailIfDeployFails(t *testing.T) {
|
|
|
|
var testSubject = &StepDeployTemplate{
|
2018-04-11 11:25:33 -04:00
|
|
|
deploy: func(context.Context, string, string) error {
|
2016-04-21 19:50:03 -04:00
|
|
|
return fmt.Errorf("!! Unit Test FAIL !!")
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepDeployTemplate()
|
|
|
|
|
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 TestStepDeployTemplateShouldPassIfDeployPasses(t *testing.T) {
|
|
|
|
var testSubject = &StepDeployTemplate{
|
2018-04-11 11:25:33 -04:00
|
|
|
deploy: func(context.Context, string, string) error { return nil },
|
2016-05-21 02:01:16 -04:00
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepDeployTemplate()
|
|
|
|
|
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 TestStepDeployTemplateShouldTakeStepArgumentsFromStateBag(t *testing.T) {
|
|
|
|
var actualResourceGroupName string
|
|
|
|
var actualDeploymentName string
|
|
|
|
|
|
|
|
var testSubject = &StepDeployTemplate{
|
2018-04-11 11:25:33 -04:00
|
|
|
deploy: func(_ context.Context, resourceGroupName string, deploymentName string) error {
|
2016-03-04 05:14:55 -05:00
|
|
|
actualResourceGroupName = resourceGroupName
|
|
|
|
actualDeploymentName = deploymentName
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
2017-11-30 03:11:17 -05:00
|
|
|
name: "--deployment-name--",
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepValidateTemplate()
|
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)
|
|
|
|
|
2017-11-30 03:11:17 -05:00
|
|
|
if actualDeploymentName != "--deployment-name--" {
|
2016-07-16 01:23:53 -04:00
|
|
|
t.Fatal("Expected StepValidateTemplate to source 'constants.ArmDeploymentName' 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 the step to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 04:12:53 -05:00
|
|
|
func TestStepDeployTemplateDeleteImageShouldFailWhenImageUrlCannotBeParsed(t *testing.T) {
|
|
|
|
var testSubject = &StepDeployTemplate{
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
name: "--deployment-name--",
|
|
|
|
}
|
|
|
|
// Invalid URL per https://golang.org/src/net/url/url_test.go
|
2018-04-11 11:25:33 -04:00
|
|
|
err := testSubject.deleteImage(context.TODO(), "image", "http://[fe80::1%en0]/", "Unit Test: ResourceGroupName")
|
2017-12-12 04:12:53 -05:00
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expected a failure because of the failed image name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepDeployTemplateDeleteImageShouldFailWithInvalidImage(t *testing.T) {
|
|
|
|
var testSubject = &StepDeployTemplate{
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
name: "--deployment-name--",
|
|
|
|
}
|
2018-04-11 11:25:33 -04:00
|
|
|
err := testSubject.deleteImage(context.TODO(), "image", "storage.blob.core.windows.net/abc", "Unit Test: ResourceGroupName")
|
2017-12-12 04:12:53 -05:00
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expected a failure because of the failed image name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
func createTestStateBagStepDeployTemplate() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmDeploymentName, "Unit Test: DeploymentName")
|
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
|
|
|
|
|
|
|
return stateBag
|
|
|
|
}
|