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
|
#The MIT License (MIT)
#Copyright (c) 2014 Microsoft Corporation
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is
#furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in all
#copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#SOFTWARE.
import os
import time
import uuid
import azure.cosmos.documents as documents
import azure.cosmos.errors as errors
from azure.cosmos.http_constants import StatusCodes
try:
import urllib3
urllib3.disable_warnings()
except:
print("no urllib3")
class _test_config(object):
#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Cosmos DB Emulator Key")]
masterKey = os.getenv('ACCOUNT_KEY', 'C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==')
host = os.getenv('ACCOUNT_HOST', 'https://localhost:443')
connectionPolicy = documents.ConnectionPolicy()
connectionPolicy.DisableSSLVerification = True
global_host = '[YOUR_GLOBAL_ENDPOINT_HERE]'
write_location_host = '[YOUR_WRITE_ENDPOINT_HERE]'
read_location_host = '[YOUR_READ_ENDPOINT_HERE]'
read_location2_host = '[YOUR_READ_ENDPOINT2_HERE]'
global_masterKey = '[YOUR_KEY_HERE]'
write_location = '[YOUR_WRITE_LOCATION_HERE]'
read_location = '[YOUR_READ_LOCATION_HERE]'
read_location2 = '[YOUR_READ_LOCATION2_HERE]'
THROUGHPUT_FOR_5_PARTITIONS = 30000
THROUGHPUT_FOR_1_PARTITION = 400
TEST_DATABASE_ID = "Python SDK Test Database " + str(uuid.uuid4())
TEST_COLLECTION_SINGLE_PARTITION_ID = "Single Partition Test Collection"
TEST_COLLECTION_MULTI_PARTITION_ID = "Multi Partition Test Collection"
TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_ID = "Multi Partition Test Collection With Custom PK"
TEST_COLLECTION_MULTI_PARTITION_PARTITION_KEY = "id"
TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_PARTITION_KEY = "pk"
TEST_DATABASE = None
TEST_COLLECTION_SINGLE_PARTITION = None
TEST_COLLECTION_MULTI_PARTITION = None
TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK = None
IS_MULTIMASTER_ENABLED = False
@classmethod
def create_database_if_not_exist(cls, client):
if cls.TEST_DATABASE is not None:
return cls.TEST_DATABASE
cls.try_delete_database(client)
cls.TEST_DATABASE = client.CreateDatabase({'id': cls.TEST_DATABASE_ID})
cls.IS_MULTIMASTER_ENABLED = client.GetDatabaseAccount()._EnableMultipleWritableLocations
return cls.TEST_DATABASE
@classmethod
def try_delete_database(cls, client):
try:
client.DeleteDatabase("dbs/" + cls.TEST_DATABASE_ID)
except errors.HTTPFailure as e:
if e.status_code != StatusCodes.NOT_FOUND:
raise e
@classmethod
def create_single_partition_collection_if_not_exist(cls, client):
if cls.TEST_COLLECTION_SINGLE_PARTITION is None:
cls.TEST_COLLECTION_SINGLE_PARTITION = cls.create_collection_with_required_throughput(client,
cls.THROUGHPUT_FOR_1_PARTITION, None)
cls.remove_all_documents(client, cls.TEST_COLLECTION_SINGLE_PARTITION,None)
return cls.TEST_COLLECTION_SINGLE_PARTITION
@classmethod
def create_multi_partition_collection_if_not_exist(cls, client):
if cls.TEST_COLLECTION_MULTI_PARTITION is None:
cls.TEST_COLLECTION_MULTI_PARTITION = cls.create_collection_with_required_throughput(client,
cls.THROUGHPUT_FOR_5_PARTITIONS, True)
cls.remove_all_documents(client, cls.TEST_COLLECTION_MULTI_PARTITION, True)
return cls.TEST_COLLECTION_MULTI_PARTITION
@classmethod
def create_multi_partition_collection_with_custom_pk_if_not_exist(cls, client):
if cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK is None:
cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK = cls.create_collection_with_required_throughput(client,
cls.THROUGHPUT_FOR_5_PARTITIONS, False)
cls.remove_all_documents(client, cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK, False)
return cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK
@classmethod
def create_collection_with_required_throughput(cls, client, throughput, use_id_as_partition_key):
database = cls.create_database_if_not_exist(client)
options = {'offerThroughput': throughput}
document_collection = {}
if throughput == cls.THROUGHPUT_FOR_1_PARTITION:
collection_id = cls.TEST_COLLECTION_SINGLE_PARTITION_ID
else:
if use_id_as_partition_key:
collection_id = cls.TEST_COLLECTION_MULTI_PARTITION_ID
partition_key = cls.TEST_COLLECTION_MULTI_PARTITION_PARTITION_KEY
else:
collection_id = cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_ID
partition_key = cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_PARTITION_KEY
document_collection['partitionKey'] = {'paths': ['/' + partition_key],'kind': 'Hash'}
document_collection['id'] = collection_id
document_collection = client.CreateContainer(database['_self'], document_collection, options)
return document_collection
@classmethod
def remove_all_documents(cls, client, document_collection, use_id_as_partition_key):
while True:
query_iterable = client.ReadItems(document_collection['_self'])
read_documents = list(query_iterable)
try:
for document in read_documents:
options = {}
if use_id_as_partition_key is not None:
if use_id_as_partition_key:
options['partitionKey'] = document[cls.TEST_COLLECTION_MULTI_PARTITION_PARTITION_KEY]
else:
if cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_PARTITION_KEY in document:
options['partitionKey'] = document[cls.TEST_COLLECTION_MULTI_PARTITION_WITH_CUSTOM_PK_PARTITION_KEY]
else:
options['partitionKey'] = {}
client.DeleteItem(document['_self'], options)
if cls.IS_MULTIMASTER_ENABLED:
# sleep to ensure deletes are propagated for multimaster enabled accounts
time.sleep(2)
break
except errors.HTTPFailure as e:
print("Error occurred while deleting documents:" + str(e) + " \nRetrying...")
|