1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from azure.appconfiguration.provider import SettingSelector, AzureAppConfigurationKeyVaultOptions
from devtools_testutils import recorded_by_proxy
from preparers import app_config_decorator_aad
from testcase import AppConfigTestCase, has_feature_flag
from test_constants import FEATURE_MANAGEMENT_KEY
class TestAppConfigurationProvider(AppConfigTestCase):
# method: provider_creation_aad
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_creation_aad(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
client = self.create_aad_client(
appconfiguration_endpoint_string,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
feature_flag_enabled=True,
)
assert client["message"] == "hi"
assert client["my_json"]["key"] == "value"
assert ".appconfig.featureflag/Alpha" not in client
assert FEATURE_MANAGEMENT_KEY in client
assert has_feature_flag(client, "Alpha")
# method: provider_trim_prefixes
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_trim_prefixes(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
trimmed = {"test."}
client = self.create_aad_client(
appconfiguration_endpoint_string,
trim_prefixes=trimmed,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
feature_flag_enabled=True,
)
assert client["message"] == "hi"
assert client["my_json"]["key"] == "value"
assert client["trimmed"] == "key"
assert "test.trimmed" not in client
assert FEATURE_MANAGEMENT_KEY in client
assert has_feature_flag(client, "Alpha")
# method: provider_selectors
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_selectors(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
selects = {SettingSelector(key_filter="message*", label_filter="dev")}
client = self.create_aad_client(
appconfiguration_endpoint_string, selects=selects, keyvault_secret_url=appconfiguration_keyvault_secret_url
)
assert client["message"] == "test"
assert "test.trimmed" not in client
assert FEATURE_MANAGEMENT_KEY not in client
# method: provider_selectors
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_key_vault_reference(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
client = self.create_aad_client(
appconfiguration_endpoint_string, selects=selects, keyvault_secret_url=appconfiguration_keyvault_secret_url
)
assert client["secret"] == "Very secret value"
# method: provider_selectors
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_secret_resolver(self, appconfiguration_endpoint_string):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
client = self.create_aad_client(
appconfiguration_endpoint_string, selects=selects, secret_resolver=secret_resolver
)
assert client["secret"] == "Reslover Value"
# method: provider_selectors
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_key_vault_reference_options(
self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url
):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
key_vault_options = AzureAppConfigurationKeyVaultOptions()
client = self.create_aad_client(
appconfiguration_endpoint_string,
selects=selects,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
key_vault_options=key_vault_options,
)
assert client["secret"] == "Very secret value"
# method: provider_selectors
@recorded_by_proxy
@app_config_decorator_aad
def test_provider_secret_resolver_options(self, appconfiguration_endpoint_string):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
key_vault_options = AzureAppConfigurationKeyVaultOptions(secret_resolver=secret_resolver)
client = self.create_aad_client(
appconfiguration_endpoint_string, selects=selects, key_vault_options=key_vault_options
)
assert client["secret"] == "Reslover Value"
def secret_resolver(secret_id):
return "Reslover Value"
|