summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tempfile.py
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-09-06 13:14:16 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-09-06 13:14:16 (GMT)
commit309836c5c8a7bf85c666ff913bf903b8f735cfa5 (patch)
tree636eea90d5158dec50db0080fe4d9110039c3648 /Lib/test/test_tempfile.py
parentf7b436ce8d69e1067cf2cb3769de93605b307327 (diff)
parentf315df31bd8a927768bb94c3342d155cdc87d997 (diff)
downloadcpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.zip
cpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.tar.gz
cpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.tar.bz2
Issue #18849: Fixed a Windows-specific tempfile bug where collision with an
existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina.
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r--Lib/test/test_tempfile.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 493c640..0f514c2 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -373,6 +373,32 @@ class TestMkstempInner(BaseTestCase):
os.lseek(f.fd, 0, os.SEEK_SET)
self.assertEqual(os.read(f.fd, 20), b"blat")
+ def test_collision_with_existing_directory(self):
+ # _mkstemp_inner tries another name when a directory with
+ # the chosen name already exists
+ container_dir = tempfile.mkdtemp()
+ try:
+ def mock_get_candidate_names():
+ return iter(['aaa', 'aaa', 'bbb'])
+ with support.swap_attr(tempfile,
+ '_get_candidate_names',
+ mock_get_candidate_names):
+ dir = tempfile.mkdtemp(dir=container_dir)
+ self.assertTrue(dir.endswith('aaa'))
+
+ flags = tempfile._bin_openflags
+ (fd, name) = tempfile._mkstemp_inner(container_dir,
+ tempfile.template,
+ '',
+ flags)
+ try:
+ self.assertTrue(name.endswith('bbb'))
+ finally:
+ os.close(fd)
+ os.unlink(name)
+ finally:
+ support.rmtree(container_dir)
+
class TestGetTempPrefix(BaseTestCase):
"""Test gettempprefix()."""