summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-02-04 15:23:26 (GMT)
committerGitHub <noreply@github.com>2024-02-04 15:23:26 (GMT)
commitfc060969117f5a5dc96c220eb91b1e2f863d71cf (patch)
tree98b221abc21b5203b90cc725b719ae571fd0f4a8 /Lib/test
parentff7588b729a2a414ea189a2012904da3fbd1401c (diff)
downloadcpython-fc060969117f5a5dc96c220eb91b1e2f863d71cf.zip
cpython-fc060969117f5a5dc96c220eb91b1e2f863d71cf.tar.gz
cpython-fc060969117f5a5dc96c220eb91b1e2f863d71cf.tar.bz2
gh-83383: Always mark the dbm.dumb database as unmodified after open() and sync() (GH-114560)
The directory file for a newly created database is now created immediately after opening instead of deferring this until synchronizing or closing.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_dbm_dumb.py72
1 files changed, 72 insertions, 0 deletions
diff --git a/Lib/test/test_dbm_dumb.py b/Lib/test/test_dbm_dumb.py
index a481175..672f909 100644
--- a/Lib/test/test_dbm_dumb.py
+++ b/Lib/test/test_dbm_dumb.py
@@ -246,9 +246,27 @@ class DumbDBMTestCase(unittest.TestCase):
_delete_files()
with self.assertRaises(FileNotFoundError):
dumbdbm.open(_fname, value)
+ self.assertFalse(os.path.exists(_fname + '.dat'))
self.assertFalse(os.path.exists(_fname + '.dir'))
self.assertFalse(os.path.exists(_fname + '.bak'))
+ for value in ('c', 'n'):
+ _delete_files()
+ with dumbdbm.open(_fname, value) as f:
+ self.assertTrue(os.path.exists(_fname + '.dat'))
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+
+ for value in ('c', 'n'):
+ _delete_files()
+ with dumbdbm.open(_fname, value) as f:
+ f['key'] = 'value'
+ self.assertTrue(os.path.exists(_fname + '.dat'))
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertTrue(os.path.exists(_fname + '.bak'))
+
def test_missing_index(self):
with dumbdbm.open(_fname, 'n') as f:
pass
@@ -259,6 +277,60 @@ class DumbDBMTestCase(unittest.TestCase):
self.assertFalse(os.path.exists(_fname + '.dir'))
self.assertFalse(os.path.exists(_fname + '.bak'))
+ for value in ('c', 'n'):
+ with dumbdbm.open(_fname, value) as f:
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ os.unlink(_fname + '.dir')
+
+ for value in ('c', 'n'):
+ with dumbdbm.open(_fname, value) as f:
+ f['key'] = 'value'
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertTrue(os.path.exists(_fname + '.bak'))
+ os.unlink(_fname + '.dir')
+ os.unlink(_fname + '.bak')
+
+ def test_sync_empty_unmodified(self):
+ with dumbdbm.open(_fname, 'n') as f:
+ pass
+ os.unlink(_fname + '.dir')
+ for value in ('c', 'n'):
+ with dumbdbm.open(_fname, value) as f:
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ f.sync()
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ os.unlink(_fname + '.dir')
+ f.sync()
+ self.assertFalse(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertFalse(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+
+ def test_sync_nonempty_unmodified(self):
+ with dumbdbm.open(_fname, 'n') as f:
+ pass
+ os.unlink(_fname + '.dir')
+ for value in ('c', 'n'):
+ with dumbdbm.open(_fname, value) as f:
+ f['key'] = 'value'
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ f.sync()
+ self.assertTrue(os.path.exists(_fname + '.dir'))
+ self.assertTrue(os.path.exists(_fname + '.bak'))
+ os.unlink(_fname + '.dir')
+ os.unlink(_fname + '.bak')
+ f.sync()
+ self.assertFalse(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+ self.assertFalse(os.path.exists(_fname + '.dir'))
+ self.assertFalse(os.path.exists(_fname + '.bak'))
+
def test_invalid_flag(self):
for flag in ('x', 'rf', None):
with self.assertRaisesRegex(ValueError,