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
|
#!/usr/bin/env python
#
# Public Domain 2014-2019 MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
# of the public at large and to the detriment of our heirs and
# successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this
# software under copyright law.
#
# 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 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 wiredtiger, wttest, run
# test_collator.py
# Test indices using a custom extractor and collator.
class test_collator(wttest.WiredTigerTestCase):
"""
Test indices with a custom extractor to create an index,
with our own collator.
Our set of rows looks like a multiplication table:
row '0': '0,0,0,0'
row '1': '0,1,2,3'
row '2': '0,2,4,6'
with the twist that entries are mod 100. So, looking further:
row '40': '0,40,80,20'
Each column is placed into its own index. Our collator reverses
the values.
"""
nentries = 100
nindices = 4
def conn_extensions(self, extlist):
extlist.skip_if_missing = True
extlist.extension('extractors', 'csv')
extlist.extension('collators', 'revint')
def create_indices(self):
# Create self.nindices index files, each with a column from the CSV
for i in range(0, self.nindices):
si = str(i)
self.session.create('index:collator:x' + si,
'key_format=i,columns=(key),' +
'collator=revint,' +
'extractor=csv,app_metadata={"format" : "i",' +
'"field" : "' + si + '"}')
def drop_indices(self):
for i in range(0, self.nindices):
self.session.drop("index:collator:x" + str(i))
def csv(self, s, i):
return s.split(',')[i]
def expected_main_value(self, i):
return ','.join([str((i*j)%100) for j in range(0, self.nindices)])
# We split the population into two phases
# (in anticipation of future tests that create
# indices between the two population steps).
def populate(self):
cursor = self.session.open_cursor('table:collator', None, None)
for i in range(0, self.nentries):
cursor[i] = self.expected_main_value(i)
cursor.close()
def check_entries(self):
cursor = self.session.open_cursor('table:collator', None, None)
icursor = []
for i in range(0, self.nindices):
icursor.append(self.session.open_cursor('index:collator:x' + str(i),
None, None))
i = 0
for primkey, value in cursor:
# Check main table
expect = self.expected_main_value(i)
self.assertEqual(i, primkey)
self.assertEqual(value, expect)
for idx in range(0, self.nindices):
c = icursor[idx]
indexkey = (i*idx)%100
c.set_key(indexkey)
self.assertEqual(c.search(), 0)
value = c.get_value()
key = c.get_key()
while value != expect and key == indexkey and \
self.csv(value, idx) == self.csv(expect, idx):
self.assertEqual(0, c.next())
value = c.get_value()
key = c.get_key()
self.assertEqual(value, expect)
i += 1
cursor.close()
self.assertEqual(self.nentries, i)
for i in range(0, self.nindices):
c = icursor[i]
c.reset()
expected = set(range(0, self.nentries))
for key, val in c:
primkey = int(val.split(',')[1])
expected.remove(primkey)
self.assertEquals(0, len(expected))
c.close()
def test_index(self):
self.session.create("table:collator", "key_format=i,value_format=S,"
"columns=(primarykey,value)")
self.create_indices()
self.populate()
self.check_entries()
# Drop and recreate all indices, everything should be there.
self.drop_indices()
self.create_indices()
self.check_entries()
if __name__ == '__main__':
wttest.run()
|