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
|
# The MIT License (MIT)
# Copyright (c) Microsoft Corporation. All rights reserved.
import unittest
import uuid
import pytest
import azure.cosmos.cosmos_client as cosmos_client
import test_config
from azure.cosmos import DatabaseProxy
from azure.cosmos.partition_key import PartitionKey
import azure.cosmos.exceptions as exceptions
@pytest.mark.cosmosQuery
class TestComputedPropertiesQuery(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
masterKey = config.masterKey
connectionPolicy = config.connectionPolicy
TEST_DATABASE_ID = config.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.")
cls.client = cosmos_client.CosmosClient(cls.host, cls.masterKey)
cls.client.create_database_if_not_exists(cls.TEST_DATABASE_ID)
cls.created_db = cls.client.get_database_client(cls.TEST_DATABASE_ID)
cls.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'}
]
cls.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"}]
def computedPropertiesTestCases(self, created_collection):
# Check that computed properties were properly sent
self.assertListEqual(self.computed_properties, created_collection.read()["computedProperties"])
# Test 0: Negative test, test if using non-existent computed property
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_upper = "GROUP2"',
partition_key="test"))
self.assertEqual(len(queried_items), 0)
# Test 1: Test first computed property
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_lower = "group1"', partition_key="test"))
self.assertEqual(len(queried_items), 5)
# Test 1 Negative: Test if using non-existent string in group property returns nothing
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_lower = "group4"', partition_key="test"))
self.assertEqual(len(queried_items), 0)
# Test 2: Test second computed property
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_power = 25', partition_key="test"))
self.assertEqual(len(queried_items), 7)
# Test 2 Negative: Test Non-Existent POWER
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_power = 16', partition_key="test"))
self.assertEqual(len(queried_items), 0)
# Test 3: Test Third Computed Property
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_str_len = 9', partition_key="test"))
self.assertEqual(len(queried_items), 2)
# Test 3 Negative: Test Str length that isn't there
queried_items = list(
created_collection.query_items(query='Select * from c Where c.cp_str_len = 3', partition_key="test"))
self.assertEqual(len(queried_items), 0)
def test_computed_properties_query(self):
created_collection = 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:
created_collection.create_item(body=item)
self.computedPropertiesTestCases(created_collection)
self.created_db.delete_container(created_collection.id)
def test_replace_with_same_computed_properties(self):
created_collection = self.created_db.create_container(
id="computed_properties_query_test_" + str(uuid.uuid4()),
partition_key=PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
created_collection.create_item(body=item)
# Check that computed properties were properly sent
self.assertListEqual(self.computed_properties, created_collection.read()["computedProperties"])
replaced_collection= self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties= self.computed_properties)
self.computedPropertiesTestCases(replaced_collection)
self.created_db.delete_container(replaced_collection.id)
def test_replace_without_computed_properties(self):
created_collection = self.created_db.create_container(
id="computed_properties_query_test_" + str(uuid.uuid4()),
partition_key=PartitionKey(path="/pk"))
# Create Items
for item in self.items:
created_collection.create_item(body=item)
# Replace Container
replaced_collection= self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties= self.computed_properties
)
self.computedPropertiesTestCases(replaced_collection)
self.created_db.delete_container(replaced_collection.id)
def test_replace_with_new_computed_properties(self):
created_collection = self.created_db.create_container(
id="computed_properties_query_test_" + str(uuid.uuid4()),
partition_key=PartitionKey(path="/pk"),
computed_properties=self.computed_properties)
# Create Items
for item in self.items:
created_collection.create_item(body=item)
# Check that computed properties were properly sent
self.assertListEqual(self.computed_properties, created_collection.read()["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 = self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties=new_computed_properties
)
# Check that computed properties were properly sent to replaced container
self.assertListEqual(new_computed_properties, replaced_collection.read()["computedProperties"])
# Test 1: Test first computed property
queried_items = list(
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 = list(
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 = list(
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 = list(
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)
def test_replace_with_incorrect_computed_properties(self):
created_collection = self.created_db.create_container(
id="computed_properties_query_test_" + str(uuid.uuid4()),
partition_key=PartitionKey(path="/pk"))
# Create Items
for item in self.items:
created_collection.create_item(body=item)
computed_properties = {'name': "cp_lower", 'query': "SELECT VALUE LOWER(c.db_group) FROM c"}
try:
# Replace Container with wrong type for computed_properties
self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"),
computed_properties= 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
def test_replace_with_remove_computed_properties_(self):
created_collection = 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:
created_collection.create_item(body=item)
# Check if computed properties were set
container = created_collection.read()
assert self.computed_properties == container["computedProperties"]
# Replace Container
replaced_collection = self.created_db.replace_container(
container=created_collection.id,
partition_key=PartitionKey(path="/pk"))
# Check if computed properties were not set
container = replaced_collection.read()
# If keyError is not raised the test will fail
with pytest.raises(KeyError):
computed_properties = container["computedProperties"]
if __name__ == "__main__":
unittest.main()
|