mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-21360: mailbox.Maildir now ignores files with a leading dot (GH-11833)
The maildir format specification states that files with a leading dot should be ignored. Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
f7c5a7a0f9
commit
3f5eb3e6c7
5 changed files with 23 additions and 0 deletions
|
|
@ -681,6 +681,20 @@ class TestMaildir(TestMailbox, unittest.TestCase):
|
|||
self._box = mailbox.Maildir(self._path)
|
||||
self._check_basics()
|
||||
|
||||
def test_filename_leading_dot(self):
|
||||
self.tearDown()
|
||||
for subdir in '', 'tmp', 'new', 'cur':
|
||||
os.mkdir(os.path.normpath(os.path.join(self._path, subdir)))
|
||||
for subdir in 'tmp', 'new', 'cur':
|
||||
fname = os.path.join(self._path, subdir, '.foo' + subdir)
|
||||
with open(fname, 'wb') as f:
|
||||
f.write(b"@")
|
||||
self._box = mailbox.Maildir(self._path)
|
||||
self.assertNotIn('.footmp', self._box)
|
||||
self.assertNotIn('.foonew', self._box)
|
||||
self.assertNotIn('.foocur', self._box)
|
||||
self.assertEqual(list(self._box.iterkeys()), [])
|
||||
|
||||
def _check_basics(self, factory=None):
|
||||
# (Used by test_open_new() and test_open_existing().)
|
||||
self.assertEqual(self._box._path, os.path.abspath(self._path))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue