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
|
#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 unittest
import pytest
from azure.cosmos._routing.routing_map_provider import SmartRoutingMapProvider
from azure.cosmos._routing.routing_map_provider import CollectionRoutingMap
from azure.cosmos._routing import routing_range as routing_range
pytestmark = pytest.mark.cosmosEmulator
@pytest.mark.usefixtures("teardown")
class RoutingMapProviderTests(unittest.TestCase):
class MockedCosmosClientConnection(object):
def __init__(self, partition_key_ranges):
self.partition_key_ranges = partition_key_ranges
def _ReadPartitionKeyRanges(self, collection_link):
return self.partition_key_ranges
def setUp(self):
self.partition_key_ranges = [{u'id': u'0', u'minInclusive': u'', u'maxExclusive': u'05C1C9CD673398'}, {u'id': u'1', u'minInclusive': u'05C1C9CD673398', u'maxExclusive': u'05C1D9CD673398'}, {u'id': u'2', u'minInclusive': u'05C1D9CD673398', u'maxExclusive': u'05C1E399CD6732'}, {u'id': u'3', u'minInclusive': u'05C1E399CD6732', u'maxExclusive': u'05C1E9CD673398'}, {u'id': u'4', u'minInclusive': u'05C1E9CD673398', u'maxExclusive': u'FF'}]
self.smart_routing_map_provider = self.instantiate_smart_routing_map_provider(self.partition_key_ranges)
partitionRangeWithInfo = map(lambda r: (r, True), self.partition_key_ranges)
self.cached_collection_routing_map = CollectionRoutingMap.CompleteRoutingMap(partitionRangeWithInfo, 'sample collection id')
def instantiate_smart_routing_map_provider(self, partition_key_ranges):
client = RoutingMapProviderTests.MockedCosmosClientConnection(partition_key_ranges)
return SmartRoutingMapProvider(client)
def test_full_range(self):
# query range is the whole partition key range
pkRange = routing_range.Range("", "FF", True, False)
overlapping_partition_key_ranges = self.get_overlapping_ranges([pkRange])
self.assertEqual(len(overlapping_partition_key_ranges), len(self.partition_key_ranges))
self.assertEqual(overlapping_partition_key_ranges, self.partition_key_ranges)
pkRange = routing_range.Range("", "FF", False, False)
overlapping_partition_key_ranges = self.get_overlapping_ranges([pkRange])
self.assertEqual(overlapping_partition_key_ranges, self.partition_key_ranges)
self.assertEqual(self.cached_collection_routing_map.get_overlapping_ranges([pkRange]), self.partition_key_ranges)
def test_empty_ranges(self):
# query range is the whole partition key range
pkRange = routing_range.Range("", "FF", True, False)
overlapping_partition_key_ranges = self.get_overlapping_ranges([pkRange])
self.assertEqual(len(overlapping_partition_key_ranges), len(self.partition_key_ranges))
self.assertEqual(overlapping_partition_key_ranges, self.partition_key_ranges)
# query range list is empty
overlapping_partition_key_ranges = self.get_overlapping_ranges([])
self.assertEqual(len(overlapping_partition_key_ranges), 0)
# validate the overlaping partition key ranges results for empty ranges is empty
empty_start_range = routing_range.Range("", "", False, True)
empty_end_range = routing_range.Range("FF", "FF", False, True)
empty_range = routing_range.Range("AA", "AA", False, True)
self.validate_empty_query_ranges([empty_range], [empty_start_range], [empty_end_range],
[empty_start_range, empty_range], [empty_start_range, empty_end_range], [empty_range, empty_end_range],
[empty_range, empty_range, empty_end_range])
def test_bad_overlapping_query_ranges(self):
# they share AA point
r1 = routing_range.Range("", "AA", True, True)
r2 = routing_range.Range("AA", "FF", True, False)
def func_one_point_overlap():
self.smart_routing_map_provider.get_overlapping_ranges("sample collection id", [r1, r2])
self.assertRaises(ValueError, func_one_point_overlap)
# overlapping range
r1 = routing_range.Range("", "AB", True, False)
r2 = routing_range.Range("AA", "FA", True, False)
def func_overlap():
self.smart_routing_map_provider.get_overlapping_ranges("sample collection id", [r1, r2])
self.assertRaises(ValueError, func_overlap)
r1 = routing_range.Range("AB", "AC", True, False)
r1 = routing_range.Range("AA", "AB", True, False)
def func_non_sorted():
self.smart_routing_map_provider.get_overlapping_ranges("sample collection id", [r1, r2])
self.assertRaises(ValueError, func_overlap)
def test_empty_ranges_are_thrown_away(self):
e1 = routing_range.Range("", "", True, False)
r1 = routing_range.Range("", "AB", True, False)
e2 = routing_range.Range("AB", "AB", True, False)
r2 = routing_range.Range("AB", "AC", True, False)
e3 = routing_range.Range("AC", "AC", True, False)
e4 = routing_range.Range("AD", "AD", True, False)
self.validate_overlapping_ranges_results([e1, r1, e2, r2, e3, e4], self.get_overlapping_ranges([r1, r2]))
self.validate_against_cached_collection_results([e1, r1, e2, r2, e3, e4])
def test_simple(self):
r = routing_range.Range("AB", "AC", True, False)
self.validate_against_cached_collection_results([r])
ranges = [
routing_range.Range("0000000040", "0000000045", True, False),
routing_range.Range("0000000045", "0000000046", True, False),
routing_range.Range("0000000046", "0000000050", True, False)
]
self.validate_against_cached_collection_results(ranges)
def test_simple_boundary(self):
ranges = [
routing_range.Range("05C1C9CD673398", "05C1D9CD673398", True, False),
]
self.validate_against_cached_collection_results(ranges)
self.validate_overlapping_ranges_results(ranges, self.partition_key_ranges[1:2])
def test_two_adjacent_boundary(self):
ranges = [
# self.partition_key_ranges[1]
routing_range.Range("05C1C9CD673398", "05C1D9CD673398", True, False),
# self.partition_key_ranges[2]
routing_range.Range("05C1D9CD673398", "05C1D9CD673399", True, False),
]
self.validate_against_cached_collection_results(ranges)
self.validate_overlapping_ranges_results(ranges, self.partition_key_ranges[1:3])
def test_two_ranges_in_one_partition_key_range(self):
# two ranges fall in the same partition key range
ranges = [
routing_range.Range("05C1C9CD673400", "05C1C9CD673401", True, False),
routing_range.Range("05C1C9CD673402", "05C1C9CD673403", True, False),
]
self.validate_against_cached_collection_results(ranges)
self.validate_overlapping_ranges_results(ranges, self.partition_key_ranges[1:2])
def test_complex(self):
ranges = [
# all are covered by self.partition_key_ranges[1]
routing_range.Range("05C1C9CD673398", "05C1D9CD673391", True, False),
routing_range.Range("05C1D9CD673391", "05C1D9CD673392", True, False),
routing_range.Range("05C1D9CD673393", "05C1D9CD673395", True, False),
routing_range.Range("05C1D9CD673395", "05C1D9CD673395", True, False),
# all are covered by self.partition_key_ranges[4]]
routing_range.Range("05C1E9CD673398", "05C1E9CD673401", True, False),
routing_range.Range("05C1E9CD673402", "05C1E9CD673403", True, False),
# empty range
routing_range.Range("FF", "FF", True, False),
]
self.validate_against_cached_collection_results(ranges)
self.validate_overlapping_ranges_results(ranges, [self.partition_key_ranges[1], self.partition_key_ranges[4]])
def validate_against_cached_collection_results(self, queryRanges):
# validates the results of smart routing map provider against the results of cached collection map
overlapping_partition_key_ranges = self.get_overlapping_ranges(queryRanges)
self.assertEqual(overlapping_partition_key_ranges, self.cached_collection_routing_map.get_overlapping_ranges(queryRanges))
def validate_overlapping_ranges_results(self, queryRanges, expected_overlapping_partition_key_ranges):
overlapping_partition_key_ranges = self.get_overlapping_ranges(queryRanges)
self.assertEqual(overlapping_partition_key_ranges, expected_overlapping_partition_key_ranges)
def validate_empty_query_ranges(self, smart_routing_map_provider, *queryRangesList):
for queryRanges in queryRangesList:
self.validate_overlapping_ranges_results(queryRanges, [])
def get_overlapping_ranges(self, queryRanges):
return self.smart_routing_map_provider.get_overlapping_ranges("sample collection id", queryRanges)
if __name__ == "__main__":
#import sys;sys.argv = ['', 'Test.testName']
unittest.main()
|