[issue2232] Current os.tmpfile() implementation requires admin privs on Vista/2k8.

Trent Nelson report at bugs.python.org
Wed Mar 5 23:45:32 CET 2008


Trent Nelson added the comment:

I agree.  Following patch fixes the issue for me:

Index: test_os.py
===================================================================
--- test_os.py  (revision 61260)
+++ test_os.py  (working copy)
@@ -65,6 +65,44 @@
     def test_tmpfile(self):
         if not hasattr(os, "tmpfile"):
             return
+        # As with test_tmpnam() below, the Windows implementation of 
tmpfile()
+        # attempts to create a file in the root directory of the 
current drive.
+        # On Vista and Server 2008, this test will always fail for 
normal users
+        # as writing to the root directory requires elevated 
privileges.  With
+        # XP and below, the semantics of tmpfile() are the same, but 
the user
+        # running the test is more likely to have administrative 
privileges on
+        # their account already.  If that's the case, then os.tmpfile
() should
+        # work.  In order to make this test as useful as possible, 
rather than
+        # trying to detect Windows versions or whether or not the user 
has the
+        # right permissions, just try and create a file in the root 
directory
+        # and see if it raises a 'Permission denied' OSError.  If it 
does, then
+        # test that a subsequent call to os.tmpfile() raises the same 
error. If
+        # it doesn't, assume we're on XP or below and the user running 
the test
+        # has administrative privileges, and proceed with the test as 
normal.
+        if sys.platform == 'win32':
+            name = '\\python_test_os_test_tmpfile.txt'
+            if os.path.exists(name):
+                os.remove(name)
+            try:
+                fp = open(name, 'w')
+            except IOError, first:
+                # open() failed, assert tmpfile() fails in the same 
way.
+                # Although open() raises an IOError and os.tmpfile() 
raises an
+                # OSError(), 'args' will be (12, 'Permission denied') 
in both
+                # cases.
+                try:
+                    fp = os.tmpfile()
+                except OSError, second:
+                    self.assertEqual(first.args, second.args)
+                else:
+                    self.fail("expected os.tmpfile() to raise OSError")
+                return
+            else:
+                # open() worked, therefore, tmpfile() should work.  
Close our
+                # dummy file and proceed with the test as normal.
+                fp.close()
+                os.remove(name)
+
         fp = os.tmpfile()
         fp.write("foobar")
         fp.seek(0,0)

----------
keywords: +patch
Added file: http://bugs.python.org/file9616/test_os.py.patch

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue2232>
__________________________________


More information about the Python-bugs-list mailing list