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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from azure.core import MatchConditions
from devtools_testutils import AzureMgmtTestCase, PowerShellPreparer
from azure.core.exceptions import (
ResourceModifiedError,
ResourceNotFoundError,
ResourceExistsError,
AzureError,
)
from azure.appconfiguration import (
ResourceReadOnlyError,
ConfigurationSetting,
)
from azure.appconfiguration.aio import AzureAppConfigurationClient
from consts import (
KEY,
LABEL,
TEST_VALUE,
TEST_CONTENT_TYPE,
LABEL_RESERVED_CHARS,
PAGE_SIZE,
KEY_UUID,
)
import pytest
import datetime
import os
import logging
import asyncio
import re
from async_wrapper import app_config_decorator
class AppConfigurationClientTest(AzureMgmtTestCase):
def __init__(self, method_name):
super(AppConfigurationClientTest, self).__init__(method_name)
self.vcr.match_on = ["path", "method", "query"]
def _delete_setting(self, client, item):
client.delete_configuration_setting(
key=item.key, label=item.label
)
# method: add_configuration_setting
@app_config_decorator
def test_add_configuration_setting(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
kv = ConfigurationSetting(
key=KEY + "_ADD",
label=LABEL,
value=TEST_VALUE,
content_type=TEST_CONTENT_TYPE,
tags={"tag1": "tag1", "tag2": "tag2"},
)
created_kv = client.add_configuration_setting(kv)
self._delete_setting(client, created_kv)
assert (
created_kv.label == kv.label
and kv.value == kv.value
and created_kv.content_type == kv.content_type
and created_kv.tags == kv.tags
)
assert (
created_kv.etag is not None
and created_kv.last_modified is not None
and created_kv.read_only is False
)
@app_config_decorator
def test_add_existing_configuration_setting(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
with pytest.raises(ResourceExistsError):
client.add_configuration_setting(
ConfigurationSetting(
key=test_config_setting.key,
lable=test_config_setting.label,
)
)
# method: set_configuration_setting
@app_config_decorator
def test_set_existing_configuration_setting_label_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_set_kv = test_config_setting
to_set_kv.value = to_set_kv.value + "a"
to_set_kv.tags = {"a": "b", "c": "d"}
set_kv = client.set_configuration_setting(to_set_kv)
assert (
to_set_kv.key == set_kv.key
and to_set_kv.label == to_set_kv.label
and to_set_kv.value == set_kv.value
and to_set_kv.content_type == set_kv.content_type
and to_set_kv.tags == set_kv.tags
and to_set_kv.etag != set_kv.etag
)
@app_config_decorator
def test_set_existing_configuration_setting_label_wrong_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_set_kv = test_config_setting
to_set_kv.value = to_set_kv.value + "a"
to_set_kv.tags = {"a": "b", "c": "d"}
to_set_kv.etag = "wrong etag"
with pytest.raises(ResourceModifiedError):
client.set_configuration_setting(to_set_kv, match_condition=MatchConditions.IfNotModified)
@app_config_decorator
def test_set_configuration_setting_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
kv = ConfigurationSetting(
key=KEY + "_SET",
label=LABEL,
value=TEST_VALUE,
content_type=TEST_CONTENT_TYPE,
tags={"tag1": "tag1", "tag2": "tag2"},
)
kv.etag = "random etag"
with pytest.raises(ResourceModifiedError):
client.set_configuration_setting(kv, match_condition=MatchConditions.IfNotModified)
@app_config_decorator
def test_set_configuration_setting_no_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_set_kv = ConfigurationSetting(
key=KEY + "_SET",
label=LABEL,
value=TEST_VALUE,
content_type=TEST_CONTENT_TYPE,
tags={"tag1": "tag1", "tag2": "tag2"},
)
set_kv = client.set_configuration_setting(to_set_kv)
self._delete_setting(client, to_set_kv)
assert (
to_set_kv.key == set_kv.key
and to_set_kv.label == set_kv.label
and to_set_kv.value == set_kv.value
and to_set_kv.content_type == set_kv.content_type
and to_set_kv.tags == set_kv.tags
and to_set_kv.etag != set_kv.etag
)
# method: get_configuration_setting
@app_config_decorator
def test_get_configuration_setting_no_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
compare_kv = test_config_setting_no_label
fetched_kv = client.get_configuration_setting(compare_kv.key)
assert (
fetched_kv.key == compare_kv.key
and fetched_kv.value == compare_kv.value
and fetched_kv.content_type == compare_kv.content_type
and fetched_kv.tags == compare_kv.tags
)
assert fetched_kv.label is None
@app_config_decorator
def test_get_configuration_setting_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
compare_kv = test_config_setting
fetched_kv = client.get_configuration_setting(
compare_kv.key, compare_kv.label
)
assert (
fetched_kv.key == compare_kv.key
and fetched_kv.value == compare_kv.value
and fetched_kv.content_type == compare_kv.content_type
and fetched_kv.tags == compare_kv.tags
)
assert fetched_kv.label is not None
@app_config_decorator
def test_get_non_existing_configuration_setting(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
compare_kv = test_config_setting
with pytest.raises(ResourceNotFoundError):
client.get_configuration_setting(
compare_kv.key, compare_kv.label + "a"
)
# method: delete_configuration_setting
@app_config_decorator
def test_delete_with_key_no_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_delete_kv = test_config_setting_no_label
client.delete_configuration_setting(to_delete_kv.key)
with pytest.raises(ResourceNotFoundError):
client.get_configuration_setting(to_delete_kv.key)
@app_config_decorator
def test_delete_with_key_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_delete_kv = test_config_setting
client.delete_configuration_setting(
to_delete_kv.key, label=to_delete_kv.label
)
with pytest.raises(ResourceNotFoundError):
client.get_configuration_setting(
to_delete_kv.key, label=to_delete_kv.label
)
@app_config_decorator
def test_delete_non_existing(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
deleted_kv = client.delete_configuration_setting(
"not_exist_" + KEY
)
assert deleted_kv is None
@app_config_decorator
def test_delete_correct_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_delete_kv = test_config_setting_no_label
deleted_kv = client.delete_configuration_setting(
to_delete_kv.key, etag=to_delete_kv.etag
)
assert deleted_kv is not None
with pytest.raises(ResourceNotFoundError):
client.get_configuration_setting(to_delete_kv.key)
@app_config_decorator
def test_delete_wrong_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_delete_kv = test_config_setting_no_label
with pytest.raises(ResourceModifiedError):
client.delete_configuration_setting(
to_delete_kv.key, etag="wrong etag", match_condition=MatchConditions.IfNotModified
)
# method: list_configuration_settings
@app_config_decorator
def test_list_configuration_settings_key_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(
label_filter=LABEL, key_filter=KEY
)
assert len(items) == 1
assert all(x.key == KEY and x.label == LABEL for x in items)
@app_config_decorator
def test_list_configuration_settings_only_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(label_filter=LABEL)
assert len(items) == 1
assert all(x.label == LABEL for x in items)
@app_config_decorator
def test_list_configuration_settings_only_key(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(key_filter=KEY)
assert len(items) == 2
assert all(x.key == KEY for x in items)
@app_config_decorator
def test_list_configuration_settings_fields(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(
key_filter="*", label_filter=LABEL, fields=["key", "content_type"]
)
assert len(items) == 1
assert all(x.key and not x.label and x.content_type for x in items)
@app_config_decorator
def test_list_configuration_settings_reserved_chars(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
resered_char_kv = ConfigurationSetting(
key=KEY, label=LABEL_RESERVED_CHARS, value=TEST_VALUE
)
resered_char_kv = client.add_configuration_setting(
resered_char_kv
)
self._delete_setting(client, resered_char_kv)
escaped_label = re.sub(r"((?!^)\*(?!$)|\\|,)", r"\\\1", LABEL_RESERVED_CHARS)
items = client.list_configuration_settings(
label_filter=escaped_label
)
assert len(items) == 1
assert all(x.label == LABEL_RESERVED_CHARS for x in items)
@pytest.mark.skip("Bad Request")
@app_config_decorator
def test_list_configuration_settings_contains(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(
label_filter="*" + LABEL + "*"
)
assert len(items) == 1
assert all(x.label == LABEL for x in items)
@app_config_decorator
def test_list_configuration_settings_correct_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_list_kv = test_config_setting
custom_headers = {"If-Match": to_list_kv.etag}
items = client.list_configuration_settings(
key_filter=to_list_kv.key, label_filter=to_list_kv.label, headers=custom_headers
)
assert len(items) == 1
assert all(x.key == to_list_kv.key and x.label == to_list_kv.label for x in items)
@app_config_decorator
def test_list_configuration_settings_multi_pages(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
# create PAGE_SIZE+1 configuration settings to have at least two pages
try:
delete_me = [
client.add_configuration_setting(
ConfigurationSetting(
key="multi_" + str(i) + KEY_UUID,
label="multi_label_" + str(i),
value="multi value",
)
)
for i in range(PAGE_SIZE + 1)
]
except ResourceExistsError:
pass
items = client.list_configuration_settings(key_filter="multi_*")
assert len(list(items)) > PAGE_SIZE
# Remove the configuration settings
try:
[
client.delete_configuration_setting(
key="multi_" + str(i) + KEY_UUID, label="multi_label_" + str(i)
)
for i in range(PAGE_SIZE + 1)
]
except AzureError:
pass
@app_config_decorator
def test_list_configuration_settings_null_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_configuration_settings(label_filter="\0")
assert len(list(items)) > 0
@app_config_decorator
def test_list_configuration_settings_only_accepttime(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
exclude_today = client.list_configuration_settings(
accept_datetime=datetime.datetime.today() + datetime.timedelta(days=-1)
)
all_inclusive = client.list_configuration_settings()
assert len(list(all_inclusive)) > len(list(exclude_today))
# method: list_revisions
@app_config_decorator
def test_list_revisions_key_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_list1 = test_config_setting
items = client.list_revisions(
label_filter=to_list1.label, key_filter=to_list1.key
)
assert len(items) >= 2
assert all(x.key == to_list1.key and x.label == to_list1.label for x in items)
@app_config_decorator
def test_list_revisions_only_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_revisions(label_filter=LABEL)
assert len(items) >= 1
assert all(x.label == LABEL for x in items)
@app_config_decorator
def test_list_revisions_key_no_label(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_revisions(key_filter=KEY)
assert len(items) >= 1
assert all(x.key == KEY for x in items)
@app_config_decorator
def test_list_revisions_fields(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
items = client.list_revisions(
key_filter="*", label_filter=LABEL, fields=["key", "content_type"]
)
assert all(
x.key and not x.label and x.content_type
and not x.tags and not x.etag
for x in items)
@app_config_decorator
def test_list_revisions_correct_etag(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_list_kv = test_config_setting
custom_headers = {"If-Match": to_list_kv.etag}
items = client.list_revisions(
key_filter=to_list_kv.key, label_filter=to_list_kv.label, headers=custom_headers
)
assert len(items) >= 1
assert all(x.key == to_list_kv.key and x.label == to_list_kv.label for x in items)
@app_config_decorator
def test_read_only(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
kv = test_config_setting_no_label
read_only_kv = client.set_read_only(kv)
assert read_only_kv.read_only
readable_kv = client.set_read_only(read_only_kv, False)
assert not readable_kv.read_only
@app_config_decorator
def test_delete_read_only(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_delete_kv = test_config_setting_no_label
read_only_kv = client.set_read_only(to_delete_kv)
with pytest.raises(ResourceReadOnlyError):
client.delete_configuration_setting(to_delete_kv.key)
client.set_read_only(read_only_kv, False)
client.delete_configuration_setting(to_delete_kv.key)
with pytest.raises(ResourceNotFoundError):
client.get_configuration_setting(to_delete_kv.key)
@app_config_decorator
def test_set_read_only(self, client, appconfiguration_endpoint_string, test_config_setting, test_config_setting_no_label):
to_set_kv = test_config_setting
to_set_kv.value = to_set_kv.value + "a"
to_set_kv.tags = {"a": "b", "c": "d"}
read_only_kv = client.set_read_only(to_set_kv)
with pytest.raises(ResourceReadOnlyError):
client.set_configuration_setting(read_only_kv)
readable_kv = client.set_read_only(read_only_kv, False)
readable_kv.value = to_set_kv.value
readable_kv.tags = to_set_kv.tags
set_kv = client.set_configuration_setting(readable_kv)
assert (
to_set_kv.key == set_kv.key
and to_set_kv.label == to_set_kv.label
and to_set_kv.value == set_kv.value
and to_set_kv.content_type == set_kv.content_type
and to_set_kv.tags == set_kv.tags
and to_set_kv.etag != set_kv.etag
)
|