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
|
# The MIT License (MIT)
# Copyright (c) Microsoft Corporation. All rights reserved.
import unittest
import uuid
import pytest
import test_config
from azure.cosmos.aio import CosmosClient, DatabaseProxy, ContainerProxy
from azure.cosmos.partition_key import PartitionKey
import azure.cosmos.exceptions as exceptions
@pytest.mark.cosmosQuery
class TestComputedPropertiesQueryAsync(unittest.IsolatedAsyncioTestCase):
"""Test to ensure escaping of non-ascii characters from partition key"""
created_db: DatabaseProxy = None
created_container: ContainerProxy = None
client: CosmosClient = None
config = test_config.TestConfig
TEST_CONTAINER_ID = config.TEST_MULTI_PARTITION_CONTAINER_ID
TEST_DATABASE_ID = config.TEST_DATABASE_ID
host = config.host
masterKey = config.masterKey
connectionPolicy = config.connectionPolicy
@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 asyncSetUp(self):
self.client = CosmosClient(self.host, self.masterKey)
self.created_db = self.client.get_database_client(self.TEST_DATABASE_ID)
self.items = [
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'prefixOne', 'db_group': 'GroUp1'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'prefixTwo', 'db_group': 'GrOUp1'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'randomWord1', 'db_group': 'GroUp2'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'randomWord2', 'db_group': 'groUp1'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'randomWord3', 'db_group': 'GroUp3'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'randomWord4', 'db_group': 'GrOUP1'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 5, 'stringProperty': 'randomWord5', 'db_group': 'GroUp2'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 0, 'stringProperty': 'randomWord6', 'db_group': 'group1'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 3, 'stringProperty': 'randomWord7', 'db_group': 'group2'},
{'id': str(uuid.uuid4()), 'pk': 'test', 'val': 2, 'stringProperty': 'randomWord8', 'db_group': 'GroUp3'}
]
self.computed_properties = [{'name': "cp_lower", 'query': "SELECT VALUE LOWER(c.db_group) FROM c"},
{'name': "cp_power", 'query': "SELECT VALUE POWER(c.val, 2) FROM c"},
{'name': "cp_str_len", 'query': "SELECT VALUE LENGTH(c.stringProperty) FROM c"}]
async def asyncTearDown(self):
await self.client.close()
async def computedPropertiesTestCases(self, created_collection):
# Check if computed properties were set
container = await created_collection.read()
assert self.computed_properties == container["computedProperties"]
# Test 0: Negative test, test if using non-existent computed property
queried_items = [q async for q in
created_collection.query_items(query='Select * from c Where c.cp_upper = "GROUP2"',
partition_key="test")]
assert len(queried_items) == 0
# Test 1: Test first computed property
queried_items = [q async for q in
created_collection.query_items(query='Select * from c Where c.cp_lower = "group1"',
partition_key="test")]
assert len(queried_items) == 5
# Test 1 Negative: Test if using non-existent string in group property returns nothing
queried_items = [q async for q in
created_collection.query_items(query='Select * from c Where c.cp_lower = "group4"',
partition_key="test")]
assert len(queried_items) == 0
# Test 2: Test second computed property
queried_items = [q async for q in created_collection.query_items(query='Select * from c Where c.cp_power = 25',
partition_key="test")]
assert len(queried_items) == 7
# Test 2 Negative: Test Non-Existent POWER
queried_items = [q async for q in created_collection.query_items(query='Select * from c Where c.cp_power = 16',
partition_key="test")]
assert len(queried_items) == 0
# Test 3: Test Third Computed Property
queried_items = [q async for q in created_collection.query_items(query='Select * from c Where c.cp_str_len = 9',
partition_key="test")]
assert len(queried_items) == 2
# Test 3 Negative: Test Str length that isn't there
queried_items = [q async for q in created_collection.query_items(query='Select * from c Where c.cp_str_len = 3',
partition_key="test")]
assert len(queried_items) == 0
async def test_computed_properties_query_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
await self.computedPropertiesTestCases(created_collection)
self.created_db.delete_container(created_collection.id)
async def test_replace_with_same_computed_properties_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
# Replace Container
replaced_collection = await self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties=self.computed_properties
)
await self.computedPropertiesTestCases(replaced_collection)
self.created_db.delete_container(created_collection.id)
async def test_replace_without_computed_properties_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"))
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
# Replace Container
replaced_collection = await self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties=self.computed_properties
)
await self.computedPropertiesTestCases(replaced_collection)
self.created_db.delete_container(created_collection.id)
async def test_replace_with_new_computed_properties_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
# Check if computed properties were set
container = await created_collection.read()
assert self.computed_properties == container["computedProperties"]
new_computed_properties = [{'name': "cp_upper", 'query': "SELECT VALUE UPPER(c.db_group) FROM c"},
{'name': "cp_len", 'query': "SELECT VALUE LENGTH(c.stringProperty) FROM c"}]
# Replace Container
replaced_collection = await self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties=new_computed_properties
)
# Check if computed properties were set
container = await replaced_collection.read()
assert new_computed_properties == container["computedProperties"]
# Test 1: Test first computed property
queried_items = [q async for q in
replaced_collection.query_items(query='Select * from c Where c.cp_upper = "GROUP2"',
partition_key="test")]
self.assertEqual(len(queried_items), 3)
# Test 1 Negative: Test if using non-existent computed property name returns nothing
queried_items = [q async for q in
replaced_collection.query_items(query='Select * from c Where c.cp_lower = "group1"',
partition_key="test")]
self.assertEqual(len(queried_items), 0)
# Test 2: Test Second Computed Property
queried_items = [q async for q in
replaced_collection.query_items(query='Select * from c Where c.cp_len = 9',
partition_key="test")]
self.assertEqual(len(queried_items), 2)
# Test 2 Negative: Test Str length using old computed properties name
queried_items = [q async for q in
replaced_collection.query_items(query='Select * from c Where c.cp_str_len = 9',
partition_key="test")]
self.assertEqual(len(queried_items), 0)
self.created_db.delete_container(created_collection.id)
async def test_replace_with_incorrect_computed_properties_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
# Check if computed properties were set
container = await created_collection.read()
assert self.computed_properties == container["computedProperties"]
new_computed_properties = {'name': "cp_lower", 'query': "SELECT VALUE LOWER(c.db_group) FROM c"}
try:
# Replace Container with wrong type for computed_properties
await self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties=new_computed_properties
)
pytest.fail("Container creation should have failed for invalid input.")
except exceptions.CosmosHttpResponseError as e:
assert e.status_code == 400
assert "One of the specified inputs is invalid" in e.http_error_message
async def test_replace_with_remove_computed_properties_async(self):
created_collection = await self.created_db.create_container(
"computed_properties_query_test_" + str(uuid.uuid4()),
PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
await created_collection.create_item(body=item)
# Check if computed properties were set
container = await created_collection.read()
assert self.computed_properties == container["computedProperties"]
# Replace Container
replaced_collection = await self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"))
# Check if computed properties were not set
container = await replaced_collection.read()
# If keyError is not raised the test will fail
with pytest.raises(KeyError):
computed_properties = container["computedProperties"]
self.created_db.delete_container(created_collection.id)
if __name__ == '__main__':
unittest.main()
|