c7018a00c8
This is last merge that will happen from the github.com/Azure/packer-Azure repository. All development is being over to this repository. The biggest change in this merge is support for Windows. There are a few other fixes as well. * If the user cancels the build, clean up any resources. * Output a reasonable build artifact. * Log requests and responses with Azure. * Support for US Government and the China clouds. * Support interrupting long running tasks. * Allow the user to set the image version. * Device login support.
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License. See the LICENSE file in the project root for license information.
|
|
|
|
package arm
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/builder/azure/common/constants"
|
|
"testing"
|
|
)
|
|
|
|
func TestStateBagShouldBePopulatedExpectedValues(t *testing.T) {
|
|
var testSubject = &Builder{}
|
|
_, err := testSubject.Prepare(getArmBuilderConfiguration(), getPackerConfiguration())
|
|
if err != nil {
|
|
t.Fatalf("failed to prepare: %s", err)
|
|
}
|
|
|
|
var expectedStateBagKeys = []string{
|
|
constants.AuthorizedKey,
|
|
constants.PrivateKey,
|
|
|
|
constants.ArmComputeName,
|
|
constants.ArmDeploymentName,
|
|
constants.ArmLocation,
|
|
constants.ArmResourceGroupName,
|
|
constants.ArmStorageAccountName,
|
|
constants.ArmTemplateParameters,
|
|
constants.ArmVirtualMachineCaptureParameters,
|
|
constants.ArmPublicIPAddressName,
|
|
}
|
|
|
|
for _, v := range expectedStateBagKeys {
|
|
if _, ok := testSubject.stateBag.GetOk(v); ok == false {
|
|
t.Errorf("Expected the builder's state bag to contain '%s', but it did not.", v)
|
|
}
|
|
}
|
|
}
|