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
|
#!/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 wiredtiger, wttest
from wtdataset import SimpleDataSet, ComplexDataSet, simple_key, simple_value
from wtscenario import make_scenarios
# test_cursor_random.py
# Cursor next_random operations
class test_cursor_random(wttest.WiredTigerTestCase):
types = [
('file', dict(type='file:random', dataset=SimpleDataSet)),
('table', dict(type='table:random', dataset=ComplexDataSet))
]
config = [
('sample', dict(config='next_random=true,next_random_sample_size=35')),
('not-sample', dict(config='next_random=true'))
]
scenarios = make_scenarios(types, config)
# Check that opening a random cursor on a row-store returns not-supported
# for methods other than next, reconfigure and reset, and next returns
# not-found.
def test_cursor_random(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None, self.config)
msg = "/Unsupported cursor/"
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.compare(cursor), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.insert(), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.prev(), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.remove(), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.search(), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.search_near(), msg)
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, lambda: cursor.update(), msg)
self.assertTrue(cursor.next(), wiredtiger.WT_NOTFOUND)
self.assertEquals(cursor.reconfigure(), 0)
self.assertEquals(cursor.reset(), 0)
cursor.close()
# Check that next_random fails with an empty tree, repeatedly.
def test_cursor_random_empty(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None, self.config)
for i in range(1,5):
self.assertTrue(cursor.next(), wiredtiger.WT_NOTFOUND)
cursor.close
# Check that next_random works with a single value, repeatedly.
def test_cursor_random_single_record(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None)
cursor['AAA'] = 'BBB'
cursor.close()
cursor = self.session.open_cursor(uri, None, self.config)
for i in range(1,5):
self.assertEquals(cursor.next(), 0)
self.assertEquals(cursor.get_key(), 'AAA')
cursor.close
# Check that next_random works in the presence of a larger set of values,
# where the values are in an insert list.
def test_cursor_random_multiple_insert_records(self):
uri = self.type
ds = self.dataset(self, uri, 100,
config='allocation_size=512,leaf_page_max=512')
ds.populate()
# In a insert list, next_random always selects the middle key/value
# pair, all we can do is confirm cursor.next works.
cursor = self.session.open_cursor(uri, None, self.config)
self.assertEqual(cursor.next(), 0)
# Check that next_random works in the presence of a larger set of values,
# where the values are in a disk format page.
def cursor_random_multiple_page_records(self, reopen):
uri = self.type
ds = self.dataset(self, uri, 10000,
config='allocation_size=512,leaf_page_max=512')
ds.populate()
# Optionally close the connection so everything is forced to disk,
# insert lists are an entirely different path in the code.
if reopen:
self.reopen_conn()
cursor = self.session.open_cursor(uri, None, self.config)
last = ''
match = 0
for i in range(1,10):
self.assertEqual(cursor.next(), 0)
current = cursor.get_key()
if current == last:
match += 1
last = current
self.assertLess(match, 5,
'next_random did not return random records, too many matches found')
def test_cursor_random_multiple_page_records_reopen(self):
self.cursor_random_multiple_page_records(1)
def test_cursor_random_multiple_page_records(self):
self.cursor_random_multiple_page_records(0)
# Check that next_random fails in the presence of a set of values, some of
# which are deleted.
def test_cursor_random_deleted_partial(self):
uri = self.type
ds = self.dataset(self, uri, 10000,
config='allocation_size=512,leaf_page_max=512')
ds.populate()
# Close the connection so everything is forced to disk.
self.reopen_conn()
start = self.session.open_cursor(uri, None)
start.set_key(ds.key(10))
end = self.session.open_cursor(uri, None)
end.set_key(ds.key(10000-10))
self.session.truncate(None, start, end, None)
self.assertEqual(start.close(), 0)
self.assertEqual(end.close(), 0)
cursor = self.session.open_cursor(uri, None, self.config)
for i in range(1,10):
self.assertEqual(cursor.next(), 0)
# Check that next_random fails in the presence of a set of values, all of
# which are deleted.
def test_cursor_random_deleted_all(self):
uri = self.type
ds = self.dataset(self, uri, 10000,
config='allocation_size=512,leaf_page_max=512')
ds.populate()
# Close the connection so everything is forced to disk.
self.reopen_conn()
self.session.truncate(uri, None, None, None)
cursor = self.session.open_cursor(uri, None, self.config)
for i in range(1,10):
self.assertTrue(cursor.next(), wiredtiger.WT_NOTFOUND)
# Check that opening a random cursor on column-store returns not-supported.
class test_cursor_random_column(wttest.WiredTigerTestCase):
scenarios = make_scenarios([
('file', dict(uri='file:random')),
('table', dict(uri='table:random'))
])
def test_cursor_random_column(self):
self.session.create(self.uri, 'key_format=r,value_format=S')
msg = '/next_random .* not supported/'
self.assertRaisesWithMessage(wiredtiger.WiredTigerError, lambda:
self.session.open_cursor(self.uri, None, "next_random=true"), msg)
# Check next_random works in the presence a set of updates, some or all of
# which are invisible to the cursor.
class test_cursor_random_invisible(wttest.WiredTigerTestCase):
types = [
('file', dict(type='file:random')),
('table', dict(type='table:random'))
]
config = [
('sample', dict(config='next_random=true,next_random_sample_size=35')),
('not-sample', dict(config='next_random=true'))
]
scenarios = make_scenarios(types, config)
def test_cursor_random_invisible_all(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None)
# Start a transaction.
self.session.begin_transaction()
for i in range(1, 100):
cursor[simple_key(cursor, i)] = simple_value(cursor, i)
# Open another session, the updates won't yet be visible, we shouldn't
# find anything at all.
s = self.conn.open_session()
cursor = s.open_cursor(uri, None, self.config)
self.assertEqual(cursor.next(), wiredtiger.WT_NOTFOUND)
def test_cursor_random_invisible_after(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None)
# Insert a single leading record.
cursor[simple_key(cursor, 1)] = simple_value(cursor, 1)
# Start a transaction.
self.session.begin_transaction()
for i in range(2, 100):
cursor[simple_key(cursor, i)] = simple_value(cursor, i)
# Open another session, the updates won't yet be visible, we should
# return the only possible record.
s = self.conn.open_session()
cursor = s.open_cursor(uri, None, self.config)
self.assertEquals(cursor.next(), 0)
self.assertEqual(cursor.get_key(), simple_key(cursor, 1))
def test_cursor_random_invisible_before(self):
uri = self.type
self.session.create(uri, 'key_format=S,value_format=S')
cursor = self.session.open_cursor(uri, None)
# Insert a single leading record.
cursor[simple_key(cursor, 99)] = simple_value(cursor, 99)
# Start a transaction.
self.session.begin_transaction()
for i in range(2, 100):
cursor[simple_key(cursor, i)] = simple_value(cursor, i)
# Open another session, the updates won't yet be visible, we should
# return the only possible record.
s = self.conn.open_session()
cursor = s.open_cursor(uri, None, self.config)
self.assertEquals(cursor.next(), 0)
self.assertEqual(cursor.get_key(), simple_key(cursor, 99))
if __name__ == '__main__':
wttest.run()
|