2002-12-08 14:36:24 -04:00
|
|
|
import unittest
|
2021-10-22 11:14:58 -03:00
|
|
|
import dbm
|
2002-12-08 14:36:24 -04:00
|
|
|
import shelve
|
2020-10-29 06:44:35 -03:00
|
|
|
import pickle
|
2021-09-10 09:26:16 -03:00
|
|
|
import os
|
2020-10-29 06:44:35 -03:00
|
|
|
|
2020-07-06 06:15:08 -03:00
|
|
|
from test.support import os_helper
|
2011-02-22 20:46:28 -04:00
|
|
|
from collections.abc import MutableMapping
|
2008-05-26 13:32:26 -03:00
|
|
|
from test.test_dbm import dbm_iterator
|
2007-08-11 03:57:14 -03:00
|
|
|
|
|
|
|
def L1(s):
|
|
|
|
return s.decode("latin-1")
|
|
|
|
|
2008-02-04 18:07:15 -04:00
|
|
|
class byteskeydict(MutableMapping):
|
2007-08-11 03:57:14 -03:00
|
|
|
"Mapping that supports bytes keys"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.d = {}
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
return self.d[L1(key)]
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
self.d[L1(key)] = value
|
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
del self.d[L1(key)]
|
|
|
|
|
2008-02-04 18:07:15 -04:00
|
|
|
def __len__(self):
|
|
|
|
return len(self.d)
|
|
|
|
|
2007-08-11 03:57:14 -03:00
|
|
|
def iterkeys(self):
|
|
|
|
for k in self.d.keys():
|
2007-08-28 23:57:31 -03:00
|
|
|
yield k.encode("latin-1")
|
2007-08-11 03:57:14 -03:00
|
|
|
|
2008-02-04 18:07:15 -04:00
|
|
|
__iter__ = iterkeys
|
|
|
|
|
2007-08-11 03:57:14 -03:00
|
|
|
def keys(self):
|
|
|
|
return list(self.iterkeys())
|
|
|
|
|
|
|
|
def copy(self):
|
|
|
|
return byteskeydict(self.d)
|
|
|
|
|
2002-12-08 14:36:24 -04:00
|
|
|
|
|
|
|
class TestCase(unittest.TestCase):
|
2021-10-22 11:14:58 -03:00
|
|
|
dirname = os_helper.TESTFN
|
|
|
|
fn = os.path.join(os_helper.TESTFN, "shelftemp.db")
|
2007-05-18 18:57:09 -03:00
|
|
|
|
Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65209 | raymond.hettinger | 2008-07-23 19:08:18 -0500 (Wed, 23 Jul 2008) | 1 line
Finish-up the partial conversion from int to Py_ssize_t for deque indices and length.
........
r65210 | raymond.hettinger | 2008-07-23 19:53:49 -0500 (Wed, 23 Jul 2008) | 1 line
Parse to the correct datatype.
........
r65211 | benjamin.peterson | 2008-07-23 21:27:46 -0500 (Wed, 23 Jul 2008) | 1 line
fix spacing
........
r65212 | benjamin.peterson | 2008-07-23 21:31:28 -0500 (Wed, 23 Jul 2008) | 1 line
fix markup
........
r65213 | benjamin.peterson | 2008-07-23 21:45:37 -0500 (Wed, 23 Jul 2008) | 1 line
add some documentation for 2to3
........
r65214 | raymond.hettinger | 2008-07-24 00:38:48 -0500 (Thu, 24 Jul 2008) | 1 line
Finish conversion from int to Py_ssize_t.
........
r65215 | raymond.hettinger | 2008-07-24 02:04:55 -0500 (Thu, 24 Jul 2008) | 1 line
Convert from long to Py_ssize_t.
........
r65216 | georg.brandl | 2008-07-24 02:09:21 -0500 (Thu, 24 Jul 2008) | 2 lines
Fix indentation.
........
r65225 | benjamin.peterson | 2008-07-25 11:55:37 -0500 (Fri, 25 Jul 2008) | 1 line
teach .bzrignore about doc tools
........
r65226 | benjamin.peterson | 2008-07-25 12:02:11 -0500 (Fri, 25 Jul 2008) | 1 line
document default value for fillvalue
........
r65233 | raymond.hettinger | 2008-07-25 13:43:33 -0500 (Fri, 25 Jul 2008) | 1 line
Issue 1592: Better error reporting for operations on closed shelves.
........
r65239 | benjamin.peterson | 2008-07-25 16:59:53 -0500 (Fri, 25 Jul 2008) | 1 line
fix indentation
........
r65246 | andrew.kuchling | 2008-07-26 08:08:19 -0500 (Sat, 26 Jul 2008) | 1 line
This sentence continues to bug me; rewrite it for the second time
........
r65247 | andrew.kuchling | 2008-07-26 08:09:06 -0500 (Sat, 26 Jul 2008) | 1 line
Remove extra words
........
r65255 | skip.montanaro | 2008-07-26 19:49:02 -0500 (Sat, 26 Jul 2008) | 3 lines
Close issue 3437 - missing state change when Allow lines are processed.
Adds test cases which use Allow: as well.
........
r65256 | skip.montanaro | 2008-07-26 19:50:41 -0500 (Sat, 26 Jul 2008) | 2 lines
note robotparser bug fix.
........
2008-07-31 13:23:04 -03:00
|
|
|
def test_close(self):
|
|
|
|
d1 = {}
|
|
|
|
s = shelve.Shelf(d1, protocol=2, writeback=False)
|
|
|
|
s['key1'] = [1,2,3,4]
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4])
|
|
|
|
self.assertEqual(len(s), 1)
|
|
|
|
s.close()
|
|
|
|
self.assertRaises(ValueError, len, s)
|
|
|
|
try:
|
|
|
|
s['key1']
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
self.fail('Closed shelf should not find a key')
|
|
|
|
|
2021-09-10 09:26:16 -03:00
|
|
|
def test_open_template(self, filename=None, protocol=None):
|
2021-10-22 11:14:58 -03:00
|
|
|
os.mkdir(self.dirname)
|
|
|
|
self.addCleanup(os_helper.rmtree, self.dirname)
|
2021-09-10 09:26:16 -03:00
|
|
|
s = shelve.open(filename=filename if filename is not None else self.fn,
|
|
|
|
protocol=protocol)
|
2002-12-08 14:36:24 -04:00
|
|
|
try:
|
|
|
|
s['key1'] = (1,2,3,4)
|
|
|
|
self.assertEqual(s['key1'], (1,2,3,4))
|
|
|
|
finally:
|
2007-05-18 18:57:09 -03:00
|
|
|
s.close()
|
2002-12-08 14:36:24 -04:00
|
|
|
|
2021-09-10 09:26:16 -03:00
|
|
|
def test_ascii_file_shelf(self):
|
|
|
|
self.test_open_template(protocol=0)
|
|
|
|
|
2002-12-08 14:36:24 -04:00
|
|
|
def test_binary_file_shelf(self):
|
2021-09-10 09:26:16 -03:00
|
|
|
self.test_open_template(protocol=1)
|
2002-12-08 14:36:24 -04:00
|
|
|
|
2003-04-19 17:59:03 -03:00
|
|
|
def test_proto2_file_shelf(self):
|
2021-09-10 09:26:16 -03:00
|
|
|
self.test_open_template(protocol=2)
|
|
|
|
|
|
|
|
def test_pathlib_path_file_shelf(self):
|
|
|
|
self.test_open_template(filename=os_helper.FakePath(self.fn))
|
|
|
|
|
|
|
|
def test_bytes_path_file_shelf(self):
|
|
|
|
self.test_open_template(filename=os.fsencode(self.fn))
|
|
|
|
|
|
|
|
def test_pathlib_bytes_path_file_shelf(self):
|
|
|
|
self.test_open_template(filename=os_helper.FakePath(os.fsencode(self.fn)))
|
2003-04-19 17:59:03 -03:00
|
|
|
|
2002-12-08 14:36:24 -04:00
|
|
|
def test_in_memory_shelf(self):
|
2007-08-11 03:57:14 -03:00
|
|
|
d1 = byteskeydict()
|
2019-03-05 04:06:26 -04:00
|
|
|
with shelve.Shelf(d1, protocol=0) as s:
|
|
|
|
s['key1'] = (1,2,3,4)
|
|
|
|
self.assertEqual(s['key1'], (1,2,3,4))
|
2007-08-11 03:57:14 -03:00
|
|
|
d2 = byteskeydict()
|
2019-03-05 04:06:26 -04:00
|
|
|
with shelve.Shelf(d2, protocol=1) as s:
|
|
|
|
s['key1'] = (1,2,3,4)
|
|
|
|
self.assertEqual(s['key1'], (1,2,3,4))
|
2002-12-08 14:36:24 -04:00
|
|
|
|
|
|
|
self.assertEqual(len(d1), 1)
|
2007-08-28 23:57:31 -03:00
|
|
|
self.assertEqual(len(d2), 1)
|
|
|
|
self.assertNotEqual(d1.items(), d2.items())
|
2002-12-08 14:36:24 -04:00
|
|
|
|
2003-04-19 17:59:03 -03:00
|
|
|
def test_mutable_entry(self):
|
2007-08-11 03:57:14 -03:00
|
|
|
d1 = byteskeydict()
|
2019-03-05 04:06:26 -04:00
|
|
|
with shelve.Shelf(d1, protocol=2, writeback=False) as s:
|
|
|
|
s['key1'] = [1,2,3,4]
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4])
|
|
|
|
s['key1'].append(5)
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4])
|
2003-04-19 17:59:03 -03:00
|
|
|
|
2007-08-11 03:57:14 -03:00
|
|
|
d2 = byteskeydict()
|
2019-03-05 04:06:26 -04:00
|
|
|
with shelve.Shelf(d2, protocol=2, writeback=True) as s:
|
|
|
|
s['key1'] = [1,2,3,4]
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4])
|
|
|
|
s['key1'].append(5)
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4,5])
|
2003-04-19 17:59:03 -03:00
|
|
|
|
|
|
|
self.assertEqual(len(d1), 1)
|
|
|
|
self.assertEqual(len(d2), 1)
|
|
|
|
|
2010-12-04 07:12:43 -04:00
|
|
|
def test_keyencoding(self):
|
|
|
|
d = {}
|
|
|
|
key = 'Pöp'
|
|
|
|
# the default keyencoding is utf-8
|
|
|
|
shelve.Shelf(d)[key] = [1]
|
|
|
|
self.assertIn(key.encode('utf-8'), d)
|
|
|
|
# but a different one can be given
|
2011-02-25 11:42:01 -04:00
|
|
|
shelve.Shelf(d, keyencoding='latin-1')[key] = [1]
|
|
|
|
self.assertIn(key.encode('latin-1'), d)
|
2010-12-04 07:12:43 -04:00
|
|
|
# with all consequences
|
|
|
|
s = shelve.Shelf(d, keyencoding='ascii')
|
|
|
|
self.assertRaises(UnicodeEncodeError, s.__setitem__, key, [1])
|
|
|
|
|
2010-02-10 22:42:19 -04:00
|
|
|
def test_writeback_also_writes_immediately(self):
|
|
|
|
# Issue 5754
|
|
|
|
d = {}
|
|
|
|
key = 'key'
|
|
|
|
encodedkey = key.encode('utf-8')
|
2019-03-05 04:06:26 -04:00
|
|
|
with shelve.Shelf(d, writeback=True) as s:
|
|
|
|
s[key] = [1]
|
|
|
|
p1 = d[encodedkey] # Will give a KeyError if backing store not updated
|
|
|
|
s['key'].append(2)
|
2010-02-10 22:42:19 -04:00
|
|
|
p2 = d[encodedkey]
|
|
|
|
self.assertNotEqual(p1, p2) # Write creates new object in store
|
|
|
|
|
2012-10-06 07:52:19 -03:00
|
|
|
def test_with(self):
|
|
|
|
d1 = {}
|
|
|
|
with shelve.Shelf(d1, protocol=2, writeback=False) as s:
|
|
|
|
s['key1'] = [1,2,3,4]
|
|
|
|
self.assertEqual(s['key1'], [1,2,3,4])
|
|
|
|
self.assertEqual(len(s), 1)
|
|
|
|
self.assertRaises(ValueError, len, s)
|
|
|
|
try:
|
|
|
|
s['key1']
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
self.fail('Closed shelf should not find a key')
|
2003-04-19 17:59:03 -03:00
|
|
|
|
2016-07-01 06:33:00 -03:00
|
|
|
def test_default_protocol(self):
|
|
|
|
with shelve.Shelf({}) as s:
|
2020-10-29 06:44:35 -03:00
|
|
|
self.assertEqual(s._protocol, pickle.DEFAULT_PROTOCOL)
|
2016-07-01 06:33:00 -03:00
|
|
|
|
2002-12-08 14:36:24 -04:00
|
|
|
|
2021-10-22 11:14:58 -03:00
|
|
|
class TestShelveBase:
|
2004-06-02 15:42:25 -03:00
|
|
|
type2test = shelve.Shelf
|
2021-10-22 11:14:58 -03:00
|
|
|
|
2003-03-09 03:05:43 -04:00
|
|
|
def _reference(self):
|
|
|
|
return {"key1":"value1", "key2":2, "key3":(1,2,3)}
|
2021-10-22 11:14:58 -03:00
|
|
|
|
|
|
|
|
|
|
|
class TestShelveInMemBase(TestShelveBase):
|
2003-03-09 03:05:43 -04:00
|
|
|
def _empty_mapping(self):
|
2021-10-22 11:14:58 -03:00
|
|
|
return shelve.Shelf(byteskeydict(), **self._args)
|
|
|
|
|
|
|
|
|
|
|
|
class TestShelveFileBase(TestShelveBase):
|
|
|
|
counter = 0
|
|
|
|
|
|
|
|
def _empty_mapping(self):
|
|
|
|
self.counter += 1
|
|
|
|
x = shelve.open(self.base_path + str(self.counter), **self._args)
|
|
|
|
self.addCleanup(x.close)
|
2003-03-09 03:05:43 -04:00
|
|
|
return x
|
2021-10-22 11:14:58 -03:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
dirname = os_helper.TESTFN
|
|
|
|
os.mkdir(dirname)
|
|
|
|
self.addCleanup(os_helper.rmtree, dirname)
|
|
|
|
self.base_path = os.path.join(dirname, "shelftemp.db")
|
|
|
|
self.addCleanup(setattr, dbm, '_defaultmod', dbm._defaultmod)
|
|
|
|
dbm._defaultmod = self.dbm_mod
|
|
|
|
|
|
|
|
|
|
|
|
from test import mapping_tests
|
|
|
|
|
|
|
|
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
|
|
|
|
bases = (TestShelveInMemBase, mapping_tests.BasicTestMappingProtocol)
|
|
|
|
name = f'TestProto{proto}MemShelve'
|
|
|
|
globals()[name] = type(name, bases,
|
|
|
|
{'_args': {'protocol': proto}})
|
|
|
|
bases = (TestShelveFileBase, mapping_tests.BasicTestMappingProtocol)
|
|
|
|
for dbm_mod in dbm_iterator():
|
|
|
|
assert dbm_mod.__name__.startswith('dbm.')
|
|
|
|
suffix = dbm_mod.__name__[4:]
|
|
|
|
name = f'TestProto{proto}File_{suffix}Shelve'
|
|
|
|
globals()[name] = type(name, bases,
|
|
|
|
{'dbm_mod': dbm_mod, '_args': {'protocol': proto}})
|
|
|
|
|
2002-12-08 14:36:24 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-10-22 11:14:58 -03:00
|
|
|
unittest.main()
|