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
|
# The MIT License (MIT)
# Copyright (c) Microsoft Corporation. All rights reserved.
import unittest
import pytest
import test_config
from azure.cosmos.aio import CosmosClient
@pytest.mark.cosmosEmulator
class TestUserAgentSuffixAsync(unittest.IsolatedAsyncioTestCase):
"""Python User Agent Suffix Tests.
"""
configs = test_config.TestConfig
host = configs.host
masterKey = configs.masterKey
TEST_DATABASE_ID = configs.TEST_DATABASE_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.")
async def test_user_agent_suffix_no_special_character_async(self):
user_agent_suffix = "TestUserAgent"
self.client = CosmosClient(self.host, self.masterKey, user_agent=user_agent_suffix)
self.created_database = self.client.get_database_client(test_config.TestConfig.TEST_DATABASE_ID)
read_result = await self.created_database.read()
assert read_result['id'] == self.created_database.id
await self.client.close()
async def test_user_agent_suffix_special_character_async(self):
user_agent_suffix = "TéstUserAgent's" # cspell:disable-line
self.client = CosmosClient(self.host, self.masterKey, user_agent=user_agent_suffix)
self.created_database = self.client.get_database_client(test_config.TestConfig.TEST_DATABASE_ID)
read_result = await self.created_database.read()
assert read_result['id'] == self.created_database.id
await self.client.close()
async def test_user_agent_suffix_unicode_character_async(self):
user_agent_suffix = "UnicodeCharé±€InUserAgent"
self.client = CosmosClient(self.host, self.masterKey, user_agent=user_agent_suffix)
self.created_database = self.client.get_database_client(test_config.TestConfig.TEST_DATABASE_ID)
read_result = await self.created_database.read()
assert read_result['id'] == self.created_database.id
await self.client.close()
async def test_user_agent_suffix_space_character_async(self):
user_agent_suffix = "UserAgent with space$%_^()*&"
self.client = CosmosClient(self.host, self.masterKey, user_agent=user_agent_suffix)
self.created_database = self.client.get_database_client(test_config.TestConfig.TEST_DATABASE_ID)
read_result = await self.created_database.read()
assert read_result['id'] == self.created_database.id
await self.client.close()
if __name__ == "__main__":
unittest.main()
|