2016-05-21 02:01:16 -04:00
package arm
import (
2016-10-13 14:56:23 -04:00
"encoding/base64"
2016-05-21 02:01:16 -04:00
"encoding/json"
"testing"
2018-04-11 11:25:33 -04:00
"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2018-02-01/resources"
2016-07-11 17:36:49 -04:00
"github.com/approvals/go-approval-tests"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/builder/azure/common/constants"
"github.com/hashicorp/packer/builder/azure/common/template"
2016-05-21 02:01:16 -04:00
)
// Ensure the link values are not set, and the concrete values are set.
func TestVirtualMachineDeployment00 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
if deployment . Properties . Mode != resources . Incremental {
t . Errorf ( "Expected deployment.Properties.Mode to be %s, but got %s" , resources . Incremental , deployment . Properties . Mode )
}
if deployment . Properties . ParametersLink != nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the ParametersLink to be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . TemplateLink != nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the TemplateLink to be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . Parameters == nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the Parameters to not be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . Template == nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the Template to not be nil!" )
2016-05-21 02:01:16 -04:00
}
}
// Ensure the Virtual Machine template is a valid JSON document.
func TestVirtualMachineDeployment01 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
_ , err = json . Marshal ( deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the Virtual Machine template parameters are correct.
func TestVirtualMachineDeployment02 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
bs , err := json . Marshal ( deployment . Properties . Parameters )
if err != nil {
t . Fatal ( err )
}
var params template . TemplateParameters
err = json . Unmarshal ( bs , & params )
if err != nil {
t . Fatal ( err )
}
if params . AdminUsername . Value != c . UserName {
t . Errorf ( "Expected template parameter 'AdminUsername' to be %s, but got %s." , params . AdminUsername . Value , c . UserName )
}
if params . AdminPassword . Value != c . tmpAdminPassword {
t . Errorf ( "Expected template parameter 'AdminPassword' to be %s, but got %s." , params . AdminPassword . Value , c . tmpAdminPassword )
}
if params . DnsNameForPublicIP . Value != c . tmpComputeName {
t . Errorf ( "Expected template parameter 'DnsNameForPublicIP' to be %s, but got %s." , params . DnsNameForPublicIP . Value , c . tmpComputeName )
}
if params . OSDiskName . Value != c . tmpOSDiskName {
t . Errorf ( "Expected template parameter 'OSDiskName' to be %s, but got %s." , params . OSDiskName . Value , c . tmpOSDiskName )
}
if params . StorageAccountBlobEndpoint . Value != c . storageAccountBlobEndpoint {
t . Errorf ( "Expected template parameter 'StorageAccountBlobEndpoint' to be %s, but got %s." , params . StorageAccountBlobEndpoint . Value , c . storageAccountBlobEndpoint )
}
if params . VMSize . Value != c . VMSize {
t . Errorf ( "Expected template parameter 'VMSize' to be %s, but got %s." , params . VMSize . Value , c . VMSize )
}
if params . VMName . Value != c . tmpComputeName {
t . Errorf ( "Expected template parameter 'VMName' to be %s, but got %s." , params . VMName . Value , c . tmpComputeName )
}
}
// Ensure the VM template is correct when using a market place image.
func TestVirtualMachineDeployment03 ( t * testing . T ) {
m := getArmBuilderConfiguration ( )
m [ "image_publisher" ] = "ImagePublisher"
m [ "image_offer" ] = "ImageOffer"
m [ "image_sku" ] = "ImageSku"
m [ "image_version" ] = "ImageVersion"
c , _ , _ := newConfig ( m , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
2016-07-16 00:31:03 -04:00
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
2016-05-21 02:01:16 -04:00
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when using a custom image.
func TestVirtualMachineDeployment04 ( t * testing . T ) {
config := map [ string ] string {
"capture_name_prefix" : "ignore" ,
"capture_container_name" : "ignore" ,
"location" : "ignore" ,
"image_url" : "https://localhost/custom.vhd" ,
2016-06-09 13:03:31 -04:00
"resource_group_name" : "ignore" ,
2016-05-21 02:01:16 -04:00
"storage_account" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
}
2016-06-30 19:51:52 -04:00
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
func TestVirtualMachineDeployment05 ( t * testing . T ) {
config := map [ string ] string {
"capture_name_prefix" : "ignore" ,
"capture_container_name" : "ignore" ,
"location" : "ignore" ,
"image_url" : "https://localhost/custom.vhd" ,
"resource_group_name" : "ignore" ,
"storage_account" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"virtual_network_name" : "virtualNetworkName" ,
"virtual_network_resource_group_name" : "virtualNetworkResourceGroupName" ,
"virtual_network_subnet_name" : "virtualNetworkSubnetName" ,
}
2016-05-21 02:01:16 -04:00
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
2016-07-16 00:31:03 -04:00
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
2016-05-21 02:01:16 -04:00
if err != nil {
t . Fatal ( err )
}
}
2016-07-29 17:17:33 -04:00
// Verify that tags are properly applied to every resource
func TestVirtualMachineDeployment06 ( t * testing . T ) {
config := map [ string ] interface { } {
"capture_name_prefix" : "ignore" ,
"capture_container_name" : "ignore" ,
"location" : "ignore" ,
"image_url" : "https://localhost/custom.vhd" ,
"resource_group_name" : "ignore" ,
"storage_account" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"azure_tags" : map [ string ] string {
"tag01" : "value01" ,
"tag02" : "value02" ,
"tag03" : "value03" ,
} ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
2016-10-13 14:56:23 -04:00
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Verify that custom data are properly inserted
func TestVirtualMachineDeployment07 ( t * testing . T ) {
config := map [ string ] interface { } {
"capture_name_prefix" : "ignore" ,
"capture_container_name" : "ignore" ,
"location" : "ignore" ,
"image_url" : "https://localhost/custom.vhd" ,
"resource_group_name" : "ignore" ,
"storage_account" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
// The user specifies a configuration value for the setting custom_data_file.
// The config type will read that file, and base64 encode it. The encoded
// contents are then assigned to Config's customData property, which are directly
// injected into the template.
//
// I am not aware of an easy to mimic this situation in a test without having
// a file on disk, which I am loathe to do. The alternative is to inject base64
// encoded data myself, which is what I am doing here.
customData := ` # cloud - config
growpart :
mode : off
`
base64CustomData := base64 . StdEncoding . EncodeToString ( [ ] byte ( customData ) )
c . customData = base64CustomData
2017-05-29 00:06:09 -04:00
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when building from a custom managed image.
func TestVirtualMachineDeployment08 ( t * testing . T ) {
config := map [ string ] interface { } {
"location" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
2017-05-30 14:25:46 -04:00
"custom_managed_image_resource_group_name" : "CustomManagedImageResourceGroupName" ,
"custom_managed_image_name" : "CustomManagedImageName" ,
2017-05-29 00:06:09 -04:00
"managed_image_name" : "ManagedImageName" ,
"managed_image_resource_group_name" : "ManagedImageResourceGroupName" ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when building from a platform managed image.
func TestVirtualMachineDeployment09 ( t * testing . T ) {
config := map [ string ] interface { } {
2017-05-30 14:25:46 -04:00
"location" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"image_publisher" : "--image-publisher--" ,
"image_offer" : "--image-offer--" ,
"image_sku" : "--image-sku--" ,
"image_version" : "--version--" ,
"managed_image_name" : "ManagedImageName" ,
"managed_image_resource_group_name" : "ManagedImageResourceGroupName" ,
2017-05-29 00:06:09 -04:00
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
2017-08-06 18:32:44 -04:00
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when building with PublicIp and connect to Private Network
func TestVirtualMachineDeployment10 ( t * testing . T ) {
config := map [ string ] interface { } {
"location" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"image_publisher" : "--image-publisher--" ,
"image_offer" : "--image-offer--" ,
"image_sku" : "--image-sku--" ,
"image_version" : "--version--" ,
"virtual_network_resource_group_name" : "--virtual_network_resource_group_name--" ,
"virtual_network_name" : "--virtual_network_name--" ,
"virtual_network_subnet_name" : "--virtual_network_subnet_name--" ,
"private_virtual_network_with_public_ip" : true ,
"managed_image_name" : "ManagedImageName" ,
"managed_image_resource_group_name" : "ManagedImageResourceGroupName" ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
2018-02-23 18:34:13 -05:00
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when building with additional unmanaged disks
func TestVirtualMachineDeployment11 ( t * testing . T ) {
config := map [ string ] interface { } {
"location" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"image_publisher" : "--image-publisher--" ,
"image_offer" : "--image-offer--" ,
"image_sku" : "--image-sku--" ,
"image_version" : "--version--" ,
"disk_additional_size" : [ ] uint { 32 } ,
"resource_group_name" : "packergroup" ,
"storage_account" : "packerartifacts" ,
"capture_name_prefix" : "packer" ,
"capture_container_name" : "packerimages" ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the VM template is correct when building with additional managed disks
func TestVirtualMachineDeployment12 ( t * testing . T ) {
config := map [ string ] interface { } {
"location" : "ignore" ,
"subscription_id" : "ignore" ,
"os_type" : constants . Target_Linux ,
"communicator" : "none" ,
"image_publisher" : "--image-publisher--" ,
"image_offer" : "--image-offer--" ,
"image_sku" : "--image-sku--" ,
"image_version" : "--version--" ,
"disk_additional_size" : [ ] uint { 32 } ,
"managed_image_name" : "ManagedImageName" ,
"managed_image_resource_group_name" : "ManagedImageResourceGroupName" ,
}
c , _ , err := newConfig ( config , getPackerConfiguration ( ) )
if err != nil {
t . Fatal ( err )
}
2016-07-29 17:17:33 -04:00
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
2016-05-21 02:01:16 -04:00
// Ensure the link values are not set, and the concrete values are set.
func TestKeyVaultDeployment00 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetKeyVaultDeployment ( c )
if err != nil {
t . Fatal ( err )
}
if deployment . Properties . Mode != resources . Incremental {
t . Errorf ( "Expected deployment.Properties.Mode to be %s, but got %s" , resources . Incremental , deployment . Properties . Mode )
}
if deployment . Properties . ParametersLink != nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the ParametersLink to be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . TemplateLink != nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the TemplateLink to be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . Parameters == nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the Parameters to not be nil!" )
2016-05-21 02:01:16 -04:00
}
if deployment . Properties . Template == nil {
2016-07-29 17:17:33 -04:00
t . Error ( "Expected the Template to not be nil!" )
2016-05-21 02:01:16 -04:00
}
}
// Ensure the KeyVault template is a valid JSON document.
func TestKeyVaultDeployment01 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetKeyVaultDeployment ( c )
if err != nil {
t . Fatal ( err )
}
_ , err = json . Marshal ( deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
// Ensure the KeyVault template parameters are correct.
func TestKeyVaultDeployment02 ( t * testing . T ) {
c , _ , _ := newConfig ( getArmBuilderConfigurationWithWindows ( ) , getPackerConfiguration ( ) )
deployment , err := GetKeyVaultDeployment ( c )
if err != nil {
t . Fatal ( err )
}
bs , err := json . Marshal ( deployment . Properties . Parameters )
if err != nil {
t . Fatal ( err )
}
var params template . TemplateParameters
err = json . Unmarshal ( bs , & params )
if err != nil {
t . Fatal ( err )
}
if params . ObjectId . Value != c . ObjectID {
t . Errorf ( "Expected template parameter 'ObjectId' to be %s, but got %s." , params . ObjectId . Value , c . ObjectID )
}
if params . TenantId . Value != c . TenantID {
t . Errorf ( "Expected template parameter 'TenantId' to be %s, but got %s." , params . TenantId . Value , c . TenantID )
}
if params . KeyVaultName . Value != c . tmpKeyVaultName {
t . Errorf ( "Expected template parameter 'KeyVaultName' to be %s, but got %s." , params . KeyVaultName . Value , c . tmpKeyVaultName )
}
if params . KeyVaultSecretValue . Value != c . winrmCertificate {
t . Errorf ( "Expected template parameter 'KeyVaultSecretValue' to be %s, but got %s." , params . KeyVaultSecretValue . Value , c . winrmCertificate )
}
}
2016-07-29 17:17:33 -04:00
// Ensure the KeyVault template is correct when tags are supplied.
2016-05-21 02:01:16 -04:00
func TestKeyVaultDeployment03 ( t * testing . T ) {
2016-07-29 17:17:33 -04:00
tags := map [ string ] interface { } {
"azure_tags" : map [ string ] string {
"tag01" : "value01" ,
"tag02" : "value02" ,
"tag03" : "value03" ,
} ,
}
c , _ , _ := newConfig ( tags , getArmBuilderConfigurationWithWindows ( ) , getPackerConfiguration ( ) )
2016-05-21 02:01:16 -04:00
deployment , err := GetKeyVaultDeployment ( c )
if err != nil {
t . Fatal ( err )
}
2016-07-16 00:31:03 -04:00
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
2016-05-21 02:01:16 -04:00
if err != nil {
t . Fatal ( err )
}
}
2018-03-05 04:27:52 -05:00
func TestPlanInfo01 ( t * testing . T ) {
planInfo := map [ string ] interface { } {
2018-03-09 01:39:23 -05:00
"plan_info" : map [ string ] string {
"plan_name" : "planName00" ,
"plan_product" : "planProduct00" ,
"plan_publisher" : "planPublisher00" ,
} ,
2018-03-05 04:27:52 -05:00
}
c , _ , _ := newConfig ( planInfo , getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}
func TestPlanInfo02 ( t * testing . T ) {
planInfo := map [ string ] interface { } {
2018-03-09 01:39:23 -05:00
"azure_tags" : map [ string ] string {
"dept" : "engineering" ,
} ,
"plan_info" : map [ string ] string {
"plan_name" : "planName00" ,
"plan_product" : "planProduct00" ,
"plan_publisher" : "planPublisher00" ,
"plan_promotion_code" : "planPromotionCode00" ,
} ,
2018-03-05 04:27:52 -05:00
}
c , _ , _ := newConfig ( planInfo , getArmBuilderConfiguration ( ) , getPackerConfiguration ( ) )
deployment , err := GetVirtualMachineDeployment ( c )
if err != nil {
t . Fatal ( err )
}
err = approvaltests . VerifyJSONStruct ( t , deployment . Properties . Template )
if err != nil {
t . Fatal ( err )
}
}