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
|
# The MIT License (MIT)
# Copyright (c) Microsoft Corporation. All rights reserved.
import unittest
import uuid
import pytest
import test_config
from azure.cosmos import CosmosClient
@pytest.mark.cosmosEmulator
class TestRegionalRoutingContext(unittest.TestCase):
host = test_config.TestConfig.host
masterKey = test_config.TestConfig.masterKey
TEST_DATABASE_ID = test_config.TestConfig.TEST_DATABASE_ID
TEST_CONTAINER_ID = test_config.TestConfig.TEST_SINGLE_PARTITION_CONTAINER_ID
@classmethod
def setUpClass(cls):
if (cls.masterKey == '[YOUR_KEY_HERE]' or
cls.host == '[YOUR_ENDPOINT_HERE]'):
raise Exception(
"You must specify your Azure Cosmos account values for "
"'masterKey' and 'host' at the top of this class to run the "
"tests.")
cls.client = CosmosClient(cls.host, cls.masterKey)
cls.created_database = cls.client.get_database_client(cls.TEST_DATABASE_ID)
cls.created_container = cls.created_database.get_container_client(cls.TEST_CONTAINER_ID)
def test_no_swaps_on_successful_request(self):
original_read_endpoint = (self.client.client_connection._global_endpoint_manager
.location_cache.get_read_regional_routing_context())
self.created_container.create_item(body={"id": str(uuid.uuid4())})
# Check for if there was a swap
self.assertEqual(original_read_endpoint,
self.client.client_connection._global_endpoint_manager
.location_cache.get_read_regional_routing_context())
self.assertEqual(original_read_endpoint,
self.client.client_connection._global_endpoint_manager
.location_cache.get_write_regional_routing_context())
|