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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
|
# The MIT License (MIT)
# Copyright (c) Microsoft Corporation. All rights reserved.
import os
import unittest
import uuid
import pytest
import azure.cosmos._retry_utility as retry_utility
import azure.cosmos.cosmos_client as cosmos_client
import azure.cosmos.exceptions as exceptions
import test_config
from azure.cosmos import http_constants, DatabaseProxy, _endpoint_discovery_retry_policy
from azure.cosmos._execution_context.base_execution_context import _QueryExecutionContextBase
from azure.cosmos._execution_context.query_execution_info import _PartitionedQueryExecutionInfo
from azure.cosmos.documents import _DistinctType
from azure.cosmos.partition_key import PartitionKey
@pytest.mark.cosmosCircuitBreaker
@pytest.mark.cosmosQuery
class TestQuery(unittest.TestCase):
"""Test to ensure escaping of non-ascii characters from partition key"""
created_db: DatabaseProxy = None
client: cosmos_client.CosmosClient = None
config = test_config.TestConfig
host = config.host
connectionPolicy = config.connectionPolicy
TEST_DATABASE_ID = config.TEST_DATABASE_ID
is_emulator = config.is_emulator
credential = config.credential
@classmethod
def setUpClass(cls):
use_multiple_write_locations = False
if os.environ.get("AZURE_COSMOS_ENABLE_CIRCUIT_BREAKER", "False") == "True":
use_multiple_write_locations = True
cls.client = cosmos_client.CosmosClient(cls.host, cls.credential, multiple_write_locations=use_multiple_write_locations)
cls.created_db = cls.client.get_database_client(cls.TEST_DATABASE_ID)
if cls.host == "https://localhost:8081/":
os.environ["AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY"] = "True"
def test_first_and_last_slashes_trimmed_for_query_string(self):
created_collection = self.created_db.create_container(
"test_trimmed_slashes", PartitionKey(path="/pk"))
doc_id = 'myId' + str(uuid.uuid4())
document_definition = {'pk': 'pk', 'id': doc_id}
created_collection.create_item(body=document_definition)
query = 'SELECT * from c'
query_iterable = created_collection.query_items(
query=query,
partition_key='pk'
)
iter_list = list(query_iterable)
self.assertEqual(iter_list[0]['id'], doc_id)
self.created_db.delete_container(created_collection.id)
def test_populate_query_metrics(self):
created_collection = self.created_db.create_container("query_metrics_test",
PartitionKey(path="/pk"))
doc_id = 'MyId' + str(uuid.uuid4())
document_definition = {'pk': 'pk', 'id': doc_id}
created_collection.create_item(body=document_definition)
query = 'SELECT * from c'
query_iterable = created_collection.query_items(
query=query,
partition_key='pk',
populate_query_metrics=True
)
iter_list = list(query_iterable)
self.assertEqual(iter_list[0]['id'], doc_id)
METRICS_HEADER_NAME = 'x-ms-documentdb-query-metrics'
self.assertTrue(METRICS_HEADER_NAME in created_collection.client_connection.last_response_headers)
metrics_header = created_collection.client_connection.last_response_headers[METRICS_HEADER_NAME]
# Validate header is well-formed: "key1=value1;key2=value2;etc"
metrics = metrics_header.split(';')
self.assertTrue(len(metrics) > 1)
self.assertTrue(all(['=' in x for x in metrics]))
self.created_db.delete_container(created_collection.id)
def test_populate_index_metrics(self):
created_collection = self.created_db.create_container("query_index_test",
PartitionKey(path="/pk"))
doc_id = 'MyId' + str(uuid.uuid4())
document_definition = {'pk': 'pk', 'id': doc_id}
created_collection.create_item(body=document_definition)
query = 'SELECT * from c'
query_iterable = created_collection.query_items(
query=query,
partition_key='pk',
populate_index_metrics=True
)
iter_list = list(query_iterable)
self.assertEqual(iter_list[0]['id'], doc_id)
INDEX_HEADER_NAME = http_constants.HttpHeaders.IndexUtilization
self.assertTrue(INDEX_HEADER_NAME in created_collection.client_connection.last_response_headers)
index_metrics = created_collection.client_connection.last_response_headers[INDEX_HEADER_NAME]
self.assertIsNotNone(index_metrics)
expected_index_metrics = {'UtilizedSingleIndexes': [{'FilterExpression': '', 'IndexSpec': '/pk/?',
'FilterPreciseSet': True, 'IndexPreciseSet': True,
'IndexImpactScore': 'High'}],
'PotentialSingleIndexes': [], 'UtilizedCompositeIndexes': [],
'PotentialCompositeIndexes': []}
self.assertDictEqual(expected_index_metrics, index_metrics)
self.created_db.delete_container(created_collection.id)
# TODO: Need to validate the query request count logic
@pytest.mark.skip
def test_max_item_count_honored_in_order_by_query(self):
created_collection = self.created_db.create_container("test-max-item-count" + str(uuid.uuid4()),
PartitionKey(path="/pk"))
docs = []
for i in range(10):
document_definition = {'pk': 'pk', 'id': 'myId' + str(uuid.uuid4())}
docs.append(created_collection.create_item(body=document_definition))
query = 'SELECT * from c ORDER BY c._ts'
query_iterable = created_collection.query_items(
query=query,
max_item_count=1,
enable_cross_partition_query=True
)
self.validate_query_requests_count(query_iterable, 25)
query_iterable = created_collection.query_items(
query=query,
max_item_count=100,
enable_cross_partition_query=True
)
self.validate_query_requests_count(query_iterable, 5)
self.created_db.delete_container(created_collection.id)
def validate_query_requests_count(self, query_iterable, expected_count):
self.count = 0
self.OriginalExecuteFunction = retry_utility.ExecuteFunction
retry_utility.ExecuteFunction = self._MockExecuteFunction
for block in query_iterable.by_page():
assert len(list(block)) != 0
retry_utility.ExecuteFunction = self.OriginalExecuteFunction
self.assertEqual(self.count, expected_count)
self.count = 0
def _MockExecuteFunction(self, function, *args, **kwargs):
self.count += 1
return self.OriginalExecuteFunction(function, *args, **kwargs)
def test_get_query_plan_through_gateway(self):
created_collection = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
self._validate_query_plan(query="Select top 10 value count(c.id) from c",
container_link=created_collection.container_link,
top=10,
order_by=[],
aggregate=['Count'],
select_value=True,
offset=None,
limit=None,
distinct=_DistinctType.NoneType)
self._validate_query_plan(query="Select * from c order by c._ts offset 5 limit 10",
container_link=created_collection.container_link,
top=None,
order_by=['Ascending'],
aggregate=[],
select_value=False,
offset=5,
limit=10,
distinct=_DistinctType.NoneType)
self._validate_query_plan(query="Select distinct value c.id from c order by c.id",
container_link=created_collection.container_link,
top=None,
order_by=['Ascending'],
aggregate=[],
select_value=True,
offset=None,
limit=None,
distinct=_DistinctType.Ordered)
def _validate_query_plan(self, query, container_link, top, order_by, aggregate, select_value, offset, limit,
distinct):
query_plan_dict = self.client.client_connection._GetQueryPlanThroughGateway(query, container_link)
query_execution_info = _PartitionedQueryExecutionInfo(query_plan_dict)
self.assertTrue(query_execution_info.has_rewritten_query())
self.assertEqual(query_execution_info.has_distinct_type(), distinct != "None")
self.assertEqual(query_execution_info.get_distinct_type(), distinct)
self.assertEqual(query_execution_info.has_top(), top is not None)
self.assertEqual(query_execution_info.get_top(), top)
self.assertEqual(query_execution_info.has_order_by(), len(order_by) > 0)
self.assertListEqual(query_execution_info.get_order_by(), order_by)
self.assertEqual(query_execution_info.has_aggregates(), len(aggregate) > 0)
self.assertListEqual(query_execution_info.get_aggregates(), aggregate)
self.assertEqual(query_execution_info.has_select_value(), select_value)
self.assertEqual(query_execution_info.has_offset(), offset is not None)
self.assertEqual(query_execution_info.get_offset(), offset)
self.assertEqual(query_execution_info.has_limit(), limit is not None)
self.assertEqual(query_execution_info.get_limit(), limit)
def test_unsupported_queries(self):
created_collection = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
queries = ['SELECT COUNT(1) FROM c', 'SELECT COUNT(1) + 5 FROM c', 'SELECT COUNT(1) + SUM(c) FROM c']
for query in queries:
query_iterable = created_collection.query_items(query=query, enable_cross_partition_query=True)
try:
list(query_iterable)
self.fail()
except exceptions.CosmosHttpResponseError as e:
self.assertEqual(e.status_code, 400)
def test_query_with_non_overlapping_pk_ranges(self):
created_collection = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
query_iterable = created_collection.query_items("select * from c where c.pk='1' or c.pk='2'",
enable_cross_partition_query=True)
self.assertListEqual(list(query_iterable), [])
def test_offset_limit(self):
created_collection = self.created_db.create_container("offset_limit_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"))
values = []
for i in range(10):
document_definition = {'pk': i, 'id': 'myId' + str(uuid.uuid4()), 'value': i // 3}
values.append(created_collection.create_item(body=document_definition)['pk'])
self._validate_distinct_offset_limit(created_collection=created_collection,
query='SELECT DISTINCT c["value"] from c ORDER BY c.pk OFFSET 0 LIMIT 2',
results=[0, 1])
self._validate_distinct_offset_limit(created_collection=created_collection,
query='SELECT DISTINCT c["value"] from c ORDER BY c.pk OFFSET 2 LIMIT 2',
results=[2, 3])
self._validate_distinct_offset_limit(created_collection=created_collection,
query='SELECT DISTINCT c["value"] from c ORDER BY c.pk OFFSET 4 LIMIT 3',
results=[])
self._validate_offset_limit(created_collection=created_collection,
query='SELECT * from c ORDER BY c.pk OFFSET 0 LIMIT 5',
results=values[:5])
self._validate_offset_limit(created_collection=created_collection,
query='SELECT * from c ORDER BY c.pk OFFSET 5 LIMIT 10',
results=values[5:])
self._validate_offset_limit(created_collection=created_collection,
query='SELECT * from c ORDER BY c.pk OFFSET 10 LIMIT 5',
results=[])
self._validate_offset_limit(created_collection=created_collection,
query='SELECT * from c ORDER BY c.pk OFFSET 100 LIMIT 1',
results=[])
self.created_db.delete_container(created_collection.id)
def _validate_offset_limit(self, created_collection, query, results):
query_iterable = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
self.assertListEqual(list(map(lambda doc: doc['pk'], list(query_iterable))), results)
def _validate_distinct_offset_limit(self, created_collection, query, results):
query_iterable = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
self.assertListEqual(list(map(lambda doc: doc["value"], list(query_iterable))), results)
def test_distinct(self):
distinct_field = 'distinct_field'
pk_field = "pk"
different_field = "different_field"
created_collection = self.created_db.create_container(
id='collection with composite index ' + str(uuid.uuid4()),
partition_key=PartitionKey(path="/pk", kind="Hash"),
indexing_policy={
"compositeIndexes": [
[{"path": "/" + pk_field, "order": "ascending"},
{"path": "/" + distinct_field, "order": "ascending"}],
[{"path": "/" + distinct_field, "order": "ascending"},
{"path": "/" + pk_field, "order": "ascending"}]
]
}
)
documents = []
for i in range(5):
j = i
while j > i - 5:
document_definition = {pk_field: i, 'id': str(uuid.uuid4()), distinct_field: j}
documents.append(created_collection.create_item(body=document_definition))
document_definition = {pk_field: i, 'id': str(uuid.uuid4()), distinct_field: j}
documents.append(created_collection.create_item(body=document_definition))
document_definition = {pk_field: i, 'id': str(uuid.uuid4())}
documents.append(created_collection.create_item(body=document_definition))
j -= 1
padded_docs = self.config._pad_with_none(documents, distinct_field)
self._validate_distinct(created_collection=created_collection, # returns {} and is right number
query='SELECT distinct c.%s from c' % distinct_field, # nosec
results=self.config._get_distinct_docs(padded_docs, distinct_field, None, False),
is_select=True,
fields=[distinct_field])
self._validate_distinct(created_collection=created_collection,
query='SELECT distinct c.%s, c.%s from c' % (distinct_field, pk_field), # nosec
results=self.config._get_distinct_docs(padded_docs, distinct_field, pk_field, False),
is_select=True,
fields=[distinct_field, pk_field])
self._validate_distinct(created_collection=created_collection,
query='SELECT distinct value c.%s from c' % distinct_field, # nosec
results=self.config._get_distinct_docs(padded_docs, distinct_field, None, True),
is_select=True,
fields=[distinct_field])
self._validate_distinct(created_collection=created_collection,
query='SELECT distinct c.%s from c' % different_field, # nosec
results=['None'],
is_select=True,
fields=[different_field])
self.created_db.delete_container(created_collection.id)
def _validate_distinct(self, created_collection, query, results, is_select, fields):
query_iterable = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
query_results = list(query_iterable)
self.assertEqual(len(results), len(query_results))
query_results_strings = []
result_strings = []
for i in range(len(results)):
query_results_strings.append(self.config._get_query_result_string(query_results[i], fields))
result_strings.append(str(results[i]))
if is_select:
query_results_strings = sorted(query_results_strings)
result_strings = sorted(result_strings)
self.assertListEqual(result_strings, query_results_strings)
def test_distinct_on_different_types_and_field_orders(self):
created_collection = self.created_db.create_container(
id="test-distinct-container-" + str(uuid.uuid4()),
partition_key=PartitionKey("/pk"),
offer_throughput=self.config.THROUGHPUT_FOR_5_PARTITIONS)
self.payloads = [
{'f1': 1, 'f2': 'value', 'f3': 100000000000000000, 'f4': [1, 2, '3'], 'f5': {'f6': {'f7': 2}}},
{'f2': '\'value', 'f4': [1.0, 2, '3'], 'f5': {'f6': {'f7': 2.0}}, 'f1': 1.0, 'f3': 100000000000000000.00},
{'f3': 100000000000000000.0, 'f5': {'f6': {'f7': 2}}, 'f2': '\'value', 'f1': 1, 'f4': [1, 2.0, '3']}
]
self.OriginalExecuteFunction = _QueryExecutionContextBase.__next__
_QueryExecutionContextBase.__next__ = self._MockNextFunction
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f1 from c",
expected_results=[1],
get_mock_result=lambda x, i: (None, x[i]["f1"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f2 from c",
expected_results=['value', '\'value'],
get_mock_result=lambda x, i: (None, x[i]["f2"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f2 from c order by c.f2",
expected_results=['\'value', 'value'],
get_mock_result=lambda x, i: (x[i]["f2"], x[i]["f2"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f3 from c",
expected_results=[100000000000000000],
get_mock_result=lambda x, i: (None, x[i]["f3"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f4 from c",
expected_results=[[1, 2, '3']],
get_mock_result=lambda x, i: (None, x[i]["f4"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct value c.f5.f6 from c",
expected_results=[{'f7': 2}],
get_mock_result=lambda x, i: (None, x[i]["f5"]["f6"])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct c.f1, c.f2, c.f3 from c",
expected_results=[self.payloads[0], self.payloads[1]],
get_mock_result=lambda x, i: (None, x[i])
)
self._validate_distinct_on_different_types_and_field_orders(
collection=created_collection,
query="Select distinct c.f1, c.f2, c.f3 from c order by c.f1",
expected_results=[self.payloads[0], self.payloads[1]],
get_mock_result=lambda x, i: (i, x[i])
)
_QueryExecutionContextBase.__next__ = self.OriginalExecuteFunction
_QueryExecutionContextBase.next = self.OriginalExecuteFunction
self.created_db.delete_container(created_collection.id)
def test_paging_with_continuation_token(self):
created_collection = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
document_definition = {'pk': 'pk', 'id': '1'}
created_collection.create_item(body=document_definition)
document_definition = {'pk': 'pk', 'id': '2'}
created_collection.create_item(body=document_definition)
query = 'SELECT * from c'
query_iterable = created_collection.query_items(
query=query,
partition_key='pk',
max_item_count=1
)
pager = query_iterable.by_page()
pager.next()
token = pager.continuation_token
second_page = list(pager.next())[0]
pager = query_iterable.by_page(token)
second_page_fetched_with_continuation_token = list(pager.next())[0]
self.assertEqual(second_page['id'], second_page_fetched_with_continuation_token['id'])
def test_cross_partition_query_with_continuation_token(self):
created_collection = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
document_definition = {'pk': 'pk1', 'id': str(uuid.uuid4())}
created_collection.create_item(body=document_definition)
document_definition = {'pk': 'pk2', 'id': str(uuid.uuid4())}
created_collection.create_item(body=document_definition)
query = 'SELECT * from c'
query_iterable = created_collection.query_items(
query=query,
enable_cross_partition_query=True,
max_item_count=1,
)
pager = query_iterable.by_page()
pager.next()
token = pager.continuation_token
second_page = list(pager.next())[0]
pager = query_iterable.by_page(token)
second_page_fetched_with_continuation_token = list(pager.next())[0]
self.assertEqual(second_page['id'], second_page_fetched_with_continuation_token['id'])
def _validate_distinct_on_different_types_and_field_orders(self, collection, query, expected_results,
get_mock_result):
self.count = 0
self.get_mock_result = get_mock_result
query_iterable = collection.query_items(query, enable_cross_partition_query=True)
results = list(query_iterable)
for i in range(len(expected_results)):
if isinstance(results[i], dict):
self.assertDictEqual(results[i], expected_results[i])
elif isinstance(results[i], list):
self.assertListEqual(results[i], expected_results[i])
else:
self.assertEqual(results[i], expected_results[i])
self.count = 0
def test_value_max_query(self):
container = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
query = "Select value max(c.version) FROM c where c.isComplete = true and c.lookupVersion = @lookupVersion"
query_results = container.query_items(query, parameters=[
{"name": "@lookupVersion", "value": "console_csat"} # cspell:disable-line
], enable_cross_partition_query=True)
self.assertListEqual(list(query_results), [None])
def test_continuation_token_size_limit_query(self):
container = self.created_db.get_container_client(self.config.TEST_MULTI_PARTITION_CONTAINER_ID)
for i in range(1, 1000):
container.create_item(body=dict(pk='123', id=str(uuid.uuid4()), some_value=str(i % 3)))
query = "Select * from c where c.some_value='2'"
response_query = container.query_items(query, partition_key='123', max_item_count=100,
continuation_token_limit=1)
pager = response_query.by_page()
pager.next()
token = pager.continuation_token
# Continuation token size should be below 1kb
self.assertLessEqual(len(token.encode('utf-8')), 1024)
pager.next()
token = pager.continuation_token
# verify a second time
self.assertLessEqual(len(token.encode('utf-8')), 1024)
def test_query_request_params_none_retry_policy(self):
created_collection = self.created_db.create_container(
"query_request_params_none_retry_policy_" + str(uuid.uuid4()), PartitionKey(path="/pk"))
items = [
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5}]
for item in items:
created_collection.create_item(body=item)
self.OriginalExecuteFunction = retry_utility.ExecuteFunction
# Test session retry will properly push the exception when retries run out
retry_utility.ExecuteFunction = self._MockExecuteFunctionSessionRetry
try:
query = "SELECT * FROM c"
items = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
fetch_results = list(items)
except exceptions.CosmosHttpResponseError as e:
self.assertEqual(e.status_code, 404)
self.assertEqual(e.sub_status, 1002)
# Test endpoint discovery retry
retry_utility.ExecuteFunction = self._MockExecuteFunctionEndPointRetry
_endpoint_discovery_retry_policy.EndpointDiscoveryRetryPolicy.Max_retry_attempt_count = 3
_endpoint_discovery_retry_policy.EndpointDiscoveryRetryPolicy.Retry_after_in_milliseconds = 10
try:
query = "SELECT * FROM c"
items = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
fetch_results = list(items)
except exceptions.CosmosHttpResponseError as e:
self.assertEqual(e.status_code, http_constants.StatusCodes.FORBIDDEN)
self.assertEqual(e.sub_status, http_constants.SubStatusCodes.WRITE_FORBIDDEN)
_endpoint_discovery_retry_policy.EndpointDiscoveryRetryPolicy.Max_retry_attempt_count = 120
_endpoint_discovery_retry_policy.EndpointDiscoveryRetryPolicy.Retry_after_in_milliseconds = 1000
# Finally lets test timeout failover retry
retry_utility.ExecuteFunction = self._MockExecuteFunctionTimeoutFailoverRetry
try:
query = "SELECT * FROM c"
items = created_collection.query_items(
query=query,
enable_cross_partition_query=True
)
fetch_results = list(items)
except exceptions.CosmosHttpResponseError as e:
self.assertEqual(e.status_code, http_constants.StatusCodes.REQUEST_TIMEOUT)
retry_utility.ExecuteFunction = self.OriginalExecuteFunction
retry_utility.ExecuteFunction = self.OriginalExecuteFunction
self.created_db.delete_container(created_collection.id)
def _MockExecuteFunctionSessionRetry(self, function, *args, **kwargs):
if args:
if args[1].operation_type == 'SqlQuery':
ex_to_raise = exceptions.CosmosHttpResponseError(status_code=http_constants.StatusCodes.NOT_FOUND,
message="Read Session is Not Available")
ex_to_raise.sub_status = http_constants.SubStatusCodes.READ_SESSION_NOTAVAILABLE
raise ex_to_raise
return self.OriginalExecuteFunction(function, *args, **kwargs)
def _MockExecuteFunctionEndPointRetry(self, function, *args, **kwargs):
if args:
if args[1].operation_type == 'SqlQuery':
ex_to_raise = exceptions.CosmosHttpResponseError(status_code=http_constants.StatusCodes.FORBIDDEN,
message="End Point Discovery")
ex_to_raise.sub_status = http_constants.SubStatusCodes.WRITE_FORBIDDEN
raise ex_to_raise
return self.OriginalExecuteFunction(function, *args, **kwargs)
def _MockExecuteFunctionTimeoutFailoverRetry(self, function, *args, **kwargs):
if args:
if args[1].operation_type == 'SqlQuery':
ex_to_raise = exceptions.CosmosHttpResponseError(status_code=http_constants.StatusCodes.REQUEST_TIMEOUT,
message="Timeout Failover")
raise ex_to_raise
return self.OriginalExecuteFunction(function, *args, **kwargs)
def _MockNextFunction(self):
if self.count < len(self.payloads):
item, result = self.get_mock_result(self.payloads, self.count)
self.count += 1
if item is not None:
return {'orderByItems': [{'item': item}], '_rid': 'fake_rid', 'payload': result}
else:
return result
else:
raise StopIteration
if __name__ == "__main__":
unittest.main()
|