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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
# -------------------------------------------------------------------------
# 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.aio import recorded_by_proxy_async
from async_preparers import app_config_decorator_async
from testcase import has_feature_flag
from asynctestcase import AppConfigTestCase
from test_constants import FEATURE_MANAGEMENT_KEY
class TestAppConfigurationProvider(AppConfigTestCase):
# method: provider_creation_aad
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_creation_aad(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
feature_flag_enabled=True,
) as client:
assert client.get("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
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_trim_prefixes(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
trimmed = {"test."}
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
trim_prefixes=trimmed,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
feature_flag_enabled=True,
) as client:
assert client["message"] == "hi"
assert client["my_json"]["key"] == "value"
assert client["trimmed"] == "key"
assert FEATURE_MANAGEMENT_KEY in client
assert has_feature_flag(client, "Alpha")
# method: provider_selectors
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_selectors(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
selects = {SettingSelector(key_filter="message*", label_filter="dev")}
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
selects=selects,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
) as client:
assert client["message"] == "test"
assert "test.trimmed" not in client
assert FEATURE_MANAGEMENT_KEY not in client
# method: provider_selectors
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_key_vault_reference(
self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url
):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
selects=selects,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
) as client:
assert client["secret"] == "Very secret value"
# method: provider_selectors
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_secret_resolver(self, appconfiguration_endpoint_string):
selects = {SettingSelector(key_filter="*", label_filter="prod")}
async with await self.create_client(
endpoint=appconfiguration_endpoint_string, selects=selects, secret_resolver=secret_resolver
) as client:
assert client["secret"] == "Resolver Value"
# method: provider_selectors
@app_config_decorator_async
@recorded_by_proxy_async
async 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()
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
selects=selects,
keyvault_secret_url=appconfiguration_keyvault_secret_url,
key_vault_options=key_vault_options,
) as client:
assert client["secret"] == "Very secret value"
# method: provider_selectors
@app_config_decorator_async
@recorded_by_proxy_async
async 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)
async with await self.create_client(
endpoint=appconfiguration_endpoint_string, selects=selects, key_vault_options=key_vault_options
) as client:
assert client["secret"] == "Resolver Value"
@app_config_decorator_async
@recorded_by_proxy_async
async def test_provider_tag_filters(self, appconfiguration_endpoint_string, appconfiguration_keyvault_secret_url):
selects = {SettingSelector(key_filter="*", tag_filters=["a=b"])}
async with await self.create_client(
endpoint=appconfiguration_endpoint_string,
selects=selects,
feature_flag_enabled=True,
feature_flag_selectors={SettingSelector(key_filter="*", tag_filters=["a=b"])},
keyvault_secret_url=appconfiguration_keyvault_secret_url,
) as client:
assert "tagged_config" in client
assert FEATURE_MANAGEMENT_KEY in client
assert has_feature_flag(client, "TaggedFeatureFlag")
assert "message" not in client
async def secret_resolver(secret_id):
return "Resolver Value"
|