diff --git a/tests/prefix.tftest.hcl b/tests/prefix.tftest.hcl index 09dd8c40..4846dd0f 100644 --- a/tests/prefix.tftest.hcl +++ b/tests/prefix.tftest.hcl @@ -2,7 +2,7 @@ variables { location = "eastus2" } -run "prefix_length_too_short" { +run "prefix_length_should_not_be_too_short" { command = plan @@ -15,7 +15,7 @@ run "prefix_length_too_short" { ] } -run "prefix_disallowed_char" { +run "prefix_should_not_include_disallowed_char" { command = plan @@ -28,7 +28,7 @@ run "prefix_disallowed_char" { ] } -run "prefix_dissallowed_uppercase" { +run "prefix_should_not_include_dissallowed_uppercase" { command = plan @@ -41,7 +41,7 @@ run "prefix_dissallowed_uppercase" { ] } -run "prefix_cannot_start_with_dash" { +run "prefix_should_not_start_with_dash" { command = plan @@ -54,7 +54,7 @@ run "prefix_cannot_start_with_dash" { ] } -run "prefix_cannot_end_with_dash" { +run "prefix_should_not_end_with_dash" { command = plan @@ -67,7 +67,7 @@ run "prefix_cannot_end_with_dash" { ] } -run "prefix_length_ok_internal_dash" { +run "prefix_length_is_ok_with_internal_dash" { command = plan @@ -77,7 +77,7 @@ run "prefix_length_ok_internal_dash" { } -run "prefix_length_ok_with_number" { +run "prefix_length_is_ok_and_includes_a_number" { command = plan diff --git a/tests/var_defaults.tftest.hcl b/tests/var_defaults.tftest.hcl index b3f42f73..7502145a 100644 --- a/tests/var_defaults.tftest.hcl +++ b/tests/var_defaults.tftest.hcl @@ -4,7 +4,7 @@ variables { prefix = "foobar" } -run "default_cluster_sku_tier" { +run "cluster_sku_tier_should_default_to_Free" { command = plan @@ -17,7 +17,7 @@ run "default_cluster_sku_tier" { } } -run "default_cluster_support_tier" { +run "cluster_support_tier_should_default_to_KubernetesOfficial" { command = plan @@ -30,7 +30,7 @@ run "default_cluster_support_tier" { } } -run "aks_network_plugin" { +run "aks_network_plugin_should_default_to_kubenet" { command = plan @@ -43,7 +43,7 @@ run "aks_network_plugin" { } } -run "cluster_egress_type" { +run "cluster_egress_type_should_default_to_What" { command = plan @@ -59,7 +59,7 @@ run "cluster_egress_type" { } -run "storage_type" { +run "storage_type_should_default_to_standard" { command = plan @@ -72,7 +72,7 @@ run "storage_type" { } } -run "netapp_size_in_tb" { +run "netapp_size_in_tb_should_default_to_4tb" { command = plan @@ -85,7 +85,7 @@ run "netapp_size_in_tb" { } } -run "netapp_network_features" { +run "netapp_network_features_should_default_to_Basic" { command = plan @@ -98,7 +98,7 @@ run "netapp_network_features" { } } -run "metrics_category" { +run "metrics_category_should_default_to_AllMetrics" { command = plan @@ -111,7 +111,7 @@ run "metrics_category" { } } -run "cluster_api_mode" { +run "cluster_api_mode_should_default_to_public" { command = plan @@ -124,7 +124,7 @@ run "cluster_api_mode" { } } -run "aks_identity" { +run "aks_identity_should_default_to_uai" { command = plan @@ -135,4 +135,4 @@ run "aks_identity" { condition = var.aks_identity == "uai" error_message = "A default value of \"${var.aks_identity}\" for aks_identity was not expected." } -} \ No newline at end of file +}