blob: 4f8a2a7e19d5d2501f3fdaa29c958fea717e61b7 [file] [log] [blame]
Fred Drake38c2ef02001-07-17 20:52:51 +00001# As a test suite for the os module, this is woefully inadequate, but this
2# does add tests for a few functions which have been determined to be more
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00003# portable than they had been thought to be.
Fred Drake38c2ef02001-07-17 20:52:51 +00004
Victor Stinner47aacc82015-06-12 17:26:23 +02005import asynchat
6import asyncore
7import codecs
Victor Stinnerc2d095f2010-05-17 00:14:53 +00008import contextlib
Victor Stinner47aacc82015-06-12 17:26:23 +02009import decimal
10import errno
11import fractions
12import getpass
13import itertools
14import locale
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +000015import mmap
Victor Stinner47aacc82015-06-12 17:26:23 +020016import os
17import pickle
Victor Stinner47aacc82015-06-12 17:26:23 +020018import shutil
19import signal
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +000020import socket
Charles-François Natali7372b062012-02-05 15:15:38 +010021import stat
Victor Stinner47aacc82015-06-12 17:26:23 +020022import subprocess
23import sys
Victor Stinner4d6a3d62014-12-21 01:16:38 +010024import sysconfig
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020025import threading
Victor Stinner47aacc82015-06-12 17:26:23 +020026import time
27import unittest
28import uuid
29import warnings
30from test import support
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020031
Antoine Pitrouec34ab52013-08-16 20:44:38 +020032try:
33 import resource
34except ImportError:
35 resource = None
Victor Stinner7ba6b0f2013-09-08 11:47:54 +020036try:
37 import fcntl
38except ImportError:
39 fcntl = None
Tim Golden0321cf22014-05-05 19:46:17 +010040try:
41 import _winapi
42except ImportError:
43 _winapi = None
Victor Stinnerb28ed922014-07-11 17:04:41 +020044try:
R David Murrayf2ad1732014-12-25 18:36:56 -050045 import grp
46 groups = [g.gr_gid for g in grp.getgrall() if getpass.getuser() in g.gr_mem]
47 if hasattr(os, 'getgid'):
48 process_gid = os.getgid()
49 if process_gid not in groups:
50 groups.append(process_gid)
51except ImportError:
52 groups = []
53try:
54 import pwd
55 all_users = [u.pw_uid for u in pwd.getpwall()]
Xavier de Gaye21060102016-11-16 08:05:27 +010056except (ImportError, AttributeError):
R David Murrayf2ad1732014-12-25 18:36:56 -050057 all_users = []
58try:
Victor Stinner5c6e6fc2014-07-12 11:03:53 +020059 from _testcapi import INT_MAX, PY_SSIZE_T_MAX
Victor Stinnerb28ed922014-07-11 17:04:41 +020060except ImportError:
Victor Stinner5c6e6fc2014-07-12 11:03:53 +020061 INT_MAX = PY_SSIZE_T_MAX = sys.maxsize
Antoine Pitrouec34ab52013-08-16 20:44:38 +020062
Berker Peksagce643912015-05-06 06:33:17 +030063from test.support.script_helper import assert_python_ok
Miss Islington (bot)a13b6542018-03-02 02:17:51 -080064from test.support import unix_shell, FakePath
Fred Drake38c2ef02001-07-17 20:52:51 +000065
Victor Stinner923590e2016-03-24 09:11:48 +010066
R David Murrayf2ad1732014-12-25 18:36:56 -050067root_in_posix = False
68if hasattr(os, 'geteuid'):
69 root_in_posix = (os.geteuid() == 0)
70
Mark Dickinson7cf03892010-04-16 13:45:35 +000071# Detect whether we're on a Linux system that uses the (now outdated
72# and unmaintained) linuxthreads threading library. There's an issue
73# when combining linuxthreads with a failed execv call: see
74# http://bugs.python.org/issue4970.
Victor Stinnerd5c355c2011-04-30 14:53:09 +020075if hasattr(sys, 'thread_info') and sys.thread_info.version:
76 USING_LINUXTHREADS = sys.thread_info.version.startswith("linuxthreads")
77else:
78 USING_LINUXTHREADS = False
Brian Curtineb24d742010-04-12 17:16:38 +000079
Stefan Krahebee49a2013-01-17 15:31:00 +010080# Issue #14110: Some tests fail on FreeBSD if the user is in the wheel group.
81HAVE_WHEEL_GROUP = sys.platform.startswith('freebsd') and os.getgid() == 0
82
Victor Stinner923590e2016-03-24 09:11:48 +010083
Berker Peksag4af23d72016-09-15 20:32:44 +030084def requires_os_func(name):
85 return unittest.skipUnless(hasattr(os, name), 'requires os.%s' % name)
86
87
Victor Stinnerae39d232016-03-24 17:12:55 +010088def create_file(filename, content=b'content'):
89 with open(filename, "xb", 0) as fp:
90 fp.write(content)
91
92
Thomas Wouters0e3f5912006-08-11 14:57:12 +000093# Tests creating TESTFN
94class FileTests(unittest.TestCase):
95 def setUp(self):
Martin Panterbf19d162015-09-09 01:01:13 +000096 if os.path.lexists(support.TESTFN):
Benjamin Petersonee8712c2008-05-20 21:35:26 +000097 os.unlink(support.TESTFN)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000098 tearDown = setUp
99
100 def test_access(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000101 f = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000102 os.close(f)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000103 self.assertTrue(os.access(support.TESTFN, os.W_OK))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000104
Christian Heimesfdab48e2008-01-20 09:06:41 +0000105 def test_closerange(self):
Antoine Pitroub9ee06c2008-08-16 22:03:17 +0000106 first = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
107 # We must allocate two consecutive file descriptors, otherwise
108 # it will mess up other file descriptors (perhaps even the three
109 # standard ones).
110 second = os.dup(first)
111 try:
112 retries = 0
113 while second != first + 1:
114 os.close(first)
115 retries += 1
116 if retries > 10:
117 # XXX test skipped
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000118 self.skipTest("couldn't allocate two consecutive fds")
Antoine Pitroub9ee06c2008-08-16 22:03:17 +0000119 first, second = second, os.dup(second)
120 finally:
121 os.close(second)
Christian Heimesfdab48e2008-01-20 09:06:41 +0000122 # close a fd that is open, and one that isn't
Antoine Pitroub9ee06c2008-08-16 22:03:17 +0000123 os.closerange(first, first + 2)
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000124 self.assertRaises(OSError, os.write, first, b"a")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000125
Benjamin Peterson1cc6df92010-06-30 17:39:45 +0000126 @support.cpython_only
Hirokazu Yamamoto4c19e6e2008-09-08 23:41:21 +0000127 def test_rename(self):
128 path = support.TESTFN
129 old = sys.getrefcount(path)
130 self.assertRaises(TypeError, os.rename, path, 0)
131 new = sys.getrefcount(path)
132 self.assertEqual(old, new)
133
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000134 def test_read(self):
135 with open(support.TESTFN, "w+b") as fobj:
136 fobj.write(b"spam")
137 fobj.flush()
138 fd = fobj.fileno()
139 os.lseek(fd, 0, 0)
140 s = os.read(fd, 4)
141 self.assertEqual(type(s), bytes)
142 self.assertEqual(s, b"spam")
143
Victor Stinner6e1ccfe2014-07-11 17:35:06 +0200144 @support.cpython_only
Victor Stinner5c6e6fc2014-07-12 11:03:53 +0200145 # Skip the test on 32-bit platforms: the number of bytes must fit in a
146 # Py_ssize_t type
147 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX,
148 "needs INT_MAX < PY_SSIZE_T_MAX")
Victor Stinner6e1ccfe2014-07-11 17:35:06 +0200149 @support.bigmemtest(size=INT_MAX + 10, memuse=1, dry_run=False)
150 def test_large_read(self, size):
Victor Stinnerb28ed922014-07-11 17:04:41 +0200151 self.addCleanup(support.unlink, support.TESTFN)
Victor Stinnerae39d232016-03-24 17:12:55 +0100152 create_file(support.TESTFN, b'test')
Victor Stinnerb28ed922014-07-11 17:04:41 +0200153
154 # Issue #21932: Make sure that os.read() does not raise an
155 # OverflowError for size larger than INT_MAX
Victor Stinnerb28ed922014-07-11 17:04:41 +0200156 with open(support.TESTFN, "rb") as fp:
157 data = os.read(fp.fileno(), size)
158
Victor Stinner8c663fd2017-11-08 14:44:44 -0800159 # The test does not try to read more than 2 GiB at once because the
Victor Stinnerb28ed922014-07-11 17:04:41 +0200160 # operating system is free to return less bytes than requested.
161 self.assertEqual(data, b'test')
162
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000163 def test_write(self):
164 # os.write() accepts bytes- and buffer-like objects but not strings
165 fd = os.open(support.TESTFN, os.O_CREAT | os.O_WRONLY)
166 self.assertRaises(TypeError, os.write, fd, "beans")
167 os.write(fd, b"bacon\n")
168 os.write(fd, bytearray(b"eggs\n"))
169 os.write(fd, memoryview(b"spam\n"))
170 os.close(fd)
171 with open(support.TESTFN, "rb") as fobj:
Antoine Pitroud62269f2008-09-15 23:54:52 +0000172 self.assertEqual(fobj.read().splitlines(),
173 [b"bacon", b"eggs", b"spam"])
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000174
Victor Stinnere0daff12011-03-20 23:36:35 +0100175 def write_windows_console(self, *args):
176 retcode = subprocess.call(args,
177 # use a new console to not flood the test output
178 creationflags=subprocess.CREATE_NEW_CONSOLE,
179 # use a shell to hide the console window (SW_HIDE)
180 shell=True)
181 self.assertEqual(retcode, 0)
182
183 @unittest.skipUnless(sys.platform == 'win32',
184 'test specific to the Windows console')
185 def test_write_windows_console(self):
186 # Issue #11395: the Windows console returns an error (12: not enough
187 # space error) on writing into stdout if stdout mode is binary and the
188 # length is greater than 66,000 bytes (or less, depending on heap
189 # usage).
190 code = "print('x' * 100000)"
191 self.write_windows_console(sys.executable, "-c", code)
192 self.write_windows_console(sys.executable, "-u", "-c", code)
193
Amaury Forgeot d'Arce2e36ba2008-08-01 00:14:22 +0000194 def fdopen_helper(self, *args):
195 fd = os.open(support.TESTFN, os.O_RDONLY)
Victor Stinnerbef7fdf2011-07-01 13:45:30 +0200196 f = os.fdopen(fd, *args)
197 f.close()
Amaury Forgeot d'Arce2e36ba2008-08-01 00:14:22 +0000198
199 def test_fdopen(self):
Victor Stinnerbef7fdf2011-07-01 13:45:30 +0200200 fd = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
201 os.close(fd)
202
Amaury Forgeot d'Arce2e36ba2008-08-01 00:14:22 +0000203 self.fdopen_helper()
204 self.fdopen_helper('r')
205 self.fdopen_helper('r', 100)
206
Antoine Pitrouf3b2d882012-01-30 22:08:52 +0100207 def test_replace(self):
208 TESTFN2 = support.TESTFN + ".2"
Victor Stinnerae39d232016-03-24 17:12:55 +0100209 self.addCleanup(support.unlink, support.TESTFN)
210 self.addCleanup(support.unlink, TESTFN2)
211
212 create_file(support.TESTFN, b"1")
213 create_file(TESTFN2, b"2")
214
Antoine Pitrouf3b2d882012-01-30 22:08:52 +0100215 os.replace(support.TESTFN, TESTFN2)
216 self.assertRaises(FileNotFoundError, os.stat, support.TESTFN)
217 with open(TESTFN2, 'r') as f:
218 self.assertEqual(f.read(), "1")
219
Martin Panterbf19d162015-09-09 01:01:13 +0000220 def test_open_keywords(self):
221 f = os.open(path=__file__, flags=os.O_RDONLY, mode=0o777,
222 dir_fd=None)
223 os.close(f)
224
225 def test_symlink_keywords(self):
226 symlink = support.get_attribute(os, "symlink")
227 try:
228 symlink(src='target', dst=support.TESTFN,
229 target_is_directory=False, dir_fd=None)
230 except (NotImplementedError, OSError):
231 pass # No OS support or unprivileged user
232
Victor Stinnerbef7fdf2011-07-01 13:45:30 +0200233
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000234# Test attributes on return values from os.*stat* family.
235class StatAttributeTests(unittest.TestCase):
236 def setUp(self):
Victor Stinner47aacc82015-06-12 17:26:23 +0200237 self.fname = support.TESTFN
238 self.addCleanup(support.unlink, self.fname)
Victor Stinnerae39d232016-03-24 17:12:55 +0100239 create_file(self.fname, b"ABC")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000240
Serhiy Storchaka43767632013-11-03 21:31:38 +0200241 @unittest.skipUnless(hasattr(os, 'stat'), 'test needs os.stat()')
Antoine Pitrou38425292010-09-21 18:19:07 +0000242 def check_stat_attributes(self, fname):
Antoine Pitrou38425292010-09-21 18:19:07 +0000243 result = os.stat(fname)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000244
245 # Make sure direct access works
Ezio Melottib3aedd42010-11-20 19:04:17 +0000246 self.assertEqual(result[stat.ST_SIZE], 3)
247 self.assertEqual(result.st_size, 3)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000248
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000249 # Make sure all the attributes are there
250 members = dir(result)
251 for name in dir(stat):
252 if name[:3] == 'ST_':
253 attr = name.lower()
Martin v. Löwis4d394df2005-01-23 09:19:22 +0000254 if name.endswith("TIME"):
255 def trunc(x): return int(x)
256 else:
257 def trunc(x): return x
Ezio Melottib3aedd42010-11-20 19:04:17 +0000258 self.assertEqual(trunc(getattr(result, attr)),
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000259 result[getattr(stat, name)])
Benjamin Peterson577473f2010-01-19 00:09:57 +0000260 self.assertIn(attr, members)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000261
Larry Hastings6fe20b32012-04-19 15:07:49 -0700262 # Make sure that the st_?time and st_?time_ns fields roughly agree
Larry Hastings76ad59b2012-05-03 00:30:07 -0700263 # (they should always agree up to around tens-of-microseconds)
Larry Hastings6fe20b32012-04-19 15:07:49 -0700264 for name in 'st_atime st_mtime st_ctime'.split():
265 floaty = int(getattr(result, name) * 100000)
266 nanosecondy = getattr(result, name + "_ns") // 10000
Larry Hastings76ad59b2012-05-03 00:30:07 -0700267 self.assertAlmostEqual(floaty, nanosecondy, delta=2)
Larry Hastings6fe20b32012-04-19 15:07:49 -0700268
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000269 try:
270 result[200]
Andrew Svetlov737fb892012-12-18 21:14:22 +0200271 self.fail("No exception raised")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000272 except IndexError:
273 pass
274
275 # Make sure that assignment fails
276 try:
277 result.st_mode = 1
Andrew Svetlov737fb892012-12-18 21:14:22 +0200278 self.fail("No exception raised")
Collin Winter42dae6a2007-03-28 21:44:53 +0000279 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000280 pass
281
282 try:
283 result.st_rdev = 1
Andrew Svetlov737fb892012-12-18 21:14:22 +0200284 self.fail("No exception raised")
Guido van Rossum1fff8782001-10-18 21:19:31 +0000285 except (AttributeError, TypeError):
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000286 pass
287
288 try:
289 result.parrot = 1
Andrew Svetlov737fb892012-12-18 21:14:22 +0200290 self.fail("No exception raised")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000291 except AttributeError:
292 pass
293
294 # Use the stat_result constructor with a too-short tuple.
295 try:
296 result2 = os.stat_result((10,))
Andrew Svetlov737fb892012-12-18 21:14:22 +0200297 self.fail("No exception raised")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000298 except TypeError:
299 pass
300
Ezio Melotti42da6632011-03-15 05:18:48 +0200301 # Use the constructor with a too-long tuple.
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000302 try:
303 result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
304 except TypeError:
305 pass
306
Antoine Pitrou38425292010-09-21 18:19:07 +0000307 def test_stat_attributes(self):
308 self.check_stat_attributes(self.fname)
309
310 def test_stat_attributes_bytes(self):
311 try:
312 fname = self.fname.encode(sys.getfilesystemencoding())
313 except UnicodeEncodeError:
314 self.skipTest("cannot encode %a for the filesystem" % self.fname)
Steve Dowercc16be82016-09-08 10:35:16 -0700315 self.check_stat_attributes(fname)
Tim Peterse0c446b2001-10-18 21:57:37 +0000316
Christian Heimes25827622013-10-12 01:27:08 +0200317 def test_stat_result_pickle(self):
318 result = os.stat(self.fname)
Serhiy Storchakabad12572014-12-15 14:03:42 +0200319 for proto in range(pickle.HIGHEST_PROTOCOL + 1):
320 p = pickle.dumps(result, proto)
321 self.assertIn(b'stat_result', p)
322 if proto < 4:
323 self.assertIn(b'cos\nstat_result\n', p)
324 unpickled = pickle.loads(p)
325 self.assertEqual(result, unpickled)
Christian Heimes25827622013-10-12 01:27:08 +0200326
Serhiy Storchaka43767632013-11-03 21:31:38 +0200327 @unittest.skipUnless(hasattr(os, 'statvfs'), 'test needs os.statvfs()')
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000328 def test_statvfs_attributes(self):
Benjamin Peterson4eaf7f92017-10-25 23:55:14 -0700329 result = os.statvfs(self.fname)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000330
331 # Make sure direct access works
Ezio Melottib3aedd42010-11-20 19:04:17 +0000332 self.assertEqual(result.f_bfree, result[3])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000333
Brett Cannoncfaf10c2008-05-16 00:45:35 +0000334 # Make sure all the attributes are there.
335 members = ('bsize', 'frsize', 'blocks', 'bfree', 'bavail', 'files',
336 'ffree', 'favail', 'flag', 'namemax')
337 for value, member in enumerate(members):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000338 self.assertEqual(getattr(result, 'f_' + member), result[value])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000339
Giuseppe Scrivano96a5e502017-12-14 23:46:46 +0100340 self.assertTrue(isinstance(result.f_fsid, int))
341
342 # Test that the size of the tuple doesn't change
343 self.assertEqual(len(result), 10)
344
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000345 # Make sure that assignment really fails
346 try:
347 result.f_bfree = 1
Andrew Svetlov737fb892012-12-18 21:14:22 +0200348 self.fail("No exception raised")
Collin Winter42dae6a2007-03-28 21:44:53 +0000349 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000350 pass
351
352 try:
353 result.parrot = 1
Andrew Svetlov737fb892012-12-18 21:14:22 +0200354 self.fail("No exception raised")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000355 except AttributeError:
356 pass
357
358 # Use the constructor with a too-short tuple.
359 try:
360 result2 = os.statvfs_result((10,))
Andrew Svetlov737fb892012-12-18 21:14:22 +0200361 self.fail("No exception raised")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000362 except TypeError:
363 pass
364
Ezio Melotti42da6632011-03-15 05:18:48 +0200365 # Use the constructor with a too-long tuple.
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000366 try:
367 result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
368 except TypeError:
369 pass
Fred Drake38c2ef02001-07-17 20:52:51 +0000370
Christian Heimes25827622013-10-12 01:27:08 +0200371 @unittest.skipUnless(hasattr(os, 'statvfs'),
372 "need os.statvfs()")
373 def test_statvfs_result_pickle(self):
Benjamin Peterson4eaf7f92017-10-25 23:55:14 -0700374 result = os.statvfs(self.fname)
Victor Stinner370cb252013-10-12 01:33:54 +0200375
Serhiy Storchakabad12572014-12-15 14:03:42 +0200376 for proto in range(pickle.HIGHEST_PROTOCOL + 1):
377 p = pickle.dumps(result, proto)
378 self.assertIn(b'statvfs_result', p)
379 if proto < 4:
380 self.assertIn(b'cos\nstatvfs_result\n', p)
381 unpickled = pickle.loads(p)
382 self.assertEqual(result, unpickled)
Christian Heimes25827622013-10-12 01:27:08 +0200383
Serhiy Storchaka43767632013-11-03 21:31:38 +0200384 @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
385 def test_1686475(self):
386 # Verify that an open file can be stat'ed
387 try:
388 os.stat(r"c:\pagefile.sys")
389 except FileNotFoundError:
Zachary Ware101d9e72013-12-08 00:44:27 -0600390 self.skipTest(r'c:\pagefile.sys does not exist')
Serhiy Storchaka43767632013-11-03 21:31:38 +0200391 except OSError as e:
392 self.fail("Could not stat pagefile.sys")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000393
Serhiy Storchaka43767632013-11-03 21:31:38 +0200394 @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
395 @unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
396 def test_15261(self):
397 # Verify that stat'ing a closed fd does not cause crash
398 r, w = os.pipe()
399 try:
400 os.stat(r) # should not raise error
401 finally:
402 os.close(r)
403 os.close(w)
404 with self.assertRaises(OSError) as ctx:
405 os.stat(r)
406 self.assertEqual(ctx.exception.errno, errno.EBADF)
Richard Oudkerk2240ac12012-07-06 12:05:32 +0100407
Zachary Ware63f277b2014-06-19 09:46:37 -0500408 def check_file_attributes(self, result):
409 self.assertTrue(hasattr(result, 'st_file_attributes'))
410 self.assertTrue(isinstance(result.st_file_attributes, int))
411 self.assertTrue(0 <= result.st_file_attributes <= 0xFFFFFFFF)
412
413 @unittest.skipUnless(sys.platform == "win32",
414 "st_file_attributes is Win32 specific")
415 def test_file_attributes(self):
416 # test file st_file_attributes (FILE_ATTRIBUTE_DIRECTORY not set)
417 result = os.stat(self.fname)
418 self.check_file_attributes(result)
419 self.assertEqual(
420 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
421 0)
422
423 # test directory st_file_attributes (FILE_ATTRIBUTE_DIRECTORY set)
Victor Stinner47aacc82015-06-12 17:26:23 +0200424 dirname = support.TESTFN + "dir"
425 os.mkdir(dirname)
426 self.addCleanup(os.rmdir, dirname)
427
428 result = os.stat(dirname)
Zachary Ware63f277b2014-06-19 09:46:37 -0500429 self.check_file_attributes(result)
430 self.assertEqual(
431 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
432 stat.FILE_ATTRIBUTE_DIRECTORY)
433
Berker Peksag0b4dc482016-09-17 15:49:59 +0300434 @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
435 def test_access_denied(self):
436 # Default to FindFirstFile WIN32_FIND_DATA when access is
437 # denied. See issue 28075.
438 # os.environ['TEMP'] should be located on a volume that
439 # supports file ACLs.
440 fname = os.path.join(os.environ['TEMP'], self.fname)
441 self.addCleanup(support.unlink, fname)
442 create_file(fname, b'ABC')
443 # Deny the right to [S]YNCHRONIZE on the file to
444 # force CreateFile to fail with ERROR_ACCESS_DENIED.
445 DETACHED_PROCESS = 8
446 subprocess.check_call(
Denis Osipov897bba72017-06-07 22:15:26 +0500447 # bpo-30584: Use security identifier *S-1-5-32-545 instead
448 # of localized "Users" to not depend on the locale.
449 ['icacls.exe', fname, '/deny', '*S-1-5-32-545:(S)'],
Berker Peksag0b4dc482016-09-17 15:49:59 +0300450 creationflags=DETACHED_PROCESS
451 )
452 result = os.stat(fname)
453 self.assertNotEqual(result.st_size, 0)
454
Victor Stinner47aacc82015-06-12 17:26:23 +0200455
456class UtimeTests(unittest.TestCase):
457 def setUp(self):
458 self.dirname = support.TESTFN
459 self.fname = os.path.join(self.dirname, "f1")
460
461 self.addCleanup(support.rmtree, self.dirname)
462 os.mkdir(self.dirname)
Victor Stinnerae39d232016-03-24 17:12:55 +0100463 create_file(self.fname)
Victor Stinner47aacc82015-06-12 17:26:23 +0200464
Victor Stinner47aacc82015-06-12 17:26:23 +0200465 def support_subsecond(self, filename):
466 # Heuristic to check if the filesystem supports timestamp with
467 # subsecond resolution: check if float and int timestamps are different
468 st = os.stat(filename)
469 return ((st.st_atime != st[7])
470 or (st.st_mtime != st[8])
471 or (st.st_ctime != st[9]))
472
473 def _test_utime(self, set_time, filename=None):
474 if not filename:
475 filename = self.fname
476
477 support_subsecond = self.support_subsecond(filename)
478 if support_subsecond:
479 # Timestamp with a resolution of 1 microsecond (10^-6).
480 #
481 # The resolution of the C internal function used by os.utime()
482 # depends on the platform: 1 sec, 1 us, 1 ns. Writing a portable
483 # test with a resolution of 1 ns requires more work:
484 # see the issue #15745.
485 atime_ns = 1002003000 # 1.002003 seconds
486 mtime_ns = 4005006000 # 4.005006 seconds
487 else:
488 # use a resolution of 1 second
489 atime_ns = 5 * 10**9
490 mtime_ns = 8 * 10**9
491
492 set_time(filename, (atime_ns, mtime_ns))
493 st = os.stat(filename)
494
495 if support_subsecond:
496 self.assertAlmostEqual(st.st_atime, atime_ns * 1e-9, delta=1e-6)
497 self.assertAlmostEqual(st.st_mtime, mtime_ns * 1e-9, delta=1e-6)
498 else:
499 self.assertEqual(st.st_atime, atime_ns * 1e-9)
500 self.assertEqual(st.st_mtime, mtime_ns * 1e-9)
501 self.assertEqual(st.st_atime_ns, atime_ns)
502 self.assertEqual(st.st_mtime_ns, mtime_ns)
503
504 def test_utime(self):
505 def set_time(filename, ns):
506 # test the ns keyword parameter
507 os.utime(filename, ns=ns)
508 self._test_utime(set_time)
509
510 @staticmethod
511 def ns_to_sec(ns):
512 # Convert a number of nanosecond (int) to a number of seconds (float).
513 # Round towards infinity by adding 0.5 nanosecond to avoid rounding
514 # issue, os.utime() rounds towards minus infinity.
515 return (ns * 1e-9) + 0.5e-9
516
517 def test_utime_by_indexed(self):
518 # pass times as floating point seconds as the second indexed parameter
519 def set_time(filename, ns):
520 atime_ns, mtime_ns = ns
521 atime = self.ns_to_sec(atime_ns)
522 mtime = self.ns_to_sec(mtime_ns)
523 # test utimensat(timespec), utimes(timeval), utime(utimbuf)
524 # or utime(time_t)
525 os.utime(filename, (atime, mtime))
526 self._test_utime(set_time)
527
528 def test_utime_by_times(self):
529 def set_time(filename, ns):
530 atime_ns, mtime_ns = ns
531 atime = self.ns_to_sec(atime_ns)
532 mtime = self.ns_to_sec(mtime_ns)
533 # test the times keyword parameter
534 os.utime(filename, times=(atime, mtime))
535 self._test_utime(set_time)
536
537 @unittest.skipUnless(os.utime in os.supports_follow_symlinks,
538 "follow_symlinks support for utime required "
539 "for this test.")
540 def test_utime_nofollow_symlinks(self):
541 def set_time(filename, ns):
542 # use follow_symlinks=False to test utimensat(timespec)
543 # or lutimes(timeval)
544 os.utime(filename, ns=ns, follow_symlinks=False)
545 self._test_utime(set_time)
546
547 @unittest.skipUnless(os.utime in os.supports_fd,
548 "fd support for utime required for this test.")
549 def test_utime_fd(self):
550 def set_time(filename, ns):
Victor Stinnerae39d232016-03-24 17:12:55 +0100551 with open(filename, 'wb', 0) as fp:
Victor Stinner47aacc82015-06-12 17:26:23 +0200552 # use a file descriptor to test futimens(timespec)
553 # or futimes(timeval)
554 os.utime(fp.fileno(), ns=ns)
555 self._test_utime(set_time)
556
557 @unittest.skipUnless(os.utime in os.supports_dir_fd,
558 "dir_fd support for utime required for this test.")
559 def test_utime_dir_fd(self):
560 def set_time(filename, ns):
561 dirname, name = os.path.split(filename)
562 dirfd = os.open(dirname, os.O_RDONLY)
563 try:
564 # pass dir_fd to test utimensat(timespec) or futimesat(timeval)
565 os.utime(name, dir_fd=dirfd, ns=ns)
566 finally:
567 os.close(dirfd)
568 self._test_utime(set_time)
569
570 def test_utime_directory(self):
571 def set_time(filename, ns):
572 # test calling os.utime() on a directory
573 os.utime(filename, ns=ns)
574 self._test_utime(set_time, filename=self.dirname)
575
576 def _test_utime_current(self, set_time):
577 # Get the system clock
578 current = time.time()
579
580 # Call os.utime() to set the timestamp to the current system clock
581 set_time(self.fname)
582
583 if not self.support_subsecond(self.fname):
584 delta = 1.0
Victor Stinnera8e7d902017-09-18 08:49:45 -0700585 else:
Victor Stinnerc94caca2017-06-13 23:48:27 +0200586 # On Windows, the usual resolution of time.time() is 15.6 ms.
587 # bpo-30649: Tolerate 50 ms for slow Windows buildbots.
Victor Stinnera8e7d902017-09-18 08:49:45 -0700588 #
589 # x86 Gentoo Refleaks 3.x once failed with dt=20.2 ms. So use
590 # also 50 ms on other platforms.
Victor Stinnerc94caca2017-06-13 23:48:27 +0200591 delta = 0.050
Victor Stinner47aacc82015-06-12 17:26:23 +0200592 st = os.stat(self.fname)
593 msg = ("st_time=%r, current=%r, dt=%r"
594 % (st.st_mtime, current, st.st_mtime - current))
595 self.assertAlmostEqual(st.st_mtime, current,
596 delta=delta, msg=msg)
597
598 def test_utime_current(self):
599 def set_time(filename):
600 # Set to the current time in the new way
601 os.utime(self.fname)
602 self._test_utime_current(set_time)
603
604 def test_utime_current_old(self):
605 def set_time(filename):
606 # Set to the current time in the old explicit way.
607 os.utime(self.fname, None)
608 self._test_utime_current(set_time)
609
610 def get_file_system(self, path):
611 if sys.platform == 'win32':
612 root = os.path.splitdrive(os.path.abspath(path))[0] + '\\'
613 import ctypes
614 kernel32 = ctypes.windll.kernel32
615 buf = ctypes.create_unicode_buffer("", 100)
616 ok = kernel32.GetVolumeInformationW(root, None, 0,
617 None, None, None,
618 buf, len(buf))
619 if ok:
620 return buf.value
621 # return None if the filesystem is unknown
622
623 def test_large_time(self):
624 # Many filesystems are limited to the year 2038. At least, the test
625 # pass with NTFS filesystem.
626 if self.get_file_system(self.dirname) != "NTFS":
627 self.skipTest("requires NTFS")
628
629 large = 5000000000 # some day in 2128
630 os.utime(self.fname, (large, large))
631 self.assertEqual(os.stat(self.fname).st_mtime, large)
632
633 def test_utime_invalid_arguments(self):
634 # seconds and nanoseconds parameters are mutually exclusive
635 with self.assertRaises(ValueError):
636 os.utime(self.fname, (5, 5), ns=(5, 5))
637
638
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000639from test import mapping_tests
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000640
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000641class EnvironTests(mapping_tests.BasicTestMappingProtocol):
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000642 """check that os.environ object conform to mapping protocol"""
Walter Dörwald118f9312004-06-02 18:42:25 +0000643 type2test = None
Christian Heimes90333392007-11-01 19:08:42 +0000644
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000645 def setUp(self):
646 self.__save = dict(os.environ)
Victor Stinnerb745a742010-05-18 17:17:23 +0000647 if os.supports_bytes_environ:
Victor Stinner208d28c2010-05-07 00:54:14 +0000648 self.__saveb = dict(os.environb)
Christian Heimes90333392007-11-01 19:08:42 +0000649 for key, value in self._reference().items():
650 os.environ[key] = value
651
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000652 def tearDown(self):
653 os.environ.clear()
654 os.environ.update(self.__save)
Victor Stinnerb745a742010-05-18 17:17:23 +0000655 if os.supports_bytes_environ:
Victor Stinner208d28c2010-05-07 00:54:14 +0000656 os.environb.clear()
657 os.environb.update(self.__saveb)
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000658
Christian Heimes90333392007-11-01 19:08:42 +0000659 def _reference(self):
660 return {"KEY1":"VALUE1", "KEY2":"VALUE2", "KEY3":"VALUE3"}
661
662 def _empty_mapping(self):
663 os.environ.clear()
664 return os.environ
665
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000666 # Bug 1110478
Xavier de Gayed1415312016-07-22 12:15:29 +0200667 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
668 'requires a shell')
Martin v. Löwis5510f652005-02-17 21:23:20 +0000669 def test_update2(self):
Christian Heimes90333392007-11-01 19:08:42 +0000670 os.environ.clear()
Ezio Melottic7e139b2012-09-26 20:01:34 +0300671 os.environ.update(HELLO="World")
Xavier de Gayed1415312016-07-22 12:15:29 +0200672 with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen:
Ezio Melottic7e139b2012-09-26 20:01:34 +0300673 value = popen.read().strip()
674 self.assertEqual(value, "World")
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000675
Xavier de Gayed1415312016-07-22 12:15:29 +0200676 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
677 'requires a shell')
Christian Heimes1a13d592007-11-08 14:16:55 +0000678 def test_os_popen_iter(self):
Xavier de Gayed1415312016-07-22 12:15:29 +0200679 with os.popen("%s -c 'echo \"line1\nline2\nline3\"'"
680 % unix_shell) as popen:
Ezio Melottic7e139b2012-09-26 20:01:34 +0300681 it = iter(popen)
682 self.assertEqual(next(it), "line1\n")
683 self.assertEqual(next(it), "line2\n")
684 self.assertEqual(next(it), "line3\n")
685 self.assertRaises(StopIteration, next, it)
Christian Heimes1a13d592007-11-08 14:16:55 +0000686
Guido van Rossum67aca9e2007-06-13 21:51:27 +0000687 # Verify environ keys and values from the OS are of the
688 # correct str type.
689 def test_keyvalue_types(self):
690 for key, val in os.environ.items():
Ezio Melottib3aedd42010-11-20 19:04:17 +0000691 self.assertEqual(type(key), str)
692 self.assertEqual(type(val), str)
Guido van Rossum67aca9e2007-06-13 21:51:27 +0000693
Christian Heimes90333392007-11-01 19:08:42 +0000694 def test_items(self):
695 for key, value in self._reference().items():
696 self.assertEqual(os.environ.get(key), value)
697
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000698 # Issue 7310
699 def test___repr__(self):
700 """Check that the repr() of os.environ looks like environ({...})."""
701 env = os.environ
Victor Stinner96f0de92010-07-29 00:29:00 +0000702 self.assertEqual(repr(env), 'environ({{{}}})'.format(', '.join(
703 '{!r}: {!r}'.format(key, value)
704 for key, value in env.items())))
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000705
Gregory P. Smithb6e8c7e2010-02-27 07:22:22 +0000706 def test_get_exec_path(self):
707 defpath_list = os.defpath.split(os.pathsep)
708 test_path = ['/monty', '/python', '', '/flying/circus']
709 test_env = {'PATH': os.pathsep.join(test_path)}
710
711 saved_environ = os.environ
712 try:
713 os.environ = dict(test_env)
714 # Test that defaulting to os.environ works.
715 self.assertSequenceEqual(test_path, os.get_exec_path())
716 self.assertSequenceEqual(test_path, os.get_exec_path(env=None))
717 finally:
718 os.environ = saved_environ
719
720 # No PATH environment variable
721 self.assertSequenceEqual(defpath_list, os.get_exec_path({}))
722 # Empty PATH environment variable
723 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''}))
724 # Supplied PATH environment variable
725 self.assertSequenceEqual(test_path, os.get_exec_path(test_env))
726
Victor Stinnerb745a742010-05-18 17:17:23 +0000727 if os.supports_bytes_environ:
728 # env cannot contain 'PATH' and b'PATH' keys
Victor Stinner38430e22010-08-19 17:10:18 +0000729 try:
Victor Stinner6f35eda2010-10-29 00:38:58 +0000730 # ignore BytesWarning warning
731 with warnings.catch_warnings(record=True):
732 mixed_env = {'PATH': '1', b'PATH': b'2'}
Victor Stinner38430e22010-08-19 17:10:18 +0000733 except BytesWarning:
Victor Stinner6f35eda2010-10-29 00:38:58 +0000734 # mixed_env cannot be created with python -bb
Victor Stinner38430e22010-08-19 17:10:18 +0000735 pass
736 else:
737 self.assertRaises(ValueError, os.get_exec_path, mixed_env)
Victor Stinnerb745a742010-05-18 17:17:23 +0000738
739 # bytes key and/or value
740 self.assertSequenceEqual(os.get_exec_path({b'PATH': b'abc'}),
741 ['abc'])
742 self.assertSequenceEqual(os.get_exec_path({b'PATH': 'abc'}),
743 ['abc'])
744 self.assertSequenceEqual(os.get_exec_path({'PATH': b'abc'}),
745 ['abc'])
746
747 @unittest.skipUnless(os.supports_bytes_environ,
748 "os.environb required for this test.")
Victor Stinner84ae1182010-05-06 22:05:07 +0000749 def test_environb(self):
750 # os.environ -> os.environb
751 value = 'euro\u20ac'
752 try:
Benjamin Peterson180799d2010-05-06 22:25:42 +0000753 value_bytes = value.encode(sys.getfilesystemencoding(),
754 'surrogateescape')
Victor Stinner84ae1182010-05-06 22:05:07 +0000755 except UnicodeEncodeError:
Benjamin Peterson180799d2010-05-06 22:25:42 +0000756 msg = "U+20AC character is not encodable to %s" % (
757 sys.getfilesystemencoding(),)
Benjamin Peterson932d3f42010-05-06 22:26:31 +0000758 self.skipTest(msg)
Victor Stinner84ae1182010-05-06 22:05:07 +0000759 os.environ['unicode'] = value
Ezio Melottib3aedd42010-11-20 19:04:17 +0000760 self.assertEqual(os.environ['unicode'], value)
761 self.assertEqual(os.environb[b'unicode'], value_bytes)
Victor Stinner84ae1182010-05-06 22:05:07 +0000762
763 # os.environb -> os.environ
764 value = b'\xff'
765 os.environb[b'bytes'] = value
Ezio Melottib3aedd42010-11-20 19:04:17 +0000766 self.assertEqual(os.environb[b'bytes'], value)
Victor Stinner84ae1182010-05-06 22:05:07 +0000767 value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000768 self.assertEqual(os.environ['bytes'], value_str)
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000769
Victor Stinner13ff2452018-01-22 18:32:50 +0100770 # On OS X < 10.6, unsetenv() doesn't return a value (bpo-13415).
Charles-François Natali2966f102011-11-26 11:32:46 +0100771 @support.requires_mac_ver(10, 6)
Victor Stinner60b385e2011-11-22 22:01:28 +0100772 def test_unset_error(self):
773 if sys.platform == "win32":
774 # an environment variable is limited to 32,767 characters
775 key = 'x' * 50000
Victor Stinnerb3f82682011-11-22 22:30:19 +0100776 self.assertRaises(ValueError, os.environ.__delitem__, key)
Victor Stinner60b385e2011-11-22 22:01:28 +0100777 else:
778 # "=" is not allowed in a variable name
779 key = 'key='
Victor Stinnerb3f82682011-11-22 22:30:19 +0100780 self.assertRaises(OSError, os.environ.__delitem__, key)
Victor Stinner60b385e2011-11-22 22:01:28 +0100781
Victor Stinner6d101392013-04-14 16:35:04 +0200782 def test_key_type(self):
783 missing = 'missingkey'
784 self.assertNotIn(missing, os.environ)
785
Victor Stinner839e5ea2013-04-14 16:43:03 +0200786 with self.assertRaises(KeyError) as cm:
Victor Stinner6d101392013-04-14 16:35:04 +0200787 os.environ[missing]
Victor Stinner839e5ea2013-04-14 16:43:03 +0200788 self.assertIs(cm.exception.args[0], missing)
Victor Stinner0c2dd0c2013-08-23 19:19:15 +0200789 self.assertTrue(cm.exception.__suppress_context__)
Victor Stinner6d101392013-04-14 16:35:04 +0200790
Victor Stinner839e5ea2013-04-14 16:43:03 +0200791 with self.assertRaises(KeyError) as cm:
Victor Stinner6d101392013-04-14 16:35:04 +0200792 del os.environ[missing]
Victor Stinner839e5ea2013-04-14 16:43:03 +0200793 self.assertIs(cm.exception.args[0], missing)
Victor Stinner0c2dd0c2013-08-23 19:19:15 +0200794 self.assertTrue(cm.exception.__suppress_context__)
795
Osvaldo Santana Neto8a8d2852017-07-01 14:34:45 -0300796 def _test_environ_iteration(self, collection):
797 iterator = iter(collection)
798 new_key = "__new_key__"
799
800 next(iterator) # start iteration over os.environ.items
801
802 # add a new key in os.environ mapping
803 os.environ[new_key] = "test_environ_iteration"
804
805 try:
806 next(iterator) # force iteration over modified mapping
807 self.assertEqual(os.environ[new_key], "test_environ_iteration")
808 finally:
809 del os.environ[new_key]
810
811 def test_iter_error_when_changing_os_environ(self):
812 self._test_environ_iteration(os.environ)
813
814 def test_iter_error_when_changing_os_environ_items(self):
815 self._test_environ_iteration(os.environ.items())
816
817 def test_iter_error_when_changing_os_environ_values(self):
818 self._test_environ_iteration(os.environ.values())
819
Victor Stinner6d101392013-04-14 16:35:04 +0200820
Tim Petersc4e09402003-04-25 07:11:48 +0000821class WalkTests(unittest.TestCase):
822 """Tests for os.walk()."""
823
Victor Stinner0561c532015-03-12 10:28:24 +0100824 # Wrapper to hide minor differences between os.walk and os.fwalk
825 # to tests both functions with the same code base
Serhiy Storchaka5f6a0b42016-02-08 16:23:28 +0200826 def walk(self, top, **kwargs):
Serhiy Storchakaa17ca192015-12-23 00:37:34 +0200827 if 'follow_symlinks' in kwargs:
828 kwargs['followlinks'] = kwargs.pop('follow_symlinks')
Serhiy Storchaka5f6a0b42016-02-08 16:23:28 +0200829 return os.walk(top, **kwargs)
Victor Stinner0561c532015-03-12 10:28:24 +0100830
Charles-François Natali7372b062012-02-05 15:15:38 +0100831 def setUp(self):
Victor Stinner0561c532015-03-12 10:28:24 +0100832 join = os.path.join
Victor Stinner3899b542016-03-24 17:21:17 +0100833 self.addCleanup(support.rmtree, support.TESTFN)
Tim Petersc4e09402003-04-25 07:11:48 +0000834
835 # Build:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000836 # TESTFN/
837 # TEST1/ a file kid and two directory kids
Tim Petersc4e09402003-04-25 07:11:48 +0000838 # tmp1
839 # SUB1/ a file kid and a directory kid
Guido van Rossumd8faa362007-04-27 19:54:29 +0000840 # tmp2
841 # SUB11/ no kids
842 # SUB2/ a file kid and a dirsymlink kid
843 # tmp3
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300844 # SUB21/ not readable
845 # tmp5
Guido van Rossumd8faa362007-04-27 19:54:29 +0000846 # link/ a symlink to TESTFN.2
Hynek Schlawack66bfcc12012-05-15 16:32:21 +0200847 # broken_link
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300848 # broken_link2
849 # broken_link3
Guido van Rossumd8faa362007-04-27 19:54:29 +0000850 # TEST2/
851 # tmp4 a lone file
Victor Stinner0561c532015-03-12 10:28:24 +0100852 self.walk_path = join(support.TESTFN, "TEST1")
853 self.sub1_path = join(self.walk_path, "SUB1")
854 self.sub11_path = join(self.sub1_path, "SUB11")
855 sub2_path = join(self.walk_path, "SUB2")
Serhiy Storchakaaf4e4742016-10-25 14:34:38 +0300856 sub21_path = join(sub2_path, "SUB21")
Victor Stinner0561c532015-03-12 10:28:24 +0100857 tmp1_path = join(self.walk_path, "tmp1")
858 tmp2_path = join(self.sub1_path, "tmp2")
Tim Petersc4e09402003-04-25 07:11:48 +0000859 tmp3_path = join(sub2_path, "tmp3")
Serhiy Storchakaaf4e4742016-10-25 14:34:38 +0300860 tmp5_path = join(sub21_path, "tmp3")
Victor Stinner0561c532015-03-12 10:28:24 +0100861 self.link_path = join(sub2_path, "link")
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000862 t2_path = join(support.TESTFN, "TEST2")
863 tmp4_path = join(support.TESTFN, "TEST2", "tmp4")
Hynek Schlawack66bfcc12012-05-15 16:32:21 +0200864 broken_link_path = join(sub2_path, "broken_link")
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300865 broken_link2_path = join(sub2_path, "broken_link2")
866 broken_link3_path = join(sub2_path, "broken_link3")
Tim Petersc4e09402003-04-25 07:11:48 +0000867
868 # Create stuff.
Victor Stinner0561c532015-03-12 10:28:24 +0100869 os.makedirs(self.sub11_path)
Tim Petersc4e09402003-04-25 07:11:48 +0000870 os.makedirs(sub2_path)
Serhiy Storchakaaf4e4742016-10-25 14:34:38 +0300871 os.makedirs(sub21_path)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000872 os.makedirs(t2_path)
Victor Stinner0561c532015-03-12 10:28:24 +0100873
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300874 for path in tmp1_path, tmp2_path, tmp3_path, tmp4_path, tmp5_path:
Victor Stinnere77c9742016-03-25 10:28:23 +0100875 with open(path, "x") as f:
876 f.write("I'm " + path + " and proud of it. Blame test_os.\n")
Tim Petersc4e09402003-04-25 07:11:48 +0000877
Victor Stinner0561c532015-03-12 10:28:24 +0100878 if support.can_symlink():
879 os.symlink(os.path.abspath(t2_path), self.link_path)
880 os.symlink('broken', broken_link_path, True)
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300881 os.symlink(join('tmp3', 'broken'), broken_link2_path, True)
882 os.symlink(join('SUB21', 'tmp5'), broken_link3_path, True)
Serhiy Storchaka28f98202016-10-25 19:01:41 +0300883 self.sub2_tree = (sub2_path, ["SUB21", "link"],
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300884 ["broken_link", "broken_link2", "broken_link3",
885 "tmp3"])
Victor Stinner0561c532015-03-12 10:28:24 +0100886 else:
887 self.sub2_tree = (sub2_path, [], ["tmp3"])
888
Serhiy Storchakaaf4e4742016-10-25 14:34:38 +0300889 os.chmod(sub21_path, 0)
Serhiy Storchaka28f98202016-10-25 19:01:41 +0300890 try:
891 os.listdir(sub21_path)
892 except PermissionError:
893 self.addCleanup(os.chmod, sub21_path, stat.S_IRWXU)
894 else:
895 os.chmod(sub21_path, stat.S_IRWXU)
896 os.unlink(tmp5_path)
897 os.rmdir(sub21_path)
898 del self.sub2_tree[1][:1]
Serhiy Storchaka42babab2016-10-25 14:28:38 +0300899
Victor Stinner0561c532015-03-12 10:28:24 +0100900 def test_walk_topdown(self):
Tim Petersc4e09402003-04-25 07:11:48 +0000901 # Walk top-down.
Serhiy Storchakaa07ab292016-04-16 17:51:00 +0300902 all = list(self.walk(self.walk_path))
Victor Stinner0561c532015-03-12 10:28:24 +0100903
Tim Petersc4e09402003-04-25 07:11:48 +0000904 self.assertEqual(len(all), 4)
905 # We can't know which order SUB1 and SUB2 will appear in.
906 # Not flipped: TESTFN, SUB1, SUB11, SUB2
907 # flipped: TESTFN, SUB2, SUB1, SUB11
908 flipped = all[0][1][0] != "SUB1"
909 all[0][1].sort()
Hynek Schlawackc96f5a02012-05-15 17:55:38 +0200910 all[3 - 2 * flipped][-1].sort()
Serhiy Storchaka28f98202016-10-25 19:01:41 +0300911 all[3 - 2 * flipped][1].sort()
Victor Stinner0561c532015-03-12 10:28:24 +0100912 self.assertEqual(all[0], (self.walk_path, ["SUB1", "SUB2"], ["tmp1"]))
913 self.assertEqual(all[1 + flipped], (self.sub1_path, ["SUB11"], ["tmp2"]))
914 self.assertEqual(all[2 + flipped], (self.sub11_path, [], []))
915 self.assertEqual(all[3 - 2 * flipped], self.sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000916
Brett Cannon3f9183b2016-08-26 14:44:48 -0700917 def test_walk_prune(self, walk_path=None):
918 if walk_path is None:
919 walk_path = self.walk_path
Tim Petersc4e09402003-04-25 07:11:48 +0000920 # Prune the search.
921 all = []
Brett Cannon3f9183b2016-08-26 14:44:48 -0700922 for root, dirs, files in self.walk(walk_path):
Tim Petersc4e09402003-04-25 07:11:48 +0000923 all.append((root, dirs, files))
924 # Don't descend into SUB1.
925 if 'SUB1' in dirs:
926 # Note that this also mutates the dirs we appended to all!
927 dirs.remove('SUB1')
Tim Petersc4e09402003-04-25 07:11:48 +0000928
Victor Stinner0561c532015-03-12 10:28:24 +0100929 self.assertEqual(len(all), 2)
Miss Islington (bot)a13b6542018-03-02 02:17:51 -0800930 self.assertEqual(all[0], (self.walk_path, ["SUB2"], ["tmp1"]))
Victor Stinner0561c532015-03-12 10:28:24 +0100931
932 all[1][-1].sort()
Serhiy Storchaka28f98202016-10-25 19:01:41 +0300933 all[1][1].sort()
Victor Stinner0561c532015-03-12 10:28:24 +0100934 self.assertEqual(all[1], self.sub2_tree)
935
Brett Cannon3f9183b2016-08-26 14:44:48 -0700936 def test_file_like_path(self):
Miss Islington (bot)a13b6542018-03-02 02:17:51 -0800937 self.test_walk_prune(FakePath(self.walk_path))
Brett Cannon3f9183b2016-08-26 14:44:48 -0700938
Victor Stinner0561c532015-03-12 10:28:24 +0100939 def test_walk_bottom_up(self):
Tim Petersc4e09402003-04-25 07:11:48 +0000940 # Walk bottom-up.
Victor Stinner0561c532015-03-12 10:28:24 +0100941 all = list(self.walk(self.walk_path, topdown=False))
942
Victor Stinner53b0a412016-03-26 01:12:36 +0100943 self.assertEqual(len(all), 4, all)
Tim Petersc4e09402003-04-25 07:11:48 +0000944 # We can't know which order SUB1 and SUB2 will appear in.
945 # Not flipped: SUB11, SUB1, SUB2, TESTFN
946 # flipped: SUB2, SUB11, SUB1, TESTFN
947 flipped = all[3][1][0] != "SUB1"
948 all[3][1].sort()
Hynek Schlawack39bf90d2012-05-15 18:40:17 +0200949 all[2 - 2 * flipped][-1].sort()
Serhiy Storchaka28f98202016-10-25 19:01:41 +0300950 all[2 - 2 * flipped][1].sort()
Victor Stinner0561c532015-03-12 10:28:24 +0100951 self.assertEqual(all[3],
952 (self.walk_path, ["SUB1", "SUB2"], ["tmp1"]))
953 self.assertEqual(all[flipped],
954 (self.sub11_path, [], []))
955 self.assertEqual(all[flipped + 1],
956 (self.sub1_path, ["SUB11"], ["tmp2"]))
957 self.assertEqual(all[2 - 2 * flipped],
958 self.sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000959
Victor Stinner0561c532015-03-12 10:28:24 +0100960 def test_walk_symlink(self):
961 if not support.can_symlink():
962 self.skipTest("need symlink support")
963
964 # Walk, following symlinks.
965 walk_it = self.walk(self.walk_path, follow_symlinks=True)
966 for root, dirs, files in walk_it:
967 if root == self.link_path:
968 self.assertEqual(dirs, [])
969 self.assertEqual(files, ["tmp4"])
970 break
971 else:
972 self.fail("Didn't follow symlink with followlinks=True")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000973
Serhiy Storchaka0bddc9e2015-12-23 00:08:24 +0200974 def test_walk_bad_dir(self):
975 # Walk top-down.
976 errors = []
977 walk_it = self.walk(self.walk_path, onerror=errors.append)
978 root, dirs, files = next(walk_it)
Serhiy Storchaka7865dff2016-10-28 09:17:38 +0300979 self.assertEqual(errors, [])
980 dir1 = 'SUB1'
981 path1 = os.path.join(root, dir1)
982 path1new = os.path.join(root, dir1 + '.new')
983 os.rename(path1, path1new)
984 try:
985 roots = [r for r, d, f in walk_it]
986 self.assertTrue(errors)
987 self.assertNotIn(path1, roots)
988 self.assertNotIn(path1new, roots)
989 for dir2 in dirs:
990 if dir2 != dir1:
991 self.assertIn(os.path.join(root, dir2), roots)
992 finally:
993 os.rename(path1new, path1)
Serhiy Storchaka0bddc9e2015-12-23 00:08:24 +0200994
Charles-François Natali7372b062012-02-05 15:15:38 +0100995
996@unittest.skipUnless(hasattr(os, 'fwalk'), "Test needs os.fwalk()")
997class FwalkTests(WalkTests):
998 """Tests for os.fwalk()."""
999
Serhiy Storchaka5f6a0b42016-02-08 16:23:28 +02001000 def walk(self, top, **kwargs):
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001001 for root, dirs, files, root_fd in self.fwalk(top, **kwargs):
Victor Stinner0561c532015-03-12 10:28:24 +01001002 yield (root, dirs, files)
1003
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001004 def fwalk(self, *args, **kwargs):
1005 return os.fwalk(*args, **kwargs)
1006
Larry Hastingsc48fe982012-06-25 04:49:05 -07001007 def _compare_to_walk(self, walk_kwargs, fwalk_kwargs):
1008 """
1009 compare with walk() results.
1010 """
Larry Hastingsb4038062012-07-15 10:57:38 -07001011 walk_kwargs = walk_kwargs.copy()
1012 fwalk_kwargs = fwalk_kwargs.copy()
1013 for topdown, follow_symlinks in itertools.product((True, False), repeat=2):
1014 walk_kwargs.update(topdown=topdown, followlinks=follow_symlinks)
1015 fwalk_kwargs.update(topdown=topdown, follow_symlinks=follow_symlinks)
Larry Hastingsc48fe982012-06-25 04:49:05 -07001016
Charles-François Natali7372b062012-02-05 15:15:38 +01001017 expected = {}
Larry Hastingsc48fe982012-06-25 04:49:05 -07001018 for root, dirs, files in os.walk(**walk_kwargs):
Charles-François Natali7372b062012-02-05 15:15:38 +01001019 expected[root] = (set(dirs), set(files))
1020
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001021 for root, dirs, files, rootfd in self.fwalk(**fwalk_kwargs):
Charles-François Natali7372b062012-02-05 15:15:38 +01001022 self.assertIn(root, expected)
1023 self.assertEqual(expected[root], (set(dirs), set(files)))
1024
Larry Hastingsc48fe982012-06-25 04:49:05 -07001025 def test_compare_to_walk(self):
1026 kwargs = {'top': support.TESTFN}
1027 self._compare_to_walk(kwargs, kwargs)
1028
Charles-François Natali7372b062012-02-05 15:15:38 +01001029 def test_dir_fd(self):
Larry Hastingsc48fe982012-06-25 04:49:05 -07001030 try:
1031 fd = os.open(".", os.O_RDONLY)
1032 walk_kwargs = {'top': support.TESTFN}
1033 fwalk_kwargs = walk_kwargs.copy()
1034 fwalk_kwargs['dir_fd'] = fd
1035 self._compare_to_walk(walk_kwargs, fwalk_kwargs)
1036 finally:
1037 os.close(fd)
1038
1039 def test_yields_correct_dir_fd(self):
Charles-François Natali7372b062012-02-05 15:15:38 +01001040 # check returned file descriptors
Larry Hastingsb4038062012-07-15 10:57:38 -07001041 for topdown, follow_symlinks in itertools.product((True, False), repeat=2):
1042 args = support.TESTFN, topdown, None
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001043 for root, dirs, files, rootfd in self.fwalk(*args, follow_symlinks=follow_symlinks):
Charles-François Natali7372b062012-02-05 15:15:38 +01001044 # check that the FD is valid
1045 os.fstat(rootfd)
Larry Hastings9cf065c2012-06-22 16:30:09 -07001046 # redundant check
1047 os.stat(rootfd)
1048 # check that listdir() returns consistent information
1049 self.assertEqual(set(os.listdir(rootfd)), set(dirs) | set(files))
Charles-François Natali7372b062012-02-05 15:15:38 +01001050
1051 def test_fd_leak(self):
1052 # Since we're opening a lot of FDs, we must be careful to avoid leaks:
1053 # we both check that calling fwalk() a large number of times doesn't
1054 # yield EMFILE, and that the minimum allocated FD hasn't changed.
1055 minfd = os.dup(1)
1056 os.close(minfd)
1057 for i in range(256):
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001058 for x in self.fwalk(support.TESTFN):
Charles-François Natali7372b062012-02-05 15:15:38 +01001059 pass
1060 newfd = os.dup(1)
1061 self.addCleanup(os.close, newfd)
1062 self.assertEqual(newfd, minfd)
1063
Serhiy Storchaka5f6a0b42016-02-08 16:23:28 +02001064class BytesWalkTests(WalkTests):
1065 """Tests for os.walk() with bytes."""
1066 def walk(self, top, **kwargs):
1067 if 'follow_symlinks' in kwargs:
1068 kwargs['followlinks'] = kwargs.pop('follow_symlinks')
1069 for broot, bdirs, bfiles in os.walk(os.fsencode(top), **kwargs):
1070 root = os.fsdecode(broot)
1071 dirs = list(map(os.fsdecode, bdirs))
1072 files = list(map(os.fsdecode, bfiles))
1073 yield (root, dirs, files)
1074 bdirs[:] = list(map(os.fsencode, dirs))
1075 bfiles[:] = list(map(os.fsencode, files))
1076
Serhiy Storchaka8f6b3442017-03-07 14:33:21 +02001077@unittest.skipUnless(hasattr(os, 'fwalk'), "Test needs os.fwalk()")
1078class BytesFwalkTests(FwalkTests):
1079 """Tests for os.walk() with bytes."""
1080 def fwalk(self, top='.', *args, **kwargs):
1081 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs):
1082 root = os.fsdecode(broot)
1083 dirs = list(map(os.fsdecode, bdirs))
1084 files = list(map(os.fsdecode, bfiles))
1085 yield (root, dirs, files, topfd)
1086 bdirs[:] = list(map(os.fsencode, dirs))
1087 bfiles[:] = list(map(os.fsencode, files))
1088
Charles-François Natali7372b062012-02-05 15:15:38 +01001089
Guido van Rossume7ba4952007-06-06 23:52:48 +00001090class MakedirTests(unittest.TestCase):
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001091 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001092 os.mkdir(support.TESTFN)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001093
1094 def test_makedir(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001095 base = support.TESTFN
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001096 path = os.path.join(base, 'dir1', 'dir2', 'dir3')
1097 os.makedirs(path) # Should work
1098 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4')
1099 os.makedirs(path)
1100
1101 # Try paths with a '.' in them
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001102 self.assertRaises(OSError, os.makedirs, os.curdir)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001103 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4', 'dir5', os.curdir)
1104 os.makedirs(path)
1105 path = os.path.join(base, 'dir1', os.curdir, 'dir2', 'dir3', 'dir4',
1106 'dir5', 'dir6')
1107 os.makedirs(path)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001108
Serhiy Storchakae304e332017-03-24 13:27:42 +02001109 def test_mode(self):
1110 with support.temp_umask(0o002):
1111 base = support.TESTFN
1112 parent = os.path.join(base, 'dir1')
1113 path = os.path.join(parent, 'dir2')
1114 os.makedirs(path, 0o555)
1115 self.assertTrue(os.path.exists(path))
1116 self.assertTrue(os.path.isdir(path))
1117 if os.name != 'nt':
1118 self.assertEqual(stat.S_IMODE(os.stat(path).st_mode), 0o555)
1119 self.assertEqual(stat.S_IMODE(os.stat(parent).st_mode), 0o775)
1120
Terry Reedy5a22b652010-12-02 07:05:56 +00001121 def test_exist_ok_existing_directory(self):
1122 path = os.path.join(support.TESTFN, 'dir1')
1123 mode = 0o777
1124 old_mask = os.umask(0o022)
1125 os.makedirs(path, mode)
1126 self.assertRaises(OSError, os.makedirs, path, mode)
1127 self.assertRaises(OSError, os.makedirs, path, mode, exist_ok=False)
Benjamin Peterson4717e212014-04-01 19:17:57 -04001128 os.makedirs(path, 0o776, exist_ok=True)
Terry Reedy5a22b652010-12-02 07:05:56 +00001129 os.makedirs(path, mode=mode, exist_ok=True)
1130 os.umask(old_mask)
1131
Martin Pantera82642f2015-11-19 04:48:44 +00001132 # Issue #25583: A drive root could raise PermissionError on Windows
1133 os.makedirs(os.path.abspath('/'), exist_ok=True)
1134
Gregory P. Smitha81c8562012-06-03 14:30:44 -07001135 def test_exist_ok_s_isgid_directory(self):
1136 path = os.path.join(support.TESTFN, 'dir1')
1137 S_ISGID = stat.S_ISGID
1138 mode = 0o777
1139 old_mask = os.umask(0o022)
1140 try:
1141 existing_testfn_mode = stat.S_IMODE(
1142 os.lstat(support.TESTFN).st_mode)
Ned Deilyc622f422012-08-08 20:57:24 -07001143 try:
1144 os.chmod(support.TESTFN, existing_testfn_mode | S_ISGID)
Ned Deily3a2b97e2012-08-08 21:03:02 -07001145 except PermissionError:
Ned Deilyc622f422012-08-08 20:57:24 -07001146 raise unittest.SkipTest('Cannot set S_ISGID for dir.')
Gregory P. Smitha81c8562012-06-03 14:30:44 -07001147 if (os.lstat(support.TESTFN).st_mode & S_ISGID != S_ISGID):
1148 raise unittest.SkipTest('No support for S_ISGID dir mode.')
1149 # The os should apply S_ISGID from the parent dir for us, but
1150 # this test need not depend on that behavior. Be explicit.
1151 os.makedirs(path, mode | S_ISGID)
1152 # http://bugs.python.org/issue14992
1153 # Should not fail when the bit is already set.
1154 os.makedirs(path, mode, exist_ok=True)
1155 # remove the bit.
1156 os.chmod(path, stat.S_IMODE(os.lstat(path).st_mode) & ~S_ISGID)
Benjamin Petersonee5f1c12014-04-01 19:13:18 -04001157 # May work even when the bit is not already set when demanded.
1158 os.makedirs(path, mode | S_ISGID, exist_ok=True)
Gregory P. Smitha81c8562012-06-03 14:30:44 -07001159 finally:
1160 os.umask(old_mask)
Terry Reedy5a22b652010-12-02 07:05:56 +00001161
1162 def test_exist_ok_existing_regular_file(self):
1163 base = support.TESTFN
1164 path = os.path.join(support.TESTFN, 'dir1')
1165 f = open(path, 'w')
1166 f.write('abc')
1167 f.close()
1168 self.assertRaises(OSError, os.makedirs, path)
1169 self.assertRaises(OSError, os.makedirs, path, exist_ok=False)
1170 self.assertRaises(OSError, os.makedirs, path, exist_ok=True)
1171 os.remove(path)
1172
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001173 def tearDown(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001174 path = os.path.join(support.TESTFN, 'dir1', 'dir2', 'dir3',
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001175 'dir4', 'dir5', 'dir6')
1176 # If the tests failed, the bottom-most directory ('../dir6')
1177 # may not have been created, so we look for the outermost directory
1178 # that exists.
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001179 while not os.path.exists(path) and path != support.TESTFN:
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001180 path = os.path.dirname(path)
1181
1182 os.removedirs(path)
1183
Andrew Svetlov405faed2012-12-25 12:18:09 +02001184
R David Murrayf2ad1732014-12-25 18:36:56 -05001185@unittest.skipUnless(hasattr(os, 'chown'), "Test needs chown")
1186class ChownFileTests(unittest.TestCase):
1187
Berker Peksag036a71b2015-07-21 09:29:48 +03001188 @classmethod
1189 def setUpClass(cls):
R David Murrayf2ad1732014-12-25 18:36:56 -05001190 os.mkdir(support.TESTFN)
1191
1192 def test_chown_uid_gid_arguments_must_be_index(self):
1193 stat = os.stat(support.TESTFN)
1194 uid = stat.st_uid
1195 gid = stat.st_gid
1196 for value in (-1.0, -1j, decimal.Decimal(-1), fractions.Fraction(-2, 2)):
1197 self.assertRaises(TypeError, os.chown, support.TESTFN, value, gid)
1198 self.assertRaises(TypeError, os.chown, support.TESTFN, uid, value)
1199 self.assertIsNone(os.chown(support.TESTFN, uid, gid))
1200 self.assertIsNone(os.chown(support.TESTFN, -1, -1))
1201
1202 @unittest.skipUnless(len(groups) > 1, "test needs more than one group")
1203 def test_chown(self):
1204 gid_1, gid_2 = groups[:2]
1205 uid = os.stat(support.TESTFN).st_uid
1206 os.chown(support.TESTFN, uid, gid_1)
1207 gid = os.stat(support.TESTFN).st_gid
1208 self.assertEqual(gid, gid_1)
1209 os.chown(support.TESTFN, uid, gid_2)
1210 gid = os.stat(support.TESTFN).st_gid
1211 self.assertEqual(gid, gid_2)
1212
1213 @unittest.skipUnless(root_in_posix and len(all_users) > 1,
1214 "test needs root privilege and more than one user")
1215 def test_chown_with_root(self):
1216 uid_1, uid_2 = all_users[:2]
1217 gid = os.stat(support.TESTFN).st_gid
1218 os.chown(support.TESTFN, uid_1, gid)
1219 uid = os.stat(support.TESTFN).st_uid
1220 self.assertEqual(uid, uid_1)
1221 os.chown(support.TESTFN, uid_2, gid)
1222 uid = os.stat(support.TESTFN).st_uid
1223 self.assertEqual(uid, uid_2)
1224
1225 @unittest.skipUnless(not root_in_posix and len(all_users) > 1,
1226 "test needs non-root account and more than one user")
1227 def test_chown_without_permission(self):
1228 uid_1, uid_2 = all_users[:2]
1229 gid = os.stat(support.TESTFN).st_gid
Serhiy Storchakaa9e00d12015-02-16 08:35:18 +02001230 with self.assertRaises(PermissionError):
R David Murrayf2ad1732014-12-25 18:36:56 -05001231 os.chown(support.TESTFN, uid_1, gid)
1232 os.chown(support.TESTFN, uid_2, gid)
1233
Berker Peksag036a71b2015-07-21 09:29:48 +03001234 @classmethod
1235 def tearDownClass(cls):
R David Murrayf2ad1732014-12-25 18:36:56 -05001236 os.rmdir(support.TESTFN)
1237
1238
Andrew Svetlov405faed2012-12-25 12:18:09 +02001239class RemoveDirsTests(unittest.TestCase):
1240 def setUp(self):
1241 os.makedirs(support.TESTFN)
1242
1243 def tearDown(self):
1244 support.rmtree(support.TESTFN)
1245
1246 def test_remove_all(self):
1247 dira = os.path.join(support.TESTFN, 'dira')
1248 os.mkdir(dira)
1249 dirb = os.path.join(dira, 'dirb')
1250 os.mkdir(dirb)
1251 os.removedirs(dirb)
1252 self.assertFalse(os.path.exists(dirb))
1253 self.assertFalse(os.path.exists(dira))
1254 self.assertFalse(os.path.exists(support.TESTFN))
1255
1256 def test_remove_partial(self):
1257 dira = os.path.join(support.TESTFN, 'dira')
1258 os.mkdir(dira)
1259 dirb = os.path.join(dira, 'dirb')
1260 os.mkdir(dirb)
Victor Stinnerae39d232016-03-24 17:12:55 +01001261 create_file(os.path.join(dira, 'file.txt'))
Andrew Svetlov405faed2012-12-25 12:18:09 +02001262 os.removedirs(dirb)
1263 self.assertFalse(os.path.exists(dirb))
1264 self.assertTrue(os.path.exists(dira))
1265 self.assertTrue(os.path.exists(support.TESTFN))
1266
1267 def test_remove_nothing(self):
1268 dira = os.path.join(support.TESTFN, 'dira')
1269 os.mkdir(dira)
1270 dirb = os.path.join(dira, 'dirb')
1271 os.mkdir(dirb)
Victor Stinnerae39d232016-03-24 17:12:55 +01001272 create_file(os.path.join(dirb, 'file.txt'))
Andrew Svetlov405faed2012-12-25 12:18:09 +02001273 with self.assertRaises(OSError):
1274 os.removedirs(dirb)
1275 self.assertTrue(os.path.exists(dirb))
1276 self.assertTrue(os.path.exists(dira))
1277 self.assertTrue(os.path.exists(support.TESTFN))
1278
1279
Guido van Rossume7ba4952007-06-06 23:52:48 +00001280class DevNullTests(unittest.TestCase):
Martin v. Löwisbdec50f2004-06-08 08:29:33 +00001281 def test_devnull(self):
Victor Stinnerae39d232016-03-24 17:12:55 +01001282 with open(os.devnull, 'wb', 0) as f:
Victor Stinnera6d2c762011-06-30 18:20:11 +02001283 f.write(b'hello')
1284 f.close()
1285 with open(os.devnull, 'rb') as f:
1286 self.assertEqual(f.read(), b'')
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +00001287
Andrew Svetlov405faed2012-12-25 12:18:09 +02001288
Guido van Rossume7ba4952007-06-06 23:52:48 +00001289class URandomTests(unittest.TestCase):
Georg Brandl2daf6ae2012-02-20 19:54:16 +01001290 def test_urandom_length(self):
1291 self.assertEqual(len(os.urandom(0)), 0)
1292 self.assertEqual(len(os.urandom(1)), 1)
1293 self.assertEqual(len(os.urandom(10)), 10)
1294 self.assertEqual(len(os.urandom(100)), 100)
1295 self.assertEqual(len(os.urandom(1000)), 1000)
1296
1297 def test_urandom_value(self):
1298 data1 = os.urandom(16)
Victor Stinner9b1f4742016-09-06 16:18:52 -07001299 self.assertIsInstance(data1, bytes)
Georg Brandl2daf6ae2012-02-20 19:54:16 +01001300 data2 = os.urandom(16)
1301 self.assertNotEqual(data1, data2)
1302
1303 def get_urandom_subprocess(self, count):
1304 code = '\n'.join((
1305 'import os, sys',
1306 'data = os.urandom(%s)' % count,
1307 'sys.stdout.buffer.write(data)',
1308 'sys.stdout.buffer.flush()'))
1309 out = assert_python_ok('-c', code)
1310 stdout = out[1]
Pablo Galindofb77e0d2017-12-07 06:55:44 +00001311 self.assertEqual(len(stdout), count)
Georg Brandl2daf6ae2012-02-20 19:54:16 +01001312 return stdout
1313
1314 def test_urandom_subprocess(self):
1315 data1 = self.get_urandom_subprocess(16)
1316 data2 = self.get_urandom_subprocess(16)
1317 self.assertNotEqual(data1, data2)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00001318
Victor Stinner4d6a3d62014-12-21 01:16:38 +01001319
Victor Stinner9b1f4742016-09-06 16:18:52 -07001320@unittest.skipUnless(hasattr(os, 'getrandom'), 'need os.getrandom()')
1321class GetRandomTests(unittest.TestCase):
Victor Stinner173a1f32016-09-06 19:57:40 -07001322 @classmethod
1323 def setUpClass(cls):
1324 try:
1325 os.getrandom(1)
1326 except OSError as exc:
1327 if exc.errno == errno.ENOSYS:
1328 # Python compiled on a more recent Linux version
1329 # than the current Linux kernel
1330 raise unittest.SkipTest("getrandom() syscall fails with ENOSYS")
1331 else:
1332 raise
1333
Victor Stinner9b1f4742016-09-06 16:18:52 -07001334 def test_getrandom_type(self):
1335 data = os.getrandom(16)
1336 self.assertIsInstance(data, bytes)
1337 self.assertEqual(len(data), 16)
1338
1339 def test_getrandom0(self):
1340 empty = os.getrandom(0)
1341 self.assertEqual(empty, b'')
1342
1343 def test_getrandom_random(self):
1344 self.assertTrue(hasattr(os, 'GRND_RANDOM'))
1345
1346 # Don't test os.getrandom(1, os.GRND_RANDOM) to not consume the rare
1347 # resource /dev/random
1348
1349 def test_getrandom_nonblock(self):
1350 # The call must not fail. Check also that the flag exists
1351 try:
1352 os.getrandom(1, os.GRND_NONBLOCK)
1353 except BlockingIOError:
1354 # System urandom is not initialized yet
1355 pass
1356
1357 def test_getrandom_value(self):
1358 data1 = os.getrandom(16)
1359 data2 = os.getrandom(16)
1360 self.assertNotEqual(data1, data2)
1361
1362
Victor Stinnerd8f432a2015-09-18 16:24:31 +02001363# os.urandom() doesn't use a file descriptor when it is implemented with the
1364# getentropy() function, the getrandom() function or the getrandom() syscall
1365OS_URANDOM_DONT_USE_FD = (
1366 sysconfig.get_config_var('HAVE_GETENTROPY') == 1
1367 or sysconfig.get_config_var('HAVE_GETRANDOM') == 1
1368 or sysconfig.get_config_var('HAVE_GETRANDOM_SYSCALL') == 1)
Victor Stinner4d6a3d62014-12-21 01:16:38 +01001369
Victor Stinnerd8f432a2015-09-18 16:24:31 +02001370@unittest.skipIf(OS_URANDOM_DONT_USE_FD ,
1371 "os.random() does not use a file descriptor")
Victor Stinner4d6a3d62014-12-21 01:16:38 +01001372class URandomFDTests(unittest.TestCase):
Antoine Pitrouec34ab52013-08-16 20:44:38 +02001373 @unittest.skipUnless(resource, "test requires the resource module")
1374 def test_urandom_failure(self):
Antoine Pitroueba25ba2013-08-24 20:52:27 +02001375 # Check urandom() failing when it is not able to open /dev/random.
1376 # We spawn a new process to make the test more robust (if getrlimit()
1377 # failed to restore the file descriptor limit after this, the whole
1378 # test suite would crash; this actually happened on the OS X Tiger
1379 # buildbot).
1380 code = """if 1:
1381 import errno
1382 import os
1383 import resource
1384
1385 soft_limit, hard_limit = resource.getrlimit(resource.RLIMIT_NOFILE)
1386 resource.setrlimit(resource.RLIMIT_NOFILE, (1, hard_limit))
1387 try:
Antoine Pitrouec34ab52013-08-16 20:44:38 +02001388 os.urandom(16)
Antoine Pitroueba25ba2013-08-24 20:52:27 +02001389 except OSError as e:
1390 assert e.errno == errno.EMFILE, e.errno
1391 else:
1392 raise AssertionError("OSError not raised")
1393 """
1394 assert_python_ok('-c', code)
Antoine Pitrouec34ab52013-08-16 20:44:38 +02001395
Antoine Pitroue472aea2014-04-26 14:33:03 +02001396 def test_urandom_fd_closed(self):
1397 # Issue #21207: urandom() should reopen its fd to /dev/urandom if
1398 # closed.
1399 code = """if 1:
1400 import os
1401 import sys
Steve Dowerd5a0be62015-03-07 21:25:54 -08001402 import test.support
Antoine Pitroue472aea2014-04-26 14:33:03 +02001403 os.urandom(4)
Steve Dowerd5a0be62015-03-07 21:25:54 -08001404 with test.support.SuppressCrashReport():
1405 os.closerange(3, 256)
Antoine Pitroue472aea2014-04-26 14:33:03 +02001406 sys.stdout.buffer.write(os.urandom(4))
1407 """
1408 rc, out, err = assert_python_ok('-Sc', code)
1409
1410 def test_urandom_fd_reopened(self):
1411 # Issue #21207: urandom() should detect its fd to /dev/urandom
1412 # changed to something else, and reopen it.
Victor Stinnerae39d232016-03-24 17:12:55 +01001413 self.addCleanup(support.unlink, support.TESTFN)
1414 create_file(support.TESTFN, b"x" * 256)
1415
Antoine Pitroue472aea2014-04-26 14:33:03 +02001416 code = """if 1:
1417 import os
1418 import sys
Steve Dowerd5a0be62015-03-07 21:25:54 -08001419 import test.support
Antoine Pitroue472aea2014-04-26 14:33:03 +02001420 os.urandom(4)
Steve Dowerd5a0be62015-03-07 21:25:54 -08001421 with test.support.SuppressCrashReport():
1422 for fd in range(3, 256):
1423 try:
1424 os.close(fd)
1425 except OSError:
1426 pass
1427 else:
1428 # Found the urandom fd (XXX hopefully)
1429 break
1430 os.closerange(3, 256)
Antoine Pitroue472aea2014-04-26 14:33:03 +02001431 with open({TESTFN!r}, 'rb') as f:
Xavier de Gaye21060102016-11-16 08:05:27 +01001432 new_fd = f.fileno()
1433 # Issue #26935: posix allows new_fd and fd to be equal but
1434 # some libc implementations have dup2 return an error in this
1435 # case.
1436 if new_fd != fd:
1437 os.dup2(new_fd, fd)
Antoine Pitroue472aea2014-04-26 14:33:03 +02001438 sys.stdout.buffer.write(os.urandom(4))
1439 sys.stdout.buffer.write(os.urandom(4))
1440 """.format(TESTFN=support.TESTFN)
1441 rc, out, err = assert_python_ok('-Sc', code)
1442 self.assertEqual(len(out), 8)
1443 self.assertNotEqual(out[0:4], out[4:8])
1444 rc, out2, err2 = assert_python_ok('-Sc', code)
1445 self.assertEqual(len(out2), 8)
1446 self.assertNotEqual(out2, out)
1447
Antoine Pitrouec34ab52013-08-16 20:44:38 +02001448
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001449@contextlib.contextmanager
1450def _execvpe_mockup(defpath=None):
1451 """
1452 Stubs out execv and execve functions when used as context manager.
1453 Records exec calls. The mock execv and execve functions always raise an
1454 exception as they would normally never return.
1455 """
1456 # A list of tuples containing (function name, first arg, args)
1457 # of calls to execv or execve that have been made.
1458 calls = []
1459
1460 def mock_execv(name, *args):
1461 calls.append(('execv', name, args))
1462 raise RuntimeError("execv called")
1463
1464 def mock_execve(name, *args):
1465 calls.append(('execve', name, args))
1466 raise OSError(errno.ENOTDIR, "execve called")
1467
1468 try:
1469 orig_execv = os.execv
1470 orig_execve = os.execve
1471 orig_defpath = os.defpath
1472 os.execv = mock_execv
1473 os.execve = mock_execve
1474 if defpath is not None:
1475 os.defpath = defpath
1476 yield calls
1477 finally:
1478 os.execv = orig_execv
1479 os.execve = orig_execve
1480 os.defpath = orig_defpath
1481
Victor Stinner4659ccf2016-09-14 10:57:00 +02001482
Guido van Rossume7ba4952007-06-06 23:52:48 +00001483class ExecTests(unittest.TestCase):
Mark Dickinson7cf03892010-04-16 13:45:35 +00001484 @unittest.skipIf(USING_LINUXTHREADS,
1485 "avoid triggering a linuxthreads bug: see issue #4970")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001486 def test_execvpe_with_bad_program(self):
Mark Dickinson7cf03892010-04-16 13:45:35 +00001487 self.assertRaises(OSError, os.execvpe, 'no such app-',
1488 ['no such app-'], None)
Guido van Rossume7ba4952007-06-06 23:52:48 +00001489
Steve Dowerbce26262016-11-19 19:17:26 -08001490 def test_execv_with_bad_arglist(self):
1491 self.assertRaises(ValueError, os.execv, 'notepad', ())
1492 self.assertRaises(ValueError, os.execv, 'notepad', [])
1493 self.assertRaises(ValueError, os.execv, 'notepad', ('',))
1494 self.assertRaises(ValueError, os.execv, 'notepad', [''])
1495
Thomas Heller6790d602007-08-30 17:15:14 +00001496 def test_execvpe_with_bad_arglist(self):
1497 self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
Steve Dowerbce26262016-11-19 19:17:26 -08001498 self.assertRaises(ValueError, os.execvpe, 'notepad', [], {})
1499 self.assertRaises(ValueError, os.execvpe, 'notepad', [''], {})
Thomas Heller6790d602007-08-30 17:15:14 +00001500
Gregory P. Smith4ae37772010-05-08 18:05:46 +00001501 @unittest.skipUnless(hasattr(os, '_execvpe'),
1502 "No internal os._execvpe function to test.")
Victor Stinnerb745a742010-05-18 17:17:23 +00001503 def _test_internal_execvpe(self, test_type):
1504 program_path = os.sep + 'absolutepath'
1505 if test_type is bytes:
1506 program = b'executable'
1507 fullpath = os.path.join(os.fsencode(program_path), program)
1508 native_fullpath = fullpath
1509 arguments = [b'progname', 'arg1', 'arg2']
1510 else:
1511 program = 'executable'
1512 arguments = ['progname', 'arg1', 'arg2']
1513 fullpath = os.path.join(program_path, program)
1514 if os.name != "nt":
1515 native_fullpath = os.fsencode(fullpath)
1516 else:
1517 native_fullpath = fullpath
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001518 env = {'spam': 'beans'}
1519
Victor Stinnerb745a742010-05-18 17:17:23 +00001520 # test os._execvpe() with an absolute path
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001521 with _execvpe_mockup() as calls:
Victor Stinnerb745a742010-05-18 17:17:23 +00001522 self.assertRaises(RuntimeError,
1523 os._execvpe, fullpath, arguments)
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001524 self.assertEqual(len(calls), 1)
1525 self.assertEqual(calls[0], ('execv', fullpath, (arguments,)))
1526
Victor Stinnerb745a742010-05-18 17:17:23 +00001527 # test os._execvpe() with a relative path:
1528 # os.get_exec_path() returns defpath
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001529 with _execvpe_mockup(defpath=program_path) as calls:
Victor Stinnerb745a742010-05-18 17:17:23 +00001530 self.assertRaises(OSError,
1531 os._execvpe, program, arguments, env=env)
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001532 self.assertEqual(len(calls), 1)
Victor Stinnerb745a742010-05-18 17:17:23 +00001533 self.assertSequenceEqual(calls[0],
1534 ('execve', native_fullpath, (arguments, env)))
1535
1536 # test os._execvpe() with a relative path:
1537 # os.get_exec_path() reads the 'PATH' variable
1538 with _execvpe_mockup() as calls:
1539 env_path = env.copy()
Victor Stinner38430e22010-08-19 17:10:18 +00001540 if test_type is bytes:
1541 env_path[b'PATH'] = program_path
1542 else:
1543 env_path['PATH'] = program_path
Victor Stinnerb745a742010-05-18 17:17:23 +00001544 self.assertRaises(OSError,
1545 os._execvpe, program, arguments, env=env_path)
1546 self.assertEqual(len(calls), 1)
1547 self.assertSequenceEqual(calls[0],
1548 ('execve', native_fullpath, (arguments, env_path)))
1549
1550 def test_internal_execvpe_str(self):
1551 self._test_internal_execvpe(str)
1552 if os.name != "nt":
1553 self._test_internal_execvpe(bytes)
Victor Stinnerc2d095f2010-05-17 00:14:53 +00001554
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03001555 def test_execve_invalid_env(self):
1556 args = [sys.executable, '-c', 'pass']
1557
Ville Skyttä49b27342017-08-03 09:00:59 +03001558 # null character in the environment variable name
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03001559 newenv = os.environ.copy()
1560 newenv["FRUIT\0VEGETABLE"] = "cabbage"
1561 with self.assertRaises(ValueError):
1562 os.execve(args[0], args, newenv)
1563
Ville Skyttä49b27342017-08-03 09:00:59 +03001564 # null character in the environment variable value
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03001565 newenv = os.environ.copy()
1566 newenv["FRUIT"] = "orange\0VEGETABLE=cabbage"
1567 with self.assertRaises(ValueError):
1568 os.execve(args[0], args, newenv)
1569
Ville Skyttä49b27342017-08-03 09:00:59 +03001570 # equal character in the environment variable name
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03001571 newenv = os.environ.copy()
1572 newenv["FRUIT=ORANGE"] = "lemon"
1573 with self.assertRaises(ValueError):
1574 os.execve(args[0], args, newenv)
1575
Gregory P. Smith4ae37772010-05-08 18:05:46 +00001576
Serhiy Storchaka43767632013-11-03 21:31:38 +02001577@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
Thomas Wouters477c8d52006-05-27 19:21:47 +00001578class Win32ErrorTests(unittest.TestCase):
Victor Stinnere77c9742016-03-25 10:28:23 +01001579 def setUp(self):
Victor Stinner32830142016-03-25 15:12:08 +01001580 try:
1581 os.stat(support.TESTFN)
1582 except FileNotFoundError:
1583 exists = False
1584 except OSError as exc:
1585 exists = True
1586 self.fail("file %s must not exist; os.stat failed with %s"
1587 % (support.TESTFN, exc))
1588 else:
1589 self.fail("file %s must not exist" % support.TESTFN)
Victor Stinnere77c9742016-03-25 10:28:23 +01001590
Thomas Wouters477c8d52006-05-27 19:21:47 +00001591 def test_rename(self):
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001592 self.assertRaises(OSError, os.rename, support.TESTFN, support.TESTFN+".bak")
Thomas Wouters477c8d52006-05-27 19:21:47 +00001593
1594 def test_remove(self):
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001595 self.assertRaises(OSError, os.remove, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001596
1597 def test_chdir(self):
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001598 self.assertRaises(OSError, os.chdir, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001599
1600 def test_mkdir(self):
Victor Stinnerae39d232016-03-24 17:12:55 +01001601 self.addCleanup(support.unlink, support.TESTFN)
1602
Victor Stinnere77c9742016-03-25 10:28:23 +01001603 with open(support.TESTFN, "x") as f:
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001604 self.assertRaises(OSError, os.mkdir, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001605
1606 def test_utime(self):
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001607 self.assertRaises(OSError, os.utime, support.TESTFN, None)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001608
Thomas Wouters477c8d52006-05-27 19:21:47 +00001609 def test_chmod(self):
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02001610 self.assertRaises(OSError, os.chmod, support.TESTFN, 0)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001611
Victor Stinnere77c9742016-03-25 10:28:23 +01001612
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001613class TestInvalidFD(unittest.TestCase):
Benjamin Peterson05e782f2009-01-19 15:15:02 +00001614 singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat",
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001615 "fstatvfs", "fsync", "tcgetpgrp", "ttyname"]
1616 #singles.append("close")
Steve Dower39294992016-08-30 21:22:36 -07001617 #We omit close because it doesn't raise an exception on some platforms
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001618 def get_single(f):
1619 def helper(self):
Benjamin Peterson7522c742009-01-19 21:00:09 +00001620 if hasattr(os, f):
1621 self.check(getattr(os, f))
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001622 return helper
1623 for f in singles:
1624 locals()["test_"+f] = get_single(f)
1625
Benjamin Peterson7522c742009-01-19 21:00:09 +00001626 def check(self, f, *args):
Benjamin Peterson5c6d7872009-02-06 02:40:07 +00001627 try:
1628 f(support.make_bad_fd(), *args)
1629 except OSError as e:
1630 self.assertEqual(e.errno, errno.EBADF)
1631 else:
Martin Panter7462b6492015-11-02 03:37:02 +00001632 self.fail("%r didn't raise an OSError with a bad file descriptor"
Benjamin Peterson5c6d7872009-02-06 02:40:07 +00001633 % f)
Benjamin Peterson7522c742009-01-19 21:00:09 +00001634
Serhiy Storchaka43767632013-11-03 21:31:38 +02001635 @unittest.skipUnless(hasattr(os, 'isatty'), 'test needs os.isatty()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001636 def test_isatty(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001637 self.assertEqual(os.isatty(support.make_bad_fd()), False)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001638
Serhiy Storchaka43767632013-11-03 21:31:38 +02001639 @unittest.skipUnless(hasattr(os, 'closerange'), 'test needs os.closerange()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001640 def test_closerange(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001641 fd = support.make_bad_fd()
1642 # Make sure none of the descriptors we are about to close are
1643 # currently valid (issue 6542).
1644 for i in range(10):
1645 try: os.fstat(fd+i)
1646 except OSError:
1647 pass
1648 else:
1649 break
1650 if i < 2:
1651 raise unittest.SkipTest(
1652 "Unable to acquire a range of invalid file descriptors")
1653 self.assertEqual(os.closerange(fd, fd + i-1), None)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001654
Serhiy Storchaka43767632013-11-03 21:31:38 +02001655 @unittest.skipUnless(hasattr(os, 'dup2'), 'test needs os.dup2()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001656 def test_dup2(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001657 self.check(os.dup2, 20)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001658
Serhiy Storchaka43767632013-11-03 21:31:38 +02001659 @unittest.skipUnless(hasattr(os, 'fchmod'), 'test needs os.fchmod()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001660 def test_fchmod(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001661 self.check(os.fchmod, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001662
Serhiy Storchaka43767632013-11-03 21:31:38 +02001663 @unittest.skipUnless(hasattr(os, 'fchown'), 'test needs os.fchown()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001664 def test_fchown(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001665 self.check(os.fchown, -1, -1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001666
Serhiy Storchaka43767632013-11-03 21:31:38 +02001667 @unittest.skipUnless(hasattr(os, 'fpathconf'), 'test needs os.fpathconf()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001668 def test_fpathconf(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001669 self.check(os.pathconf, "PC_NAME_MAX")
1670 self.check(os.fpathconf, "PC_NAME_MAX")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001671
Serhiy Storchaka43767632013-11-03 21:31:38 +02001672 @unittest.skipUnless(hasattr(os, 'ftruncate'), 'test needs os.ftruncate()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001673 def test_ftruncate(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001674 self.check(os.truncate, 0)
1675 self.check(os.ftruncate, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001676
Serhiy Storchaka43767632013-11-03 21:31:38 +02001677 @unittest.skipUnless(hasattr(os, 'lseek'), 'test needs os.lseek()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001678 def test_lseek(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001679 self.check(os.lseek, 0, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001680
Serhiy Storchaka43767632013-11-03 21:31:38 +02001681 @unittest.skipUnless(hasattr(os, 'read'), 'test needs os.read()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001682 def test_read(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001683 self.check(os.read, 1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001684
Victor Stinner57ddf782014-01-08 15:21:28 +01001685 @unittest.skipUnless(hasattr(os, 'readv'), 'test needs os.readv()')
1686 def test_readv(self):
1687 buf = bytearray(10)
1688 self.check(os.readv, [buf])
1689
Serhiy Storchaka43767632013-11-03 21:31:38 +02001690 @unittest.skipUnless(hasattr(os, 'tcsetpgrp'), 'test needs os.tcsetpgrp()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001691 def test_tcsetpgrpt(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001692 self.check(os.tcsetpgrp, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001693
Serhiy Storchaka43767632013-11-03 21:31:38 +02001694 @unittest.skipUnless(hasattr(os, 'write'), 'test needs os.write()')
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001695 def test_write(self):
Serhiy Storchaka43767632013-11-03 21:31:38 +02001696 self.check(os.write, b" ")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +00001697
Victor Stinner57ddf782014-01-08 15:21:28 +01001698 @unittest.skipUnless(hasattr(os, 'writev'), 'test needs os.writev()')
1699 def test_writev(self):
1700 self.check(os.writev, [b'abc'])
1701
Victor Stinner1db9e7b2014-07-29 22:32:47 +02001702 def test_inheritable(self):
1703 self.check(os.get_inheritable)
1704 self.check(os.set_inheritable, True)
1705
1706 @unittest.skipUnless(hasattr(os, 'get_blocking'),
1707 'needs os.get_blocking() and os.set_blocking()')
1708 def test_blocking(self):
1709 self.check(os.get_blocking)
1710 self.check(os.set_blocking, True)
1711
Brian Curtin1b9df392010-11-24 20:24:31 +00001712
1713class LinkTests(unittest.TestCase):
1714 def setUp(self):
1715 self.file1 = support.TESTFN
1716 self.file2 = os.path.join(support.TESTFN + "2")
1717
Brian Curtinc0abc4e2010-11-30 23:46:54 +00001718 def tearDown(self):
Brian Curtin1b9df392010-11-24 20:24:31 +00001719 for file in (self.file1, self.file2):
1720 if os.path.exists(file):
1721 os.unlink(file)
1722
Brian Curtin1b9df392010-11-24 20:24:31 +00001723 def _test_link(self, file1, file2):
Victor Stinnere77c9742016-03-25 10:28:23 +01001724 create_file(file1)
Brian Curtin1b9df392010-11-24 20:24:31 +00001725
xdegaye6a55d092017-11-12 17:57:04 +01001726 try:
1727 os.link(file1, file2)
1728 except PermissionError as e:
1729 self.skipTest('os.link(): %s' % e)
Brian Curtin1b9df392010-11-24 20:24:31 +00001730 with open(file1, "r") as f1, open(file2, "r") as f2:
1731 self.assertTrue(os.path.sameopenfile(f1.fileno(), f2.fileno()))
1732
1733 def test_link(self):
1734 self._test_link(self.file1, self.file2)
1735
1736 def test_link_bytes(self):
1737 self._test_link(bytes(self.file1, sys.getfilesystemencoding()),
1738 bytes(self.file2, sys.getfilesystemencoding()))
1739
Brian Curtinf498b752010-11-30 15:54:04 +00001740 def test_unicode_name(self):
Brian Curtin43f0c272010-11-30 15:40:04 +00001741 try:
Brian Curtinf498b752010-11-30 15:54:04 +00001742 os.fsencode("\xf1")
Brian Curtin43f0c272010-11-30 15:40:04 +00001743 except UnicodeError:
1744 raise unittest.SkipTest("Unable to encode for this platform.")
1745
Brian Curtinf498b752010-11-30 15:54:04 +00001746 self.file1 += "\xf1"
Brian Curtinfc889c42010-11-28 23:59:46 +00001747 self.file2 = self.file1 + "2"
1748 self._test_link(self.file1, self.file2)
1749
Serhiy Storchaka43767632013-11-03 21:31:38 +02001750@unittest.skipIf(sys.platform == "win32", "Posix specific tests")
1751class PosixUidGidTests(unittest.TestCase):
1752 @unittest.skipUnless(hasattr(os, 'setuid'), 'test needs os.setuid()')
1753 def test_setuid(self):
1754 if os.getuid() != 0:
1755 self.assertRaises(OSError, os.setuid, 0)
1756 self.assertRaises(OverflowError, os.setuid, 1<<32)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001757
Serhiy Storchaka43767632013-11-03 21:31:38 +02001758 @unittest.skipUnless(hasattr(os, 'setgid'), 'test needs os.setgid()')
1759 def test_setgid(self):
1760 if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
1761 self.assertRaises(OSError, os.setgid, 0)
1762 self.assertRaises(OverflowError, os.setgid, 1<<32)
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001763
Serhiy Storchaka43767632013-11-03 21:31:38 +02001764 @unittest.skipUnless(hasattr(os, 'seteuid'), 'test needs os.seteuid()')
1765 def test_seteuid(self):
1766 if os.getuid() != 0:
1767 self.assertRaises(OSError, os.seteuid, 0)
1768 self.assertRaises(OverflowError, os.seteuid, 1<<32)
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001769
Serhiy Storchaka43767632013-11-03 21:31:38 +02001770 @unittest.skipUnless(hasattr(os, 'setegid'), 'test needs os.setegid()')
1771 def test_setegid(self):
1772 if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
1773 self.assertRaises(OSError, os.setegid, 0)
1774 self.assertRaises(OverflowError, os.setegid, 1<<32)
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001775
Serhiy Storchaka43767632013-11-03 21:31:38 +02001776 @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()')
1777 def test_setreuid(self):
1778 if os.getuid() != 0:
1779 self.assertRaises(OSError, os.setreuid, 0, 0)
1780 self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
1781 self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001782
Serhiy Storchaka43767632013-11-03 21:31:38 +02001783 @unittest.skipUnless(hasattr(os, 'setreuid'), 'test needs os.setreuid()')
1784 def test_setreuid_neg1(self):
1785 # Needs to accept -1. We run this in a subprocess to avoid
1786 # altering the test runner's process state (issue8045).
1787 subprocess.check_call([
1788 sys.executable, '-c',
1789 'import os,sys;os.setreuid(-1,-1);sys.exit(0)'])
Benjamin Petersonebe87ba2010-03-06 20:34:24 +00001790
Serhiy Storchaka43767632013-11-03 21:31:38 +02001791 @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()')
1792 def test_setregid(self):
1793 if os.getuid() != 0 and not HAVE_WHEEL_GROUP:
1794 self.assertRaises(OSError, os.setregid, 0, 0)
1795 self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
1796 self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001797
Serhiy Storchaka43767632013-11-03 21:31:38 +02001798 @unittest.skipUnless(hasattr(os, 'setregid'), 'test needs os.setregid()')
1799 def test_setregid_neg1(self):
1800 # Needs to accept -1. We run this in a subprocess to avoid
1801 # altering the test runner's process state (issue8045).
1802 subprocess.check_call([
1803 sys.executable, '-c',
1804 'import os,sys;os.setregid(-1,-1);sys.exit(0)'])
Benjamin Petersonebe87ba2010-03-06 20:34:24 +00001805
Serhiy Storchaka43767632013-11-03 21:31:38 +02001806@unittest.skipIf(sys.platform == "win32", "Posix specific tests")
1807class Pep383Tests(unittest.TestCase):
1808 def setUp(self):
1809 if support.TESTFN_UNENCODABLE:
1810 self.dir = support.TESTFN_UNENCODABLE
1811 elif support.TESTFN_NONASCII:
1812 self.dir = support.TESTFN_NONASCII
1813 else:
1814 self.dir = support.TESTFN
1815 self.bdir = os.fsencode(self.dir)
Martin v. Löwis011e8422009-05-05 04:43:17 +00001816
Serhiy Storchaka43767632013-11-03 21:31:38 +02001817 bytesfn = []
1818 def add_filename(fn):
Victor Stinnerd91df1a2010-08-18 10:56:19 +00001819 try:
Serhiy Storchaka43767632013-11-03 21:31:38 +02001820 fn = os.fsencode(fn)
1821 except UnicodeEncodeError:
1822 return
1823 bytesfn.append(fn)
1824 add_filename(support.TESTFN_UNICODE)
1825 if support.TESTFN_UNENCODABLE:
1826 add_filename(support.TESTFN_UNENCODABLE)
1827 if support.TESTFN_NONASCII:
1828 add_filename(support.TESTFN_NONASCII)
1829 if not bytesfn:
1830 self.skipTest("couldn't create any non-ascii filename")
Martin v. Löwis011e8422009-05-05 04:43:17 +00001831
Serhiy Storchaka43767632013-11-03 21:31:38 +02001832 self.unicodefn = set()
1833 os.mkdir(self.dir)
1834 try:
1835 for fn in bytesfn:
1836 support.create_empty_file(os.path.join(self.bdir, fn))
1837 fn = os.fsdecode(fn)
1838 if fn in self.unicodefn:
1839 raise ValueError("duplicate filename")
1840 self.unicodefn.add(fn)
1841 except:
Martin v. Löwis011e8422009-05-05 04:43:17 +00001842 shutil.rmtree(self.dir)
Serhiy Storchaka43767632013-11-03 21:31:38 +02001843 raise
Martin v. Löwis011e8422009-05-05 04:43:17 +00001844
Serhiy Storchaka43767632013-11-03 21:31:38 +02001845 def tearDown(self):
1846 shutil.rmtree(self.dir)
Martin v. Löwis011e8422009-05-05 04:43:17 +00001847
Serhiy Storchaka43767632013-11-03 21:31:38 +02001848 def test_listdir(self):
1849 expected = self.unicodefn
1850 found = set(os.listdir(self.dir))
1851 self.assertEqual(found, expected)
1852 # test listdir without arguments
1853 current_directory = os.getcwd()
1854 try:
1855 os.chdir(os.sep)
1856 self.assertEqual(set(os.listdir()), set(os.listdir(os.sep)))
1857 finally:
1858 os.chdir(current_directory)
Martin v. Löwis011e8422009-05-05 04:43:17 +00001859
Serhiy Storchaka43767632013-11-03 21:31:38 +02001860 def test_open(self):
1861 for fn in self.unicodefn:
1862 f = open(os.path.join(self.dir, fn), 'rb')
1863 f.close()
Victor Stinnere4110dc2013-01-01 23:05:55 +01001864
Serhiy Storchaka43767632013-11-03 21:31:38 +02001865 @unittest.skipUnless(hasattr(os, 'statvfs'),
1866 "need os.statvfs()")
1867 def test_statvfs(self):
1868 # issue #9645
1869 for fn in self.unicodefn:
1870 # should not fail with file not found error
1871 fullname = os.path.join(self.dir, fn)
1872 os.statvfs(fullname)
1873
1874 def test_stat(self):
1875 for fn in self.unicodefn:
1876 os.stat(os.path.join(self.dir, fn))
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001877
Brian Curtineb24d742010-04-12 17:16:38 +00001878@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
1879class Win32KillTests(unittest.TestCase):
Brian Curtinc3acbc32010-05-28 16:08:40 +00001880 def _kill(self, sig):
1881 # Start sys.executable as a subprocess and communicate from the
1882 # subprocess to the parent that the interpreter is ready. When it
1883 # becomes ready, send *sig* via os.kill to the subprocess and check
1884 # that the return code is equal to *sig*.
1885 import ctypes
1886 from ctypes import wintypes
1887 import msvcrt
1888
1889 # Since we can't access the contents of the process' stdout until the
1890 # process has exited, use PeekNamedPipe to see what's inside stdout
1891 # without waiting. This is done so we can tell that the interpreter
1892 # is started and running at a point where it could handle a signal.
1893 PeekNamedPipe = ctypes.windll.kernel32.PeekNamedPipe
1894 PeekNamedPipe.restype = wintypes.BOOL
1895 PeekNamedPipe.argtypes = (wintypes.HANDLE, # Pipe handle
1896 ctypes.POINTER(ctypes.c_char), # stdout buf
1897 wintypes.DWORD, # Buffer size
1898 ctypes.POINTER(wintypes.DWORD), # bytes read
1899 ctypes.POINTER(wintypes.DWORD), # bytes avail
1900 ctypes.POINTER(wintypes.DWORD)) # bytes left
1901 msg = "running"
1902 proc = subprocess.Popen([sys.executable, "-c",
1903 "import sys;"
1904 "sys.stdout.write('{}');"
1905 "sys.stdout.flush();"
1906 "input()".format(msg)],
1907 stdout=subprocess.PIPE,
1908 stderr=subprocess.PIPE,
1909 stdin=subprocess.PIPE)
Brian Curtin43ec5772010-11-05 15:17:11 +00001910 self.addCleanup(proc.stdout.close)
1911 self.addCleanup(proc.stderr.close)
1912 self.addCleanup(proc.stdin.close)
Brian Curtinc3acbc32010-05-28 16:08:40 +00001913
1914 count, max = 0, 100
1915 while count < max and proc.poll() is None:
1916 # Create a string buffer to store the result of stdout from the pipe
1917 buf = ctypes.create_string_buffer(len(msg))
1918 # Obtain the text currently in proc.stdout
1919 # Bytes read/avail/left are left as NULL and unused
1920 rslt = PeekNamedPipe(msvcrt.get_osfhandle(proc.stdout.fileno()),
1921 buf, ctypes.sizeof(buf), None, None, None)
1922 self.assertNotEqual(rslt, 0, "PeekNamedPipe failed")
1923 if buf.value:
1924 self.assertEqual(msg, buf.value.decode())
1925 break
1926 time.sleep(0.1)
1927 count += 1
1928 else:
1929 self.fail("Did not receive communication from the subprocess")
1930
Brian Curtineb24d742010-04-12 17:16:38 +00001931 os.kill(proc.pid, sig)
1932 self.assertEqual(proc.wait(), sig)
1933
1934 def test_kill_sigterm(self):
1935 # SIGTERM doesn't mean anything special, but make sure it works
Brian Curtinc3acbc32010-05-28 16:08:40 +00001936 self._kill(signal.SIGTERM)
Brian Curtineb24d742010-04-12 17:16:38 +00001937
1938 def test_kill_int(self):
1939 # os.kill on Windows can take an int which gets set as the exit code
Brian Curtinc3acbc32010-05-28 16:08:40 +00001940 self._kill(100)
Brian Curtineb24d742010-04-12 17:16:38 +00001941
1942 def _kill_with_event(self, event, name):
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001943 tagname = "test_os_%s" % uuid.uuid1()
1944 m = mmap.mmap(-1, 1, tagname)
1945 m[0] = 0
Brian Curtineb24d742010-04-12 17:16:38 +00001946 # Run a script which has console control handling enabled.
1947 proc = subprocess.Popen([sys.executable,
1948 os.path.join(os.path.dirname(__file__),
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001949 "win_console_handler.py"), tagname],
Brian Curtineb24d742010-04-12 17:16:38 +00001950 creationflags=subprocess.CREATE_NEW_PROCESS_GROUP)
1951 # Let the interpreter startup before we send signals. See #3137.
Hirokazu Yamamoto8e9fe9f2010-12-05 02:41:46 +00001952 count, max = 0, 100
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001953 while count < max and proc.poll() is None:
Brian Curtinf668df52010-10-15 14:21:06 +00001954 if m[0] == 1:
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001955 break
Hirokazu Yamamoto8e9fe9f2010-12-05 02:41:46 +00001956 time.sleep(0.1)
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001957 count += 1
1958 else:
Hirokazu Yamamoto8e9fe9f2010-12-05 02:41:46 +00001959 # Forcefully kill the process if we weren't able to signal it.
1960 os.kill(proc.pid, signal.SIGINT)
Hirokazu Yamamoto54c950f2010-10-08 08:38:15 +00001961 self.fail("Subprocess didn't finish initialization")
Brian Curtineb24d742010-04-12 17:16:38 +00001962 os.kill(proc.pid, event)
1963 # proc.send_signal(event) could also be done here.
1964 # Allow time for the signal to be passed and the process to exit.
1965 time.sleep(0.5)
1966 if not proc.poll():
1967 # Forcefully kill the process if we weren't able to signal it.
1968 os.kill(proc.pid, signal.SIGINT)
1969 self.fail("subprocess did not stop on {}".format(name))
1970
Serhiy Storchaka0424eaf2015-09-12 17:45:25 +03001971 @unittest.skip("subprocesses aren't inheriting Ctrl+C property")
Brian Curtineb24d742010-04-12 17:16:38 +00001972 def test_CTRL_C_EVENT(self):
1973 from ctypes import wintypes
1974 import ctypes
1975
1976 # Make a NULL value by creating a pointer with no argument.
1977 NULL = ctypes.POINTER(ctypes.c_int)()
1978 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
1979 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
1980 wintypes.BOOL)
1981 SetConsoleCtrlHandler.restype = wintypes.BOOL
1982
1983 # Calling this with NULL and FALSE causes the calling process to
Serhiy Storchaka0424eaf2015-09-12 17:45:25 +03001984 # handle Ctrl+C, rather than ignore it. This property is inherited
Brian Curtineb24d742010-04-12 17:16:38 +00001985 # by subprocesses.
1986 SetConsoleCtrlHandler(NULL, 0)
1987
1988 self._kill_with_event(signal.CTRL_C_EVENT, "CTRL_C_EVENT")
1989
1990 def test_CTRL_BREAK_EVENT(self):
1991 self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT")
1992
1993
Brian Curtind40e6f72010-07-08 21:39:08 +00001994@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
Tim Golden781bbeb2013-10-25 20:24:06 +01001995class Win32ListdirTests(unittest.TestCase):
1996 """Test listdir on Windows."""
1997
1998 def setUp(self):
1999 self.created_paths = []
2000 for i in range(2):
2001 dir_name = 'SUB%d' % i
2002 dir_path = os.path.join(support.TESTFN, dir_name)
2003 file_name = 'FILE%d' % i
2004 file_path = os.path.join(support.TESTFN, file_name)
2005 os.makedirs(dir_path)
2006 with open(file_path, 'w') as f:
2007 f.write("I'm %s and proud of it. Blame test_os.\n" % file_path)
2008 self.created_paths.extend([dir_name, file_name])
2009 self.created_paths.sort()
2010
2011 def tearDown(self):
2012 shutil.rmtree(support.TESTFN)
2013
2014 def test_listdir_no_extended_path(self):
2015 """Test when the path is not an "extended" path."""
2016 # unicode
2017 self.assertEqual(
2018 sorted(os.listdir(support.TESTFN)),
2019 self.created_paths)
Victor Stinner923590e2016-03-24 09:11:48 +01002020
Tim Golden781bbeb2013-10-25 20:24:06 +01002021 # bytes
Steve Dowercc16be82016-09-08 10:35:16 -07002022 self.assertEqual(
2023 sorted(os.listdir(os.fsencode(support.TESTFN))),
2024 [os.fsencode(path) for path in self.created_paths])
Tim Golden781bbeb2013-10-25 20:24:06 +01002025
2026 def test_listdir_extended_path(self):
2027 """Test when the path starts with '\\\\?\\'."""
Tim Golden1cc35402013-10-25 21:26:06 +01002028 # See: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath
Tim Golden781bbeb2013-10-25 20:24:06 +01002029 # unicode
2030 path = '\\\\?\\' + os.path.abspath(support.TESTFN)
2031 self.assertEqual(
2032 sorted(os.listdir(path)),
2033 self.created_paths)
Victor Stinner923590e2016-03-24 09:11:48 +01002034
Tim Golden781bbeb2013-10-25 20:24:06 +01002035 # bytes
Steve Dowercc16be82016-09-08 10:35:16 -07002036 path = b'\\\\?\\' + os.fsencode(os.path.abspath(support.TESTFN))
2037 self.assertEqual(
2038 sorted(os.listdir(path)),
2039 [os.fsencode(path) for path in self.created_paths])
Tim Golden781bbeb2013-10-25 20:24:06 +01002040
2041
2042@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
Brian Curtin3b4499c2010-12-28 14:31:47 +00002043@support.skip_unless_symlink
Brian Curtind40e6f72010-07-08 21:39:08 +00002044class Win32SymlinkTests(unittest.TestCase):
2045 filelink = 'filelinktest'
2046 filelink_target = os.path.abspath(__file__)
2047 dirlink = 'dirlinktest'
2048 dirlink_target = os.path.dirname(filelink_target)
2049 missing_link = 'missing link'
2050
2051 def setUp(self):
2052 assert os.path.exists(self.dirlink_target)
2053 assert os.path.exists(self.filelink_target)
2054 assert not os.path.exists(self.dirlink)
2055 assert not os.path.exists(self.filelink)
2056 assert not os.path.exists(self.missing_link)
2057
2058 def tearDown(self):
2059 if os.path.exists(self.filelink):
2060 os.remove(self.filelink)
2061 if os.path.exists(self.dirlink):
2062 os.rmdir(self.dirlink)
2063 if os.path.lexists(self.missing_link):
2064 os.remove(self.missing_link)
2065
2066 def test_directory_link(self):
Jason R. Coombs3a092862013-05-27 23:21:28 -04002067 os.symlink(self.dirlink_target, self.dirlink)
Brian Curtind40e6f72010-07-08 21:39:08 +00002068 self.assertTrue(os.path.exists(self.dirlink))
2069 self.assertTrue(os.path.isdir(self.dirlink))
2070 self.assertTrue(os.path.islink(self.dirlink))
2071 self.check_stat(self.dirlink, self.dirlink_target)
2072
2073 def test_file_link(self):
2074 os.symlink(self.filelink_target, self.filelink)
2075 self.assertTrue(os.path.exists(self.filelink))
2076 self.assertTrue(os.path.isfile(self.filelink))
2077 self.assertTrue(os.path.islink(self.filelink))
2078 self.check_stat(self.filelink, self.filelink_target)
2079
2080 def _create_missing_dir_link(self):
2081 'Create a "directory" link to a non-existent target'
2082 linkname = self.missing_link
2083 if os.path.lexists(linkname):
2084 os.remove(linkname)
2085 target = r'c:\\target does not exist.29r3c740'
2086 assert not os.path.exists(target)
2087 target_is_dir = True
2088 os.symlink(target, linkname, target_is_dir)
2089
2090 def test_remove_directory_link_to_missing_target(self):
2091 self._create_missing_dir_link()
2092 # For compatibility with Unix, os.remove will check the
2093 # directory status and call RemoveDirectory if the symlink
2094 # was created with target_is_dir==True.
2095 os.remove(self.missing_link)
2096
2097 @unittest.skip("currently fails; consider for improvement")
2098 def test_isdir_on_directory_link_to_missing_target(self):
2099 self._create_missing_dir_link()
2100 # consider having isdir return true for directory links
2101 self.assertTrue(os.path.isdir(self.missing_link))
2102
2103 @unittest.skip("currently fails; consider for improvement")
2104 def test_rmdir_on_directory_link_to_missing_target(self):
2105 self._create_missing_dir_link()
2106 # consider allowing rmdir to remove directory links
2107 os.rmdir(self.missing_link)
2108
2109 def check_stat(self, link, target):
2110 self.assertEqual(os.stat(link), os.stat(target))
2111 self.assertNotEqual(os.lstat(link), os.stat(link))
2112
Brian Curtind25aef52011-06-13 15:16:04 -05002113 bytes_link = os.fsencode(link)
Steve Dowercc16be82016-09-08 10:35:16 -07002114 self.assertEqual(os.stat(bytes_link), os.stat(target))
2115 self.assertNotEqual(os.lstat(bytes_link), os.stat(bytes_link))
Brian Curtind25aef52011-06-13 15:16:04 -05002116
2117 def test_12084(self):
2118 level1 = os.path.abspath(support.TESTFN)
2119 level2 = os.path.join(level1, "level2")
2120 level3 = os.path.join(level2, "level3")
Victor Stinnerae39d232016-03-24 17:12:55 +01002121 self.addCleanup(support.rmtree, level1)
2122
2123 os.mkdir(level1)
2124 os.mkdir(level2)
2125 os.mkdir(level3)
2126
2127 file1 = os.path.abspath(os.path.join(level1, "file1"))
2128 create_file(file1)
2129
2130 orig_dir = os.getcwd()
Brian Curtind25aef52011-06-13 15:16:04 -05002131 try:
Victor Stinnerae39d232016-03-24 17:12:55 +01002132 os.chdir(level2)
2133 link = os.path.join(level2, "link")
2134 os.symlink(os.path.relpath(file1), "link")
2135 self.assertIn("link", os.listdir(os.getcwd()))
Brian Curtind25aef52011-06-13 15:16:04 -05002136
Victor Stinnerae39d232016-03-24 17:12:55 +01002137 # Check os.stat calls from the same dir as the link
2138 self.assertEqual(os.stat(file1), os.stat("link"))
Brian Curtind25aef52011-06-13 15:16:04 -05002139
Victor Stinnerae39d232016-03-24 17:12:55 +01002140 # Check os.stat calls from a dir below the link
2141 os.chdir(level1)
2142 self.assertEqual(os.stat(file1),
2143 os.stat(os.path.relpath(link)))
Brian Curtind25aef52011-06-13 15:16:04 -05002144
Victor Stinnerae39d232016-03-24 17:12:55 +01002145 # Check os.stat calls from a dir above the link
2146 os.chdir(level3)
2147 self.assertEqual(os.stat(file1),
2148 os.stat(os.path.relpath(link)))
Brian Curtind25aef52011-06-13 15:16:04 -05002149 finally:
Victor Stinnerae39d232016-03-24 17:12:55 +01002150 os.chdir(orig_dir)
Brian Curtind25aef52011-06-13 15:16:04 -05002151
Miss Islington (bot)74ebbae2018-02-12 13:39:42 -08002152 @unittest.skipUnless(os.path.lexists(r'C:\Users\All Users')
2153 and os.path.exists(r'C:\ProgramData'),
2154 'Test directories not found')
2155 def test_29248(self):
2156 # os.symlink() calls CreateSymbolicLink, which creates
2157 # the reparse data buffer with the print name stored
2158 # first, so the offset is always 0. CreateSymbolicLink
2159 # stores the "PrintName" DOS path (e.g. "C:\") first,
2160 # with an offset of 0, followed by the "SubstituteName"
2161 # NT path (e.g. "\??\C:\"). The "All Users" link, on
2162 # the other hand, seems to have been created manually
2163 # with an inverted order.
2164 target = os.readlink(r'C:\Users\All Users')
2165 self.assertTrue(os.path.samefile(target, r'C:\ProgramData'))
2166
Brian Curtind40e6f72010-07-08 21:39:08 +00002167
Tim Golden0321cf22014-05-05 19:46:17 +01002168@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
2169class Win32JunctionTests(unittest.TestCase):
2170 junction = 'junctiontest'
2171 junction_target = os.path.dirname(os.path.abspath(__file__))
2172
2173 def setUp(self):
2174 assert os.path.exists(self.junction_target)
2175 assert not os.path.exists(self.junction)
2176
2177 def tearDown(self):
2178 if os.path.exists(self.junction):
2179 # os.rmdir delegates to Windows' RemoveDirectoryW,
2180 # which removes junction points safely.
2181 os.rmdir(self.junction)
2182
2183 def test_create_junction(self):
2184 _winapi.CreateJunction(self.junction_target, self.junction)
2185 self.assertTrue(os.path.exists(self.junction))
2186 self.assertTrue(os.path.isdir(self.junction))
2187
2188 # Junctions are not recognized as links.
2189 self.assertFalse(os.path.islink(self.junction))
2190
2191 def test_unlink_removes_junction(self):
2192 _winapi.CreateJunction(self.junction_target, self.junction)
2193 self.assertTrue(os.path.exists(self.junction))
2194
2195 os.unlink(self.junction)
2196 self.assertFalse(os.path.exists(self.junction))
2197
2198
Jason R. Coombs3a092862013-05-27 23:21:28 -04002199@support.skip_unless_symlink
2200class NonLocalSymlinkTests(unittest.TestCase):
2201
2202 def setUp(self):
R David Murray44b548d2016-09-08 13:59:53 -04002203 r"""
Jason R. Coombs3a092862013-05-27 23:21:28 -04002204 Create this structure:
2205
2206 base
2207 \___ some_dir
2208 """
2209 os.makedirs('base/some_dir')
2210
2211 def tearDown(self):
2212 shutil.rmtree('base')
2213
2214 def test_directory_link_nonlocal(self):
2215 """
2216 The symlink target should resolve relative to the link, not relative
2217 to the current directory.
2218
2219 Then, link base/some_link -> base/some_dir and ensure that some_link
2220 is resolved as a directory.
2221
2222 In issue13772, it was discovered that directory detection failed if
2223 the symlink target was not specified relative to the current
2224 directory, which was a defect in the implementation.
2225 """
2226 src = os.path.join('base', 'some_link')
2227 os.symlink('some_dir', src)
2228 assert os.path.isdir(src)
2229
2230
Victor Stinnere8d51452010-08-19 01:05:19 +00002231class FSEncodingTests(unittest.TestCase):
2232 def test_nop(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +00002233 self.assertEqual(os.fsencode(b'abc\xff'), b'abc\xff')
2234 self.assertEqual(os.fsdecode('abc\u0141'), 'abc\u0141')
Benjamin Peterson31191a92010-05-09 03:22:58 +00002235
Victor Stinnere8d51452010-08-19 01:05:19 +00002236 def test_identity(self):
2237 # assert fsdecode(fsencode(x)) == x
2238 for fn in ('unicode\u0141', 'latin\xe9', 'ascii'):
2239 try:
2240 bytesfn = os.fsencode(fn)
2241 except UnicodeEncodeError:
2242 continue
Ezio Melottib3aedd42010-11-20 19:04:17 +00002243 self.assertEqual(os.fsdecode(bytesfn), fn)
Victor Stinnere8d51452010-08-19 01:05:19 +00002244
Victor Stinnerbf9bcab2010-05-09 03:15:33 +00002245
Brett Cannonefb00c02012-02-29 18:31:31 -05002246
2247class DeviceEncodingTests(unittest.TestCase):
2248
2249 def test_bad_fd(self):
2250 # Return None when an fd doesn't actually exist.
2251 self.assertIsNone(os.device_encoding(123456))
2252
Philip Jenveye308b7c2012-02-29 16:16:15 -08002253 @unittest.skipUnless(os.isatty(0) and (sys.platform.startswith('win') or
2254 (hasattr(locale, 'nl_langinfo') and hasattr(locale, 'CODESET'))),
Philip Jenveyd7aff2d2012-02-29 16:21:25 -08002255 'test requires a tty and either Windows or nl_langinfo(CODESET)')
Brett Cannonefb00c02012-02-29 18:31:31 -05002256 def test_device_encoding(self):
2257 encoding = os.device_encoding(0)
2258 self.assertIsNotNone(encoding)
2259 self.assertTrue(codecs.lookup(encoding))
2260
2261
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00002262class PidTests(unittest.TestCase):
2263 @unittest.skipUnless(hasattr(os, 'getppid'), "test needs os.getppid")
2264 def test_getppid(self):
2265 p = subprocess.Popen([sys.executable, '-c',
2266 'import os; print(os.getppid())'],
2267 stdout=subprocess.PIPE)
2268 stdout, _ = p.communicate()
2269 # We are the parent of our subprocess
2270 self.assertEqual(int(stdout), os.getpid())
2271
Victor Stinnerd3ffd322015-09-15 10:11:03 +02002272 def test_waitpid(self):
2273 args = [sys.executable, '-c', 'pass']
Brett Cannonec6ce872016-09-06 15:50:29 -07002274 # Add an implicit test for PyUnicode_FSConverter().
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08002275 pid = os.spawnv(os.P_NOWAIT, FakePath(args[0]), args)
Victor Stinnerd3ffd322015-09-15 10:11:03 +02002276 status = os.waitpid(pid, 0)
2277 self.assertEqual(status, (pid, 0))
2278
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00002279
Victor Stinner4659ccf2016-09-14 10:57:00 +02002280class SpawnTests(unittest.TestCase):
Berker Peksag47e70622016-09-15 20:23:55 +03002281 def create_args(self, *, with_env=False, use_bytes=False):
Victor Stinner4659ccf2016-09-14 10:57:00 +02002282 self.exitcode = 17
2283
2284 filename = support.TESTFN
2285 self.addCleanup(support.unlink, filename)
2286
2287 if not with_env:
2288 code = 'import sys; sys.exit(%s)' % self.exitcode
2289 else:
2290 self.env = dict(os.environ)
2291 # create an unique key
2292 self.key = str(uuid.uuid4())
2293 self.env[self.key] = self.key
2294 # read the variable from os.environ to check that it exists
2295 code = ('import sys, os; magic = os.environ[%r]; sys.exit(%s)'
2296 % (self.key, self.exitcode))
2297
2298 with open(filename, "w") as fp:
2299 fp.write(code)
2300
Berker Peksag81816462016-09-15 20:19:47 +03002301 args = [sys.executable, filename]
2302 if use_bytes:
2303 args = [os.fsencode(a) for a in args]
2304 self.env = {os.fsencode(k): os.fsencode(v)
2305 for k, v in self.env.items()}
2306
2307 return args
Victor Stinner4659ccf2016-09-14 10:57:00 +02002308
Berker Peksag4af23d72016-09-15 20:32:44 +03002309 @requires_os_func('spawnl')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002310 def test_spawnl(self):
2311 args = self.create_args()
2312 exitcode = os.spawnl(os.P_WAIT, args[0], *args)
2313 self.assertEqual(exitcode, self.exitcode)
2314
Berker Peksag4af23d72016-09-15 20:32:44 +03002315 @requires_os_func('spawnle')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002316 def test_spawnle(self):
Berker Peksag47e70622016-09-15 20:23:55 +03002317 args = self.create_args(with_env=True)
Victor Stinner4659ccf2016-09-14 10:57:00 +02002318 exitcode = os.spawnle(os.P_WAIT, args[0], *args, self.env)
2319 self.assertEqual(exitcode, self.exitcode)
2320
Berker Peksag4af23d72016-09-15 20:32:44 +03002321 @requires_os_func('spawnlp')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002322 def test_spawnlp(self):
2323 args = self.create_args()
2324 exitcode = os.spawnlp(os.P_WAIT, args[0], *args)
2325 self.assertEqual(exitcode, self.exitcode)
2326
Berker Peksag4af23d72016-09-15 20:32:44 +03002327 @requires_os_func('spawnlpe')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002328 def test_spawnlpe(self):
Berker Peksag47e70622016-09-15 20:23:55 +03002329 args = self.create_args(with_env=True)
Victor Stinner4659ccf2016-09-14 10:57:00 +02002330 exitcode = os.spawnlpe(os.P_WAIT, args[0], *args, self.env)
2331 self.assertEqual(exitcode, self.exitcode)
2332
Berker Peksag4af23d72016-09-15 20:32:44 +03002333 @requires_os_func('spawnv')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002334 def test_spawnv(self):
2335 args = self.create_args()
2336 exitcode = os.spawnv(os.P_WAIT, args[0], args)
2337 self.assertEqual(exitcode, self.exitcode)
2338
Berker Peksag4af23d72016-09-15 20:32:44 +03002339 @requires_os_func('spawnve')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002340 def test_spawnve(self):
Berker Peksag47e70622016-09-15 20:23:55 +03002341 args = self.create_args(with_env=True)
Victor Stinner4659ccf2016-09-14 10:57:00 +02002342 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env)
2343 self.assertEqual(exitcode, self.exitcode)
2344
Berker Peksag4af23d72016-09-15 20:32:44 +03002345 @requires_os_func('spawnvp')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002346 def test_spawnvp(self):
2347 args = self.create_args()
2348 exitcode = os.spawnvp(os.P_WAIT, args[0], args)
2349 self.assertEqual(exitcode, self.exitcode)
2350
Berker Peksag4af23d72016-09-15 20:32:44 +03002351 @requires_os_func('spawnvpe')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002352 def test_spawnvpe(self):
Berker Peksag47e70622016-09-15 20:23:55 +03002353 args = self.create_args(with_env=True)
Victor Stinner4659ccf2016-09-14 10:57:00 +02002354 exitcode = os.spawnvpe(os.P_WAIT, args[0], args, self.env)
2355 self.assertEqual(exitcode, self.exitcode)
2356
Berker Peksag4af23d72016-09-15 20:32:44 +03002357 @requires_os_func('spawnv')
Victor Stinner4659ccf2016-09-14 10:57:00 +02002358 def test_nowait(self):
2359 args = self.create_args()
2360 pid = os.spawnv(os.P_NOWAIT, args[0], args)
2361 result = os.waitpid(pid, 0)
2362 self.assertEqual(result[0], pid)
2363 status = result[1]
2364 if hasattr(os, 'WIFEXITED'):
2365 self.assertTrue(os.WIFEXITED(status))
2366 self.assertEqual(os.WEXITSTATUS(status), self.exitcode)
2367 else:
2368 self.assertEqual(status, self.exitcode << 8)
2369
Berker Peksag4af23d72016-09-15 20:32:44 +03002370 @requires_os_func('spawnve')
Berker Peksag81816462016-09-15 20:19:47 +03002371 def test_spawnve_bytes(self):
2372 # Test bytes handling in parse_arglist and parse_envlist (#28114)
2373 args = self.create_args(with_env=True, use_bytes=True)
2374 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env)
2375 self.assertEqual(exitcode, self.exitcode)
2376
Steve Dower859fd7b2016-11-19 18:53:19 -08002377 @requires_os_func('spawnl')
2378 def test_spawnl_noargs(self):
2379 args = self.create_args()
2380 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0])
Steve Dowerbce26262016-11-19 19:17:26 -08002381 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0], '')
Steve Dower859fd7b2016-11-19 18:53:19 -08002382
2383 @requires_os_func('spawnle')
Steve Dowerbce26262016-11-19 19:17:26 -08002384 def test_spawnle_noargs(self):
Steve Dower859fd7b2016-11-19 18:53:19 -08002385 args = self.create_args()
2386 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {})
Steve Dowerbce26262016-11-19 19:17:26 -08002387 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {})
Steve Dower859fd7b2016-11-19 18:53:19 -08002388
2389 @requires_os_func('spawnv')
2390 def test_spawnv_noargs(self):
2391 args = self.create_args()
2392 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ())
2393 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [])
Steve Dowerbce26262016-11-19 19:17:26 -08002394 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',))
2395 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [''])
Steve Dower859fd7b2016-11-19 18:53:19 -08002396
2397 @requires_os_func('spawnve')
Steve Dowerbce26262016-11-19 19:17:26 -08002398 def test_spawnve_noargs(self):
Steve Dower859fd7b2016-11-19 18:53:19 -08002399 args = self.create_args()
2400 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], (), {})
2401 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [], {})
Steve Dowerbce26262016-11-19 19:17:26 -08002402 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], ('',), {})
2403 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [''], {})
Victor Stinner4659ccf2016-09-14 10:57:00 +02002404
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002405 def _test_invalid_env(self, spawn):
Serhiy Storchaka77703942017-06-25 07:33:01 +03002406 args = [sys.executable, '-c', 'pass']
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002407
Ville Skyttä49b27342017-08-03 09:00:59 +03002408 # null character in the environment variable name
Serhiy Storchaka77703942017-06-25 07:33:01 +03002409 newenv = os.environ.copy()
2410 newenv["FRUIT\0VEGETABLE"] = "cabbage"
2411 try:
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002412 exitcode = spawn(os.P_WAIT, args[0], args, newenv)
Serhiy Storchaka77703942017-06-25 07:33:01 +03002413 except ValueError:
2414 pass
2415 else:
2416 self.assertEqual(exitcode, 127)
2417
Ville Skyttä49b27342017-08-03 09:00:59 +03002418 # null character in the environment variable value
Serhiy Storchaka77703942017-06-25 07:33:01 +03002419 newenv = os.environ.copy()
2420 newenv["FRUIT"] = "orange\0VEGETABLE=cabbage"
2421 try:
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002422 exitcode = spawn(os.P_WAIT, args[0], args, newenv)
Serhiy Storchaka77703942017-06-25 07:33:01 +03002423 except ValueError:
2424 pass
2425 else:
2426 self.assertEqual(exitcode, 127)
2427
Ville Skyttä49b27342017-08-03 09:00:59 +03002428 # equal character in the environment variable name
Serhiy Storchaka77703942017-06-25 07:33:01 +03002429 newenv = os.environ.copy()
2430 newenv["FRUIT=ORANGE"] = "lemon"
2431 try:
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002432 exitcode = spawn(os.P_WAIT, args[0], args, newenv)
Serhiy Storchaka77703942017-06-25 07:33:01 +03002433 except ValueError:
2434 pass
2435 else:
2436 self.assertEqual(exitcode, 127)
2437
Ville Skyttä49b27342017-08-03 09:00:59 +03002438 # equal character in the environment variable value
Serhiy Storchaka77703942017-06-25 07:33:01 +03002439 filename = support.TESTFN
2440 self.addCleanup(support.unlink, filename)
2441 with open(filename, "w") as fp:
2442 fp.write('import sys, os\n'
2443 'if os.getenv("FRUIT") != "orange=lemon":\n'
2444 ' raise AssertionError')
2445 args = [sys.executable, filename]
2446 newenv = os.environ.copy()
2447 newenv["FRUIT"] = "orange=lemon"
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002448 exitcode = spawn(os.P_WAIT, args[0], args, newenv)
Serhiy Storchaka77703942017-06-25 07:33:01 +03002449 self.assertEqual(exitcode, 0)
2450
Serhiy Storchakaaf5392f2017-06-25 09:48:54 +03002451 @requires_os_func('spawnve')
2452 def test_spawnve_invalid_env(self):
2453 self._test_invalid_env(os.spawnve)
2454
2455 @requires_os_func('spawnvpe')
2456 def test_spawnvpe_invalid_env(self):
2457 self._test_invalid_env(os.spawnvpe)
2458
Serhiy Storchaka77703942017-06-25 07:33:01 +03002459
Brian Curtin0151b8e2010-09-24 13:43:43 +00002460# The introduction of this TestCase caused at least two different errors on
2461# *nix buildbots. Temporarily skip this to let the buildbots move along.
2462@unittest.skip("Skip due to platform/environment differences on *NIX buildbots")
Brian Curtine8e4b3b2010-09-23 20:04:14 +00002463@unittest.skipUnless(hasattr(os, 'getlogin'), "test needs os.getlogin")
2464class LoginTests(unittest.TestCase):
2465 def test_getlogin(self):
2466 user_name = os.getlogin()
2467 self.assertNotEqual(len(user_name), 0)
2468
2469
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00002470@unittest.skipUnless(hasattr(os, 'getpriority') and hasattr(os, 'setpriority'),
2471 "needs os.getpriority and os.setpriority")
2472class ProgramPriorityTests(unittest.TestCase):
2473 """Tests for os.getpriority() and os.setpriority()."""
2474
2475 def test_set_get_priority(self):
Giampaolo Rodolàcfbcec32011-02-28 19:27:16 +00002476
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00002477 base = os.getpriority(os.PRIO_PROCESS, os.getpid())
2478 os.setpriority(os.PRIO_PROCESS, os.getpid(), base + 1)
2479 try:
Giampaolo Rodolàcfbcec32011-02-28 19:27:16 +00002480 new_prio = os.getpriority(os.PRIO_PROCESS, os.getpid())
2481 if base >= 19 and new_prio <= 19:
Victor Stinnerae39d232016-03-24 17:12:55 +01002482 raise unittest.SkipTest("unable to reliably test setpriority "
2483 "at current nice level of %s" % base)
Giampaolo Rodolàcfbcec32011-02-28 19:27:16 +00002484 else:
2485 self.assertEqual(new_prio, base + 1)
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00002486 finally:
2487 try:
2488 os.setpriority(os.PRIO_PROCESS, os.getpid(), base)
2489 except OSError as err:
Antoine Pitrou692f0382011-02-26 00:22:25 +00002490 if err.errno != errno.EACCES:
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00002491 raise
2492
2493
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002494class SendfileTestServer(asyncore.dispatcher, threading.Thread):
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002495
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002496 class Handler(asynchat.async_chat):
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002497
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002498 def __init__(self, conn):
2499 asynchat.async_chat.__init__(self, conn)
2500 self.in_buffer = []
2501 self.closed = False
2502 self.push(b"220 ready\r\n")
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002503
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002504 def handle_read(self):
2505 data = self.recv(4096)
2506 self.in_buffer.append(data)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002507
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002508 def get_data(self):
2509 return b''.join(self.in_buffer)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002510
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002511 def handle_close(self):
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002512 self.close()
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002513 self.closed = True
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002514
2515 def handle_error(self):
2516 raise
2517
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002518 def __init__(self, address):
2519 threading.Thread.__init__(self)
2520 asyncore.dispatcher.__init__(self)
2521 self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
2522 self.bind(address)
2523 self.listen(5)
2524 self.host, self.port = self.socket.getsockname()[:2]
2525 self.handler_instance = None
2526 self._active = False
2527 self._active_lock = threading.Lock()
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002528
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02002529 # --- public API
2530
2531 @property
2532 def running(self):
2533 return self._active
2534
2535 def start(self):
2536 assert not self.running
2537 self.__flag = threading.Event()
2538 threading.Thread.start(self)
2539 self.__flag.wait()
2540
2541 def stop(self):
2542 assert self.running
2543 self._active = False
2544 self.join()
2545
2546 def wait(self):
2547 # wait for handler connection to be closed, then stop the server
2548 while not getattr(self.handler_instance, "closed", False):
2549 time.sleep(0.001)
2550 self.stop()
2551
2552 # --- internals
2553
2554 def run(self):
2555 self._active = True
2556 self.__flag.set()
2557 while self._active and asyncore.socket_map:
2558 self._active_lock.acquire()
2559 asyncore.loop(timeout=0.001, count=1)
2560 self._active_lock.release()
2561 asyncore.close_all()
2562
2563 def handle_accept(self):
2564 conn, addr = self.accept()
2565 self.handler_instance = self.Handler(conn)
2566
2567 def handle_connect(self):
2568 self.close()
2569 handle_read = handle_connect
2570
2571 def writable(self):
2572 return 0
2573
2574 def handle_error(self):
2575 raise
2576
2577
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002578@unittest.skipUnless(hasattr(os, 'sendfile'), "test needs os.sendfile()")
2579class TestSendfile(unittest.TestCase):
2580
Victor Stinner8c663fd2017-11-08 14:44:44 -08002581 DATA = b"12345abcde" * 16 * 1024 # 160 KiB
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002582 SUPPORT_HEADERS_TRAILERS = not sys.platform.startswith("linux") and \
Giampaolo Rodolà4bc68572011-02-25 21:46:01 +00002583 not sys.platform.startswith("solaris") and \
2584 not sys.platform.startswith("sunos")
Serhiy Storchaka43767632013-11-03 21:31:38 +02002585 requires_headers_trailers = unittest.skipUnless(SUPPORT_HEADERS_TRAILERS,
2586 'requires headers and trailers support')
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002587
2588 @classmethod
2589 def setUpClass(cls):
R David Murrayf2ad1732014-12-25 18:36:56 -05002590 cls.key = support.threading_setup()
Victor Stinnerae39d232016-03-24 17:12:55 +01002591 create_file(support.TESTFN, cls.DATA)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002592
2593 @classmethod
2594 def tearDownClass(cls):
R David Murrayf2ad1732014-12-25 18:36:56 -05002595 support.threading_cleanup(*cls.key)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002596 support.unlink(support.TESTFN)
2597
2598 def setUp(self):
2599 self.server = SendfileTestServer((support.HOST, 0))
2600 self.server.start()
2601 self.client = socket.socket()
2602 self.client.connect((self.server.host, self.server.port))
2603 self.client.settimeout(1)
2604 # synchronize by waiting for "220 ready" response
2605 self.client.recv(1024)
2606 self.sockno = self.client.fileno()
2607 self.file = open(support.TESTFN, 'rb')
2608 self.fileno = self.file.fileno()
2609
2610 def tearDown(self):
2611 self.file.close()
2612 self.client.close()
2613 if self.server.running:
2614 self.server.stop()
Victor Stinnerd1cc0372017-07-12 16:05:43 +02002615 self.server = None
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002616
2617 def sendfile_wrapper(self, sock, file, offset, nbytes, headers=[], trailers=[]):
2618 """A higher level wrapper representing how an application is
2619 supposed to use sendfile().
2620 """
2621 while 1:
2622 try:
2623 if self.SUPPORT_HEADERS_TRAILERS:
2624 return os.sendfile(sock, file, offset, nbytes, headers,
2625 trailers)
2626 else:
2627 return os.sendfile(sock, file, offset, nbytes)
2628 except OSError as err:
2629 if err.errno == errno.ECONNRESET:
2630 # disconnected
2631 raise
2632 elif err.errno in (errno.EAGAIN, errno.EBUSY):
2633 # we have to retry send data
2634 continue
2635 else:
2636 raise
2637
2638 def test_send_whole_file(self):
2639 # normal send
2640 total_sent = 0
2641 offset = 0
2642 nbytes = 4096
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002643 while total_sent < len(self.DATA):
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002644 sent = self.sendfile_wrapper(self.sockno, self.fileno, offset, nbytes)
2645 if sent == 0:
2646 break
2647 offset += sent
2648 total_sent += sent
2649 self.assertTrue(sent <= nbytes)
2650 self.assertEqual(offset, total_sent)
2651
2652 self.assertEqual(total_sent, len(self.DATA))
Antoine Pitrou2de51ff2011-02-26 17:52:50 +00002653 self.client.shutdown(socket.SHUT_RDWR)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002654 self.client.close()
2655 self.server.wait()
2656 data = self.server.handler_instance.get_data()
Antoine Pitrou2de51ff2011-02-26 17:52:50 +00002657 self.assertEqual(len(data), len(self.DATA))
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002658 self.assertEqual(data, self.DATA)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002659
2660 def test_send_at_certain_offset(self):
2661 # start sending a file at a certain offset
2662 total_sent = 0
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002663 offset = len(self.DATA) // 2
2664 must_send = len(self.DATA) - offset
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002665 nbytes = 4096
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002666 while total_sent < must_send:
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002667 sent = self.sendfile_wrapper(self.sockno, self.fileno, offset, nbytes)
2668 if sent == 0:
2669 break
2670 offset += sent
2671 total_sent += sent
2672 self.assertTrue(sent <= nbytes)
2673
Antoine Pitrou2de51ff2011-02-26 17:52:50 +00002674 self.client.shutdown(socket.SHUT_RDWR)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002675 self.client.close()
2676 self.server.wait()
2677 data = self.server.handler_instance.get_data()
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002678 expected = self.DATA[len(self.DATA) // 2:]
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002679 self.assertEqual(total_sent, len(expected))
Antoine Pitrou2de51ff2011-02-26 17:52:50 +00002680 self.assertEqual(len(data), len(expected))
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002681 self.assertEqual(data, expected)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002682
2683 def test_offset_overflow(self):
2684 # specify an offset > file size
2685 offset = len(self.DATA) + 4096
Antoine Pitrou18dd0df2011-02-26 14:29:24 +00002686 try:
2687 sent = os.sendfile(self.sockno, self.fileno, offset, 4096)
2688 except OSError as e:
2689 # Solaris can raise EINVAL if offset >= file length, ignore.
2690 if e.errno != errno.EINVAL:
2691 raise
2692 else:
2693 self.assertEqual(sent, 0)
Antoine Pitrou2de51ff2011-02-26 17:52:50 +00002694 self.client.shutdown(socket.SHUT_RDWR)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002695 self.client.close()
2696 self.server.wait()
2697 data = self.server.handler_instance.get_data()
2698 self.assertEqual(data, b'')
2699
2700 def test_invalid_offset(self):
2701 with self.assertRaises(OSError) as cm:
2702 os.sendfile(self.sockno, self.fileno, -1, 4096)
2703 self.assertEqual(cm.exception.errno, errno.EINVAL)
2704
Martin Panterbf19d162015-09-09 01:01:13 +00002705 def test_keywords(self):
2706 # Keyword arguments should be supported
2707 os.sendfile(out=self.sockno, offset=0, count=4096,
2708 **{'in': self.fileno})
2709 if self.SUPPORT_HEADERS_TRAILERS:
2710 os.sendfile(self.sockno, self.fileno, offset=0, count=4096,
Martin Panter94994132015-09-09 05:29:24 +00002711 headers=(), trailers=(), flags=0)
Martin Panterbf19d162015-09-09 01:01:13 +00002712
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002713 # --- headers / trailers tests
2714
Serhiy Storchaka43767632013-11-03 21:31:38 +02002715 @requires_headers_trailers
2716 def test_headers(self):
2717 total_sent = 0
2718 sent = os.sendfile(self.sockno, self.fileno, 0, 4096,
2719 headers=[b"x" * 512])
2720 total_sent += sent
2721 offset = 4096
2722 nbytes = 4096
2723 while 1:
2724 sent = self.sendfile_wrapper(self.sockno, self.fileno,
2725 offset, nbytes)
2726 if sent == 0:
2727 break
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002728 total_sent += sent
Serhiy Storchaka43767632013-11-03 21:31:38 +02002729 offset += sent
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002730
Serhiy Storchaka43767632013-11-03 21:31:38 +02002731 expected_data = b"x" * 512 + self.DATA
2732 self.assertEqual(total_sent, len(expected_data))
2733 self.client.close()
2734 self.server.wait()
2735 data = self.server.handler_instance.get_data()
2736 self.assertEqual(hash(data), hash(expected_data))
2737
2738 @requires_headers_trailers
2739 def test_trailers(self):
2740 TESTFN2 = support.TESTFN + "2"
2741 file_data = b"abcdef"
Victor Stinnerae39d232016-03-24 17:12:55 +01002742
2743 self.addCleanup(support.unlink, TESTFN2)
2744 create_file(TESTFN2, file_data)
2745
2746 with open(TESTFN2, 'rb') as f:
Serhiy Storchaka43767632013-11-03 21:31:38 +02002747 os.sendfile(self.sockno, f.fileno(), 0, len(file_data),
2748 trailers=[b"1234"])
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002749 self.client.close()
2750 self.server.wait()
2751 data = self.server.handler_instance.get_data()
Serhiy Storchaka43767632013-11-03 21:31:38 +02002752 self.assertEqual(data, b"abcdef1234")
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002753
Serhiy Storchaka43767632013-11-03 21:31:38 +02002754 @requires_headers_trailers
2755 @unittest.skipUnless(hasattr(os, 'SF_NODISKIO'),
2756 'test needs os.SF_NODISKIO')
2757 def test_flags(self):
2758 try:
2759 os.sendfile(self.sockno, self.fileno, 0, 4096,
2760 flags=os.SF_NODISKIO)
2761 except OSError as err:
2762 if err.errno not in (errno.EBUSY, errno.EAGAIN):
2763 raise
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002764
2765
Larry Hastings9cf065c2012-06-22 16:30:09 -07002766def supports_extended_attributes():
2767 if not hasattr(os, "setxattr"):
2768 return False
Victor Stinnerae39d232016-03-24 17:12:55 +01002769
Larry Hastings9cf065c2012-06-22 16:30:09 -07002770 try:
Victor Stinnerae39d232016-03-24 17:12:55 +01002771 with open(support.TESTFN, "xb", 0) as fp:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002772 try:
2773 os.setxattr(fp.fileno(), b"user.test", b"")
2774 except OSError:
2775 return False
2776 finally:
2777 support.unlink(support.TESTFN)
Victor Stinnerf95a19b2016-03-24 16:50:41 +01002778
2779 return True
Larry Hastings9cf065c2012-06-22 16:30:09 -07002780
2781
2782@unittest.skipUnless(supports_extended_attributes(),
2783 "no non-broken extended attribute support")
Victor Stinnerf95a19b2016-03-24 16:50:41 +01002784# Kernels < 2.6.39 don't respect setxattr flags.
2785@support.requires_linux_version(2, 6, 39)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002786class ExtendedAttributeTests(unittest.TestCase):
2787
Larry Hastings9cf065c2012-06-22 16:30:09 -07002788 def _check_xattrs_str(self, s, getxattr, setxattr, removexattr, listxattr, **kwargs):
Benjamin Peterson799bd802011-08-31 22:15:17 -04002789 fn = support.TESTFN
Victor Stinnerae39d232016-03-24 17:12:55 +01002790 self.addCleanup(support.unlink, fn)
2791 create_file(fn)
2792
Benjamin Peterson799bd802011-08-31 22:15:17 -04002793 with self.assertRaises(OSError) as cm:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002794 getxattr(fn, s("user.test"), **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002795 self.assertEqual(cm.exception.errno, errno.ENODATA)
Victor Stinnerae39d232016-03-24 17:12:55 +01002796
Victor Stinnerf12e5062011-10-16 22:12:03 +02002797 init_xattr = listxattr(fn)
2798 self.assertIsInstance(init_xattr, list)
Victor Stinnerae39d232016-03-24 17:12:55 +01002799
Larry Hastings9cf065c2012-06-22 16:30:09 -07002800 setxattr(fn, s("user.test"), b"", **kwargs)
Victor Stinnerf12e5062011-10-16 22:12:03 +02002801 xattr = set(init_xattr)
2802 xattr.add("user.test")
2803 self.assertEqual(set(listxattr(fn)), xattr)
Larry Hastings9cf065c2012-06-22 16:30:09 -07002804 self.assertEqual(getxattr(fn, b"user.test", **kwargs), b"")
2805 setxattr(fn, s("user.test"), b"hello", os.XATTR_REPLACE, **kwargs)
2806 self.assertEqual(getxattr(fn, b"user.test", **kwargs), b"hello")
Victor Stinnerae39d232016-03-24 17:12:55 +01002807
Benjamin Peterson799bd802011-08-31 22:15:17 -04002808 with self.assertRaises(OSError) as cm:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002809 setxattr(fn, s("user.test"), b"bye", os.XATTR_CREATE, **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002810 self.assertEqual(cm.exception.errno, errno.EEXIST)
Victor Stinnerae39d232016-03-24 17:12:55 +01002811
Benjamin Peterson799bd802011-08-31 22:15:17 -04002812 with self.assertRaises(OSError) as cm:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002813 setxattr(fn, s("user.test2"), b"bye", os.XATTR_REPLACE, **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002814 self.assertEqual(cm.exception.errno, errno.ENODATA)
Victor Stinnerae39d232016-03-24 17:12:55 +01002815
Larry Hastings9cf065c2012-06-22 16:30:09 -07002816 setxattr(fn, s("user.test2"), b"foo", os.XATTR_CREATE, **kwargs)
Victor Stinnerf12e5062011-10-16 22:12:03 +02002817 xattr.add("user.test2")
2818 self.assertEqual(set(listxattr(fn)), xattr)
Larry Hastings9cf065c2012-06-22 16:30:09 -07002819 removexattr(fn, s("user.test"), **kwargs)
Victor Stinnerae39d232016-03-24 17:12:55 +01002820
Benjamin Peterson799bd802011-08-31 22:15:17 -04002821 with self.assertRaises(OSError) as cm:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002822 getxattr(fn, s("user.test"), **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002823 self.assertEqual(cm.exception.errno, errno.ENODATA)
Victor Stinnerae39d232016-03-24 17:12:55 +01002824
Victor Stinnerf12e5062011-10-16 22:12:03 +02002825 xattr.remove("user.test")
2826 self.assertEqual(set(listxattr(fn)), xattr)
Larry Hastings9cf065c2012-06-22 16:30:09 -07002827 self.assertEqual(getxattr(fn, s("user.test2"), **kwargs), b"foo")
2828 setxattr(fn, s("user.test"), b"a"*1024, **kwargs)
2829 self.assertEqual(getxattr(fn, s("user.test"), **kwargs), b"a"*1024)
2830 removexattr(fn, s("user.test"), **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002831 many = sorted("user.test{}".format(i) for i in range(100))
2832 for thing in many:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002833 setxattr(fn, thing, b"x", **kwargs)
Victor Stinnerf12e5062011-10-16 22:12:03 +02002834 self.assertEqual(set(listxattr(fn)), set(init_xattr) | set(many))
Benjamin Peterson799bd802011-08-31 22:15:17 -04002835
Larry Hastings9cf065c2012-06-22 16:30:09 -07002836 def _check_xattrs(self, *args, **kwargs):
Larry Hastings9cf065c2012-06-22 16:30:09 -07002837 self._check_xattrs_str(str, *args, **kwargs)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002838 support.unlink(support.TESTFN)
Victor Stinnerae39d232016-03-24 17:12:55 +01002839
2840 self._check_xattrs_str(os.fsencode, *args, **kwargs)
2841 support.unlink(support.TESTFN)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002842
2843 def test_simple(self):
2844 self._check_xattrs(os.getxattr, os.setxattr, os.removexattr,
2845 os.listxattr)
2846
2847 def test_lpath(self):
Larry Hastings9cf065c2012-06-22 16:30:09 -07002848 self._check_xattrs(os.getxattr, os.setxattr, os.removexattr,
2849 os.listxattr, follow_symlinks=False)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002850
2851 def test_fds(self):
2852 def getxattr(path, *args):
2853 with open(path, "rb") as fp:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002854 return os.getxattr(fp.fileno(), *args)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002855 def setxattr(path, *args):
Victor Stinnerae39d232016-03-24 17:12:55 +01002856 with open(path, "wb", 0) as fp:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002857 os.setxattr(fp.fileno(), *args)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002858 def removexattr(path, *args):
Victor Stinnerae39d232016-03-24 17:12:55 +01002859 with open(path, "wb", 0) as fp:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002860 os.removexattr(fp.fileno(), *args)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002861 def listxattr(path, *args):
2862 with open(path, "rb") as fp:
Larry Hastings9cf065c2012-06-22 16:30:09 -07002863 return os.listxattr(fp.fileno(), *args)
Benjamin Peterson799bd802011-08-31 22:15:17 -04002864 self._check_xattrs(getxattr, setxattr, removexattr, listxattr)
2865
2866
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002867@unittest.skipUnless(hasattr(os, 'get_terminal_size'), "requires os.get_terminal_size")
2868class TermsizeTests(unittest.TestCase):
2869 def test_does_not_crash(self):
2870 """Check if get_terminal_size() returns a meaningful value.
2871
2872 There's no easy portable way to actually check the size of the
2873 terminal, so let's check if it returns something sensible instead.
2874 """
2875 try:
2876 size = os.get_terminal_size()
2877 except OSError as e:
Antoine Pitrou81a1fa52012-02-09 00:11:00 +01002878 if sys.platform == "win32" or e.errno in (errno.EINVAL, errno.ENOTTY):
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002879 # Under win32 a generic OSError can be thrown if the
2880 # handle cannot be retrieved
2881 self.skipTest("failed to query terminal size")
2882 raise
2883
Antoine Pitroucfade362012-02-08 23:48:59 +01002884 self.assertGreaterEqual(size.columns, 0)
2885 self.assertGreaterEqual(size.lines, 0)
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002886
2887 def test_stty_match(self):
2888 """Check if stty returns the same results
2889
2890 stty actually tests stdin, so get_terminal_size is invoked on
2891 stdin explicitly. If stty succeeded, then get_terminal_size()
2892 should work too.
2893 """
2894 try:
2895 size = subprocess.check_output(['stty', 'size']).decode().split()
xdegaye6a55d092017-11-12 17:57:04 +01002896 except (FileNotFoundError, subprocess.CalledProcessError,
2897 PermissionError):
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002898 self.skipTest("stty invocation failed")
2899 expected = (int(size[1]), int(size[0])) # reversed order
2900
Antoine Pitrou81a1fa52012-02-09 00:11:00 +01002901 try:
2902 actual = os.get_terminal_size(sys.__stdin__.fileno())
2903 except OSError as e:
2904 if sys.platform == "win32" or e.errno in (errno.EINVAL, errno.ENOTTY):
2905 # Under win32 a generic OSError can be thrown if the
2906 # handle cannot be retrieved
2907 self.skipTest("failed to query terminal size")
2908 raise
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002909 self.assertEqual(expected, actual)
2910
2911
Victor Stinner292c8352012-10-30 02:17:38 +01002912class OSErrorTests(unittest.TestCase):
2913 def setUp(self):
2914 class Str(str):
2915 pass
2916
Victor Stinnerafe17062012-10-31 22:47:43 +01002917 self.bytes_filenames = []
2918 self.unicode_filenames = []
Victor Stinner292c8352012-10-30 02:17:38 +01002919 if support.TESTFN_UNENCODABLE is not None:
2920 decoded = support.TESTFN_UNENCODABLE
2921 else:
2922 decoded = support.TESTFN
Victor Stinnerafe17062012-10-31 22:47:43 +01002923 self.unicode_filenames.append(decoded)
2924 self.unicode_filenames.append(Str(decoded))
Victor Stinner292c8352012-10-30 02:17:38 +01002925 if support.TESTFN_UNDECODABLE is not None:
2926 encoded = support.TESTFN_UNDECODABLE
2927 else:
2928 encoded = os.fsencode(support.TESTFN)
Victor Stinnerafe17062012-10-31 22:47:43 +01002929 self.bytes_filenames.append(encoded)
Serhiy Storchakad73c3182016-08-06 23:22:08 +03002930 self.bytes_filenames.append(bytearray(encoded))
Victor Stinnerafe17062012-10-31 22:47:43 +01002931 self.bytes_filenames.append(memoryview(encoded))
2932
2933 self.filenames = self.bytes_filenames + self.unicode_filenames
Victor Stinner292c8352012-10-30 02:17:38 +01002934
2935 def test_oserror_filename(self):
2936 funcs = [
Victor Stinnerafe17062012-10-31 22:47:43 +01002937 (self.filenames, os.chdir,),
2938 (self.filenames, os.chmod, 0o777),
Victor Stinnerafe17062012-10-31 22:47:43 +01002939 (self.filenames, os.lstat,),
2940 (self.filenames, os.open, os.O_RDONLY),
2941 (self.filenames, os.rmdir,),
2942 (self.filenames, os.stat,),
2943 (self.filenames, os.unlink,),
Victor Stinner292c8352012-10-30 02:17:38 +01002944 ]
2945 if sys.platform == "win32":
2946 funcs.extend((
Victor Stinnerafe17062012-10-31 22:47:43 +01002947 (self.bytes_filenames, os.rename, b"dst"),
2948 (self.bytes_filenames, os.replace, b"dst"),
2949 (self.unicode_filenames, os.rename, "dst"),
2950 (self.unicode_filenames, os.replace, "dst"),
Steve Dowercc16be82016-09-08 10:35:16 -07002951 (self.unicode_filenames, os.listdir, ),
Victor Stinner292c8352012-10-30 02:17:38 +01002952 ))
Victor Stinnerafe17062012-10-31 22:47:43 +01002953 else:
2954 funcs.extend((
Victor Stinner64e039a2012-11-07 00:10:14 +01002955 (self.filenames, os.listdir,),
Victor Stinnerafe17062012-10-31 22:47:43 +01002956 (self.filenames, os.rename, "dst"),
2957 (self.filenames, os.replace, "dst"),
2958 ))
2959 if hasattr(os, "chown"):
2960 funcs.append((self.filenames, os.chown, 0, 0))
2961 if hasattr(os, "lchown"):
2962 funcs.append((self.filenames, os.lchown, 0, 0))
2963 if hasattr(os, "truncate"):
2964 funcs.append((self.filenames, os.truncate, 0))
Victor Stinner292c8352012-10-30 02:17:38 +01002965 if hasattr(os, "chflags"):
Victor Stinneree36c242012-11-13 09:31:51 +01002966 funcs.append((self.filenames, os.chflags, 0))
2967 if hasattr(os, "lchflags"):
2968 funcs.append((self.filenames, os.lchflags, 0))
Victor Stinner292c8352012-10-30 02:17:38 +01002969 if hasattr(os, "chroot"):
Victor Stinnerafe17062012-10-31 22:47:43 +01002970 funcs.append((self.filenames, os.chroot,))
Victor Stinner292c8352012-10-30 02:17:38 +01002971 if hasattr(os, "link"):
Victor Stinnerafe17062012-10-31 22:47:43 +01002972 if sys.platform == "win32":
2973 funcs.append((self.bytes_filenames, os.link, b"dst"))
2974 funcs.append((self.unicode_filenames, os.link, "dst"))
2975 else:
2976 funcs.append((self.filenames, os.link, "dst"))
Victor Stinner292c8352012-10-30 02:17:38 +01002977 if hasattr(os, "listxattr"):
2978 funcs.extend((
Victor Stinnerafe17062012-10-31 22:47:43 +01002979 (self.filenames, os.listxattr,),
2980 (self.filenames, os.getxattr, "user.test"),
2981 (self.filenames, os.setxattr, "user.test", b'user'),
2982 (self.filenames, os.removexattr, "user.test"),
Victor Stinner292c8352012-10-30 02:17:38 +01002983 ))
2984 if hasattr(os, "lchmod"):
Victor Stinnerafe17062012-10-31 22:47:43 +01002985 funcs.append((self.filenames, os.lchmod, 0o777))
Victor Stinner292c8352012-10-30 02:17:38 +01002986 if hasattr(os, "readlink"):
Victor Stinnerafe17062012-10-31 22:47:43 +01002987 if sys.platform == "win32":
2988 funcs.append((self.unicode_filenames, os.readlink,))
2989 else:
2990 funcs.append((self.filenames, os.readlink,))
Victor Stinner292c8352012-10-30 02:17:38 +01002991
Steve Dowercc16be82016-09-08 10:35:16 -07002992
Victor Stinnerafe17062012-10-31 22:47:43 +01002993 for filenames, func, *func_args in funcs:
2994 for name in filenames:
Victor Stinner292c8352012-10-30 02:17:38 +01002995 try:
Steve Dowercc16be82016-09-08 10:35:16 -07002996 if isinstance(name, (str, bytes)):
Victor Stinner923590e2016-03-24 09:11:48 +01002997 func(name, *func_args)
Serhiy Storchakad73c3182016-08-06 23:22:08 +03002998 else:
2999 with self.assertWarnsRegex(DeprecationWarning, 'should be'):
3000 func(name, *func_args)
Victor Stinnerbd54f0e2012-10-31 01:12:55 +01003001 except OSError as err:
Steve Dowercc16be82016-09-08 10:35:16 -07003002 self.assertIs(err.filename, name, str(func))
Steve Dower78057b42016-11-06 19:35:08 -08003003 except UnicodeDecodeError:
3004 pass
Victor Stinner292c8352012-10-30 02:17:38 +01003005 else:
3006 self.fail("No exception thrown by {}".format(func))
3007
Charles-Francois Natali44feda32013-05-20 14:40:46 +02003008class CPUCountTests(unittest.TestCase):
3009 def test_cpu_count(self):
3010 cpus = os.cpu_count()
3011 if cpus is not None:
3012 self.assertIsInstance(cpus, int)
3013 self.assertGreater(cpus, 0)
3014 else:
3015 self.skipTest("Could not determine the number of CPUs")
3016
Victor Stinnerdaf45552013-08-28 00:53:59 +02003017
3018class FDInheritanceTests(unittest.TestCase):
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003019 def test_get_set_inheritable(self):
Victor Stinnerdaf45552013-08-28 00:53:59 +02003020 fd = os.open(__file__, os.O_RDONLY)
3021 self.addCleanup(os.close, fd)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003022 self.assertEqual(os.get_inheritable(fd), False)
Victor Stinnerdaf45552013-08-28 00:53:59 +02003023
Victor Stinnerdaf45552013-08-28 00:53:59 +02003024 os.set_inheritable(fd, True)
3025 self.assertEqual(os.get_inheritable(fd), True)
3026
Victor Stinner4f7a36f2013-09-08 14:14:38 +02003027 @unittest.skipIf(fcntl is None, "need fcntl")
3028 def test_get_inheritable_cloexec(self):
3029 fd = os.open(__file__, os.O_RDONLY)
3030 self.addCleanup(os.close, fd)
3031 self.assertEqual(os.get_inheritable(fd), False)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003032
Victor Stinner4f7a36f2013-09-08 14:14:38 +02003033 # clear FD_CLOEXEC flag
3034 flags = fcntl.fcntl(fd, fcntl.F_GETFD)
3035 flags &= ~fcntl.FD_CLOEXEC
3036 fcntl.fcntl(fd, fcntl.F_SETFD, flags)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003037
Victor Stinner4f7a36f2013-09-08 14:14:38 +02003038 self.assertEqual(os.get_inheritable(fd), True)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003039
Victor Stinner4f7a36f2013-09-08 14:14:38 +02003040 @unittest.skipIf(fcntl is None, "need fcntl")
3041 def test_set_inheritable_cloexec(self):
3042 fd = os.open(__file__, os.O_RDONLY)
3043 self.addCleanup(os.close, fd)
3044 self.assertEqual(fcntl.fcntl(fd, fcntl.F_GETFD) & fcntl.FD_CLOEXEC,
3045 fcntl.FD_CLOEXEC)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003046
Victor Stinner4f7a36f2013-09-08 14:14:38 +02003047 os.set_inheritable(fd, True)
3048 self.assertEqual(fcntl.fcntl(fd, fcntl.F_GETFD) & fcntl.FD_CLOEXEC,
3049 0)
Victor Stinner7ba6b0f2013-09-08 11:47:54 +02003050
Victor Stinnerdaf45552013-08-28 00:53:59 +02003051 def test_open(self):
3052 fd = os.open(__file__, os.O_RDONLY)
3053 self.addCleanup(os.close, fd)
3054 self.assertEqual(os.get_inheritable(fd), False)
3055
3056 @unittest.skipUnless(hasattr(os, 'pipe'), "need os.pipe()")
3057 def test_pipe(self):
3058 rfd, wfd = os.pipe()
3059 self.addCleanup(os.close, rfd)
3060 self.addCleanup(os.close, wfd)
3061 self.assertEqual(os.get_inheritable(rfd), False)
3062 self.assertEqual(os.get_inheritable(wfd), False)
3063
3064 def test_dup(self):
3065 fd1 = os.open(__file__, os.O_RDONLY)
3066 self.addCleanup(os.close, fd1)
3067
3068 fd2 = os.dup(fd1)
3069 self.addCleanup(os.close, fd2)
3070 self.assertEqual(os.get_inheritable(fd2), False)
3071
3072 @unittest.skipUnless(hasattr(os, 'dup2'), "need os.dup2()")
3073 def test_dup2(self):
3074 fd = os.open(__file__, os.O_RDONLY)
3075 self.addCleanup(os.close, fd)
3076
3077 # inheritable by default
3078 fd2 = os.open(__file__, os.O_RDONLY)
Benjamin Petersonbbdb17d2017-12-29 13:13:06 -08003079 self.addCleanup(os.close, fd2)
3080 self.assertEqual(os.dup2(fd, fd2), fd2)
3081 self.assertTrue(os.get_inheritable(fd2))
Victor Stinnerdaf45552013-08-28 00:53:59 +02003082
3083 # force non-inheritable
3084 fd3 = os.open(__file__, os.O_RDONLY)
Benjamin Petersonbbdb17d2017-12-29 13:13:06 -08003085 self.addCleanup(os.close, fd3)
3086 self.assertEqual(os.dup2(fd, fd3, inheritable=False), fd3)
3087 self.assertFalse(os.get_inheritable(fd3))
Victor Stinnerdaf45552013-08-28 00:53:59 +02003088
3089 @unittest.skipUnless(hasattr(os, 'openpty'), "need os.openpty()")
3090 def test_openpty(self):
3091 master_fd, slave_fd = os.openpty()
3092 self.addCleanup(os.close, master_fd)
3093 self.addCleanup(os.close, slave_fd)
3094 self.assertEqual(os.get_inheritable(master_fd), False)
3095 self.assertEqual(os.get_inheritable(slave_fd), False)
3096
3097
Brett Cannon3f9183b2016-08-26 14:44:48 -07003098class PathTConverterTests(unittest.TestCase):
3099 # tuples of (function name, allows fd arguments, additional arguments to
3100 # function, cleanup function)
3101 functions = [
3102 ('stat', True, (), None),
3103 ('lstat', False, (), None),
Benjamin Petersona9ab1652016-09-05 15:40:59 -07003104 ('access', False, (os.F_OK,), None),
Brett Cannon3f9183b2016-08-26 14:44:48 -07003105 ('chflags', False, (0,), None),
3106 ('lchflags', False, (0,), None),
3107 ('open', False, (0,), getattr(os, 'close', None)),
3108 ]
3109
3110 def test_path_t_converter(self):
Brett Cannon3f9183b2016-08-26 14:44:48 -07003111 str_filename = support.TESTFN
Brett Cannon3ce2fd42016-08-27 09:42:40 -07003112 if os.name == 'nt':
3113 bytes_fspath = bytes_filename = None
3114 else:
3115 bytes_filename = support.TESTFN.encode('ascii')
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003116 bytes_fspath = FakePath(bytes_filename)
3117 fd = os.open(FakePath(str_filename), os.O_WRONLY|os.O_CREAT)
Brett Cannon3f9183b2016-08-26 14:44:48 -07003118 self.addCleanup(support.unlink, support.TESTFN)
Berker Peksagd0f5bab2016-08-27 21:26:35 +03003119 self.addCleanup(os.close, fd)
Brett Cannon3f9183b2016-08-26 14:44:48 -07003120
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003121 int_fspath = FakePath(fd)
3122 str_fspath = FakePath(str_filename)
Brett Cannon3f9183b2016-08-26 14:44:48 -07003123
3124 for name, allow_fd, extra_args, cleanup_fn in self.functions:
3125 with self.subTest(name=name):
3126 try:
3127 fn = getattr(os, name)
3128 except AttributeError:
3129 continue
3130
Brett Cannon8f96a302016-08-26 19:30:11 -07003131 for path in (str_filename, bytes_filename, str_fspath,
3132 bytes_fspath):
Brett Cannon3ce2fd42016-08-27 09:42:40 -07003133 if path is None:
3134 continue
Brett Cannon3f9183b2016-08-26 14:44:48 -07003135 with self.subTest(name=name, path=path):
3136 result = fn(path, *extra_args)
3137 if cleanup_fn is not None:
3138 cleanup_fn(result)
3139
3140 with self.assertRaisesRegex(
3141 TypeError, 'should be string, bytes'):
3142 fn(int_fspath, *extra_args)
Brett Cannon3f9183b2016-08-26 14:44:48 -07003143
3144 if allow_fd:
3145 result = fn(fd, *extra_args) # should not fail
3146 if cleanup_fn is not None:
3147 cleanup_fn(result)
3148 else:
3149 with self.assertRaisesRegex(
3150 TypeError,
3151 'os.PathLike'):
3152 fn(fd, *extra_args)
3153
3154
Victor Stinner1db9e7b2014-07-29 22:32:47 +02003155@unittest.skipUnless(hasattr(os, 'get_blocking'),
3156 'needs os.get_blocking() and os.set_blocking()')
3157class BlockingTests(unittest.TestCase):
3158 def test_blocking(self):
3159 fd = os.open(__file__, os.O_RDONLY)
3160 self.addCleanup(os.close, fd)
3161 self.assertEqual(os.get_blocking(fd), True)
3162
3163 os.set_blocking(fd, False)
3164 self.assertEqual(os.get_blocking(fd), False)
3165
3166 os.set_blocking(fd, True)
3167 self.assertEqual(os.get_blocking(fd), True)
3168
3169
Yury Selivanov97e2e062014-09-26 12:33:06 -04003170
3171class ExportsTests(unittest.TestCase):
3172 def test_os_all(self):
3173 self.assertIn('open', os.__all__)
3174 self.assertIn('walk', os.__all__)
3175
3176
Victor Stinner6036e442015-03-08 01:58:04 +01003177class TestScandir(unittest.TestCase):
Serhiy Storchakaffe96ae2016-02-11 13:21:30 +02003178 check_no_resource_warning = support.check_no_resource_warning
3179
Victor Stinner6036e442015-03-08 01:58:04 +01003180 def setUp(self):
3181 self.path = os.path.realpath(support.TESTFN)
Brett Cannon96881cd2016-06-10 14:37:21 -07003182 self.bytes_path = os.fsencode(self.path)
Victor Stinner6036e442015-03-08 01:58:04 +01003183 self.addCleanup(support.rmtree, self.path)
3184 os.mkdir(self.path)
3185
3186 def create_file(self, name="file.txt"):
Brett Cannon96881cd2016-06-10 14:37:21 -07003187 path = self.bytes_path if isinstance(name, bytes) else self.path
3188 filename = os.path.join(path, name)
Victor Stinnerae39d232016-03-24 17:12:55 +01003189 create_file(filename, b'python')
Victor Stinner6036e442015-03-08 01:58:04 +01003190 return filename
3191
3192 def get_entries(self, names):
3193 entries = dict((entry.name, entry)
3194 for entry in os.scandir(self.path))
3195 self.assertEqual(sorted(entries.keys()), names)
3196 return entries
3197
3198 def assert_stat_equal(self, stat1, stat2, skip_fields):
3199 if skip_fields:
3200 for attr in dir(stat1):
3201 if not attr.startswith("st_"):
3202 continue
3203 if attr in ("st_dev", "st_ino", "st_nlink"):
3204 continue
3205 self.assertEqual(getattr(stat1, attr),
3206 getattr(stat2, attr),
3207 (stat1, stat2, attr))
3208 else:
3209 self.assertEqual(stat1, stat2)
3210
3211 def check_entry(self, entry, name, is_dir, is_file, is_symlink):
Brett Cannona32c4d02016-06-24 14:14:44 -07003212 self.assertIsInstance(entry, os.DirEntry)
Victor Stinner6036e442015-03-08 01:58:04 +01003213 self.assertEqual(entry.name, name)
3214 self.assertEqual(entry.path, os.path.join(self.path, name))
3215 self.assertEqual(entry.inode(),
3216 os.stat(entry.path, follow_symlinks=False).st_ino)
3217
3218 entry_stat = os.stat(entry.path)
3219 self.assertEqual(entry.is_dir(),
3220 stat.S_ISDIR(entry_stat.st_mode))
3221 self.assertEqual(entry.is_file(),
3222 stat.S_ISREG(entry_stat.st_mode))
3223 self.assertEqual(entry.is_symlink(),
3224 os.path.islink(entry.path))
3225
3226 entry_lstat = os.stat(entry.path, follow_symlinks=False)
3227 self.assertEqual(entry.is_dir(follow_symlinks=False),
3228 stat.S_ISDIR(entry_lstat.st_mode))
3229 self.assertEqual(entry.is_file(follow_symlinks=False),
3230 stat.S_ISREG(entry_lstat.st_mode))
3231
3232 self.assert_stat_equal(entry.stat(),
3233 entry_stat,
3234 os.name == 'nt' and not is_symlink)
3235 self.assert_stat_equal(entry.stat(follow_symlinks=False),
3236 entry_lstat,
3237 os.name == 'nt')
3238
3239 def test_attributes(self):
3240 link = hasattr(os, 'link')
3241 symlink = support.can_symlink()
3242
3243 dirname = os.path.join(self.path, "dir")
3244 os.mkdir(dirname)
3245 filename = self.create_file("file.txt")
3246 if link:
xdegaye6a55d092017-11-12 17:57:04 +01003247 try:
3248 os.link(filename, os.path.join(self.path, "link_file.txt"))
3249 except PermissionError as e:
3250 self.skipTest('os.link(): %s' % e)
Victor Stinner6036e442015-03-08 01:58:04 +01003251 if symlink:
3252 os.symlink(dirname, os.path.join(self.path, "symlink_dir"),
3253 target_is_directory=True)
3254 os.symlink(filename, os.path.join(self.path, "symlink_file.txt"))
3255
3256 names = ['dir', 'file.txt']
3257 if link:
3258 names.append('link_file.txt')
3259 if symlink:
3260 names.extend(('symlink_dir', 'symlink_file.txt'))
3261 entries = self.get_entries(names)
3262
3263 entry = entries['dir']
3264 self.check_entry(entry, 'dir', True, False, False)
3265
3266 entry = entries['file.txt']
3267 self.check_entry(entry, 'file.txt', False, True, False)
3268
3269 if link:
3270 entry = entries['link_file.txt']
3271 self.check_entry(entry, 'link_file.txt', False, True, False)
3272
3273 if symlink:
3274 entry = entries['symlink_dir']
3275 self.check_entry(entry, 'symlink_dir', True, False, True)
3276
3277 entry = entries['symlink_file.txt']
3278 self.check_entry(entry, 'symlink_file.txt', False, True, True)
3279
3280 def get_entry(self, name):
Brett Cannon96881cd2016-06-10 14:37:21 -07003281 path = self.bytes_path if isinstance(name, bytes) else self.path
3282 entries = list(os.scandir(path))
Victor Stinner6036e442015-03-08 01:58:04 +01003283 self.assertEqual(len(entries), 1)
3284
3285 entry = entries[0]
3286 self.assertEqual(entry.name, name)
3287 return entry
3288
Brett Cannon96881cd2016-06-10 14:37:21 -07003289 def create_file_entry(self, name='file.txt'):
3290 filename = self.create_file(name=name)
Victor Stinner6036e442015-03-08 01:58:04 +01003291 return self.get_entry(os.path.basename(filename))
3292
3293 def test_current_directory(self):
3294 filename = self.create_file()
3295 old_dir = os.getcwd()
3296 try:
3297 os.chdir(self.path)
3298
3299 # call scandir() without parameter: it must list the content
3300 # of the current directory
3301 entries = dict((entry.name, entry) for entry in os.scandir())
3302 self.assertEqual(sorted(entries.keys()),
3303 [os.path.basename(filename)])
3304 finally:
3305 os.chdir(old_dir)
3306
3307 def test_repr(self):
3308 entry = self.create_file_entry()
3309 self.assertEqual(repr(entry), "<DirEntry 'file.txt'>")
3310
Brett Cannon96881cd2016-06-10 14:37:21 -07003311 def test_fspath_protocol(self):
3312 entry = self.create_file_entry()
3313 self.assertEqual(os.fspath(entry), os.path.join(self.path, 'file.txt'))
3314
3315 def test_fspath_protocol_bytes(self):
3316 bytes_filename = os.fsencode('bytesfile.txt')
3317 bytes_entry = self.create_file_entry(name=bytes_filename)
3318 fspath = os.fspath(bytes_entry)
3319 self.assertIsInstance(fspath, bytes)
3320 self.assertEqual(fspath,
3321 os.path.join(os.fsencode(self.path),bytes_filename))
3322
Victor Stinner6036e442015-03-08 01:58:04 +01003323 def test_removed_dir(self):
3324 path = os.path.join(self.path, 'dir')
3325
3326 os.mkdir(path)
3327 entry = self.get_entry('dir')
3328 os.rmdir(path)
3329
3330 # On POSIX, is_dir() result depends if scandir() filled d_type or not
3331 if os.name == 'nt':
3332 self.assertTrue(entry.is_dir())
3333 self.assertFalse(entry.is_file())
3334 self.assertFalse(entry.is_symlink())
3335 if os.name == 'nt':
3336 self.assertRaises(FileNotFoundError, entry.inode)
3337 # don't fail
3338 entry.stat()
3339 entry.stat(follow_symlinks=False)
3340 else:
3341 self.assertGreater(entry.inode(), 0)
3342 self.assertRaises(FileNotFoundError, entry.stat)
3343 self.assertRaises(FileNotFoundError, entry.stat, follow_symlinks=False)
3344
3345 def test_removed_file(self):
3346 entry = self.create_file_entry()
3347 os.unlink(entry.path)
3348
3349 self.assertFalse(entry.is_dir())
3350 # On POSIX, is_dir() result depends if scandir() filled d_type or not
3351 if os.name == 'nt':
3352 self.assertTrue(entry.is_file())
3353 self.assertFalse(entry.is_symlink())
3354 if os.name == 'nt':
3355 self.assertRaises(FileNotFoundError, entry.inode)
3356 # don't fail
3357 entry.stat()
3358 entry.stat(follow_symlinks=False)
3359 else:
3360 self.assertGreater(entry.inode(), 0)
3361 self.assertRaises(FileNotFoundError, entry.stat)
3362 self.assertRaises(FileNotFoundError, entry.stat, follow_symlinks=False)
3363
3364 def test_broken_symlink(self):
3365 if not support.can_symlink():
3366 return self.skipTest('cannot create symbolic link')
3367
3368 filename = self.create_file("file.txt")
3369 os.symlink(filename,
3370 os.path.join(self.path, "symlink.txt"))
3371 entries = self.get_entries(['file.txt', 'symlink.txt'])
3372 entry = entries['symlink.txt']
3373 os.unlink(filename)
3374
3375 self.assertGreater(entry.inode(), 0)
3376 self.assertFalse(entry.is_dir())
3377 self.assertFalse(entry.is_file()) # broken symlink returns False
3378 self.assertFalse(entry.is_dir(follow_symlinks=False))
3379 self.assertFalse(entry.is_file(follow_symlinks=False))
3380 self.assertTrue(entry.is_symlink())
3381 self.assertRaises(FileNotFoundError, entry.stat)
3382 # don't fail
3383 entry.stat(follow_symlinks=False)
3384
3385 def test_bytes(self):
Victor Stinner6036e442015-03-08 01:58:04 +01003386 self.create_file("file.txt")
3387
3388 path_bytes = os.fsencode(self.path)
3389 entries = list(os.scandir(path_bytes))
3390 self.assertEqual(len(entries), 1, entries)
3391 entry = entries[0]
3392
3393 self.assertEqual(entry.name, b'file.txt')
3394 self.assertEqual(entry.path,
3395 os.fsencode(os.path.join(self.path, 'file.txt')))
3396
Serhiy Storchaka1180e5a2017-07-11 06:36:46 +03003397 def test_bytes_like(self):
3398 self.create_file("file.txt")
3399
3400 for cls in bytearray, memoryview:
3401 path_bytes = cls(os.fsencode(self.path))
3402 with self.assertWarns(DeprecationWarning):
3403 entries = list(os.scandir(path_bytes))
3404 self.assertEqual(len(entries), 1, entries)
3405 entry = entries[0]
3406
3407 self.assertEqual(entry.name, b'file.txt')
3408 self.assertEqual(entry.path,
3409 os.fsencode(os.path.join(self.path, 'file.txt')))
3410 self.assertIs(type(entry.name), bytes)
3411 self.assertIs(type(entry.path), bytes)
3412
Serhiy Storchakaea720fe2017-03-30 09:12:31 +03003413 @unittest.skipUnless(os.listdir in os.supports_fd,
3414 'fd support for listdir required for this test.')
3415 def test_fd(self):
3416 self.assertIn(os.scandir, os.supports_fd)
3417 self.create_file('file.txt')
3418 expected_names = ['file.txt']
3419 if support.can_symlink():
3420 os.symlink('file.txt', os.path.join(self.path, 'link'))
3421 expected_names.append('link')
3422
3423 fd = os.open(self.path, os.O_RDONLY)
3424 try:
3425 with os.scandir(fd) as it:
3426 entries = list(it)
3427 names = [entry.name for entry in entries]
3428 self.assertEqual(sorted(names), expected_names)
3429 self.assertEqual(names, os.listdir(fd))
3430 for entry in entries:
3431 self.assertEqual(entry.path, entry.name)
3432 self.assertEqual(os.fspath(entry), entry.name)
3433 self.assertEqual(entry.is_symlink(), entry.name == 'link')
3434 if os.stat in os.supports_dir_fd:
3435 st = os.stat(entry.name, dir_fd=fd)
3436 self.assertEqual(entry.stat(), st)
3437 st = os.stat(entry.name, dir_fd=fd, follow_symlinks=False)
3438 self.assertEqual(entry.stat(follow_symlinks=False), st)
3439 finally:
3440 os.close(fd)
3441
Victor Stinner6036e442015-03-08 01:58:04 +01003442 def test_empty_path(self):
3443 self.assertRaises(FileNotFoundError, os.scandir, '')
3444
3445 def test_consume_iterator_twice(self):
3446 self.create_file("file.txt")
3447 iterator = os.scandir(self.path)
3448
3449 entries = list(iterator)
3450 self.assertEqual(len(entries), 1, entries)
3451
3452 # check than consuming the iterator twice doesn't raise exception
3453 entries2 = list(iterator)
3454 self.assertEqual(len(entries2), 0, entries2)
3455
3456 def test_bad_path_type(self):
Serhiy Storchakaea720fe2017-03-30 09:12:31 +03003457 for obj in [1.234, {}, []]:
Victor Stinner6036e442015-03-08 01:58:04 +01003458 self.assertRaises(TypeError, os.scandir, obj)
3459
Serhiy Storchakaffe96ae2016-02-11 13:21:30 +02003460 def test_close(self):
3461 self.create_file("file.txt")
3462 self.create_file("file2.txt")
3463 iterator = os.scandir(self.path)
3464 next(iterator)
3465 iterator.close()
3466 # multiple closes
3467 iterator.close()
3468 with self.check_no_resource_warning():
3469 del iterator
3470
3471 def test_context_manager(self):
3472 self.create_file("file.txt")
3473 self.create_file("file2.txt")
3474 with os.scandir(self.path) as iterator:
3475 next(iterator)
3476 with self.check_no_resource_warning():
3477 del iterator
3478
3479 def test_context_manager_close(self):
3480 self.create_file("file.txt")
3481 self.create_file("file2.txt")
3482 with os.scandir(self.path) as iterator:
3483 next(iterator)
3484 iterator.close()
3485
3486 def test_context_manager_exception(self):
3487 self.create_file("file.txt")
3488 self.create_file("file2.txt")
3489 with self.assertRaises(ZeroDivisionError):
3490 with os.scandir(self.path) as iterator:
3491 next(iterator)
3492 1/0
3493 with self.check_no_resource_warning():
3494 del iterator
3495
3496 def test_resource_warning(self):
3497 self.create_file("file.txt")
3498 self.create_file("file2.txt")
3499 iterator = os.scandir(self.path)
3500 next(iterator)
3501 with self.assertWarns(ResourceWarning):
3502 del iterator
3503 support.gc_collect()
3504 # exhausted iterator
3505 iterator = os.scandir(self.path)
3506 list(iterator)
3507 with self.check_no_resource_warning():
3508 del iterator
3509
Victor Stinner6036e442015-03-08 01:58:04 +01003510
Ethan Furmancdc08792016-06-02 15:06:09 -07003511class TestPEP519(unittest.TestCase):
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003512
3513 # Abstracted so it can be overridden to test pure Python implementation
3514 # if a C version is provided.
3515 fspath = staticmethod(os.fspath)
3516
Ethan Furmancdc08792016-06-02 15:06:09 -07003517 def test_return_bytes(self):
3518 for b in b'hello', b'goodbye', b'some/path/and/file':
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003519 self.assertEqual(b, self.fspath(b))
Ethan Furmancdc08792016-06-02 15:06:09 -07003520
3521 def test_return_string(self):
3522 for s in 'hello', 'goodbye', 'some/path/and/file':
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003523 self.assertEqual(s, self.fspath(s))
Ethan Furmancdc08792016-06-02 15:06:09 -07003524
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003525 def test_fsencode_fsdecode(self):
Ethan Furmanc1cbeed2016-06-04 10:19:27 -07003526 for p in "path/like/object", b"path/like/object":
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003527 pathlike = FakePath(p)
Ethan Furmanc1cbeed2016-06-04 10:19:27 -07003528
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003529 self.assertEqual(p, self.fspath(pathlike))
Ethan Furmanc1cbeed2016-06-04 10:19:27 -07003530 self.assertEqual(b"path/like/object", os.fsencode(pathlike))
3531 self.assertEqual("path/like/object", os.fsdecode(pathlike))
3532
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003533 def test_pathlike(self):
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003534 self.assertEqual('#feelthegil', self.fspath(FakePath('#feelthegil')))
3535 self.assertTrue(issubclass(FakePath, os.PathLike))
3536 self.assertTrue(isinstance(FakePath('x'), os.PathLike))
Ethan Furman410ef8e2016-06-04 12:06:26 -07003537
Ethan Furmancdc08792016-06-02 15:06:09 -07003538 def test_garbage_in_exception_out(self):
3539 vapor = type('blah', (), {})
3540 for o in int, type, os, vapor():
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003541 self.assertRaises(TypeError, self.fspath, o)
Ethan Furmancdc08792016-06-02 15:06:09 -07003542
3543 def test_argument_required(self):
Brett Cannon044283a2016-07-15 10:41:49 -07003544 self.assertRaises(TypeError, self.fspath)
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003545
Brett Cannon044283a2016-07-15 10:41:49 -07003546 def test_bad_pathlike(self):
3547 # __fspath__ returns a value other than str or bytes.
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003548 self.assertRaises(TypeError, self.fspath, FakePath(42))
Brett Cannon044283a2016-07-15 10:41:49 -07003549 # __fspath__ attribute that is not callable.
3550 c = type('foo', (), {})
3551 c.__fspath__ = 1
3552 self.assertRaises(TypeError, self.fspath, c())
3553 # __fspath__ raises an exception.
Brett Cannon044283a2016-07-15 10:41:49 -07003554 self.assertRaises(ZeroDivisionError, self.fspath,
Miss Islington (bot)a13b6542018-03-02 02:17:51 -08003555 FakePath(ZeroDivisionError()))
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003556
Victor Stinnerc29b5852017-11-02 07:28:27 -07003557
3558class TimesTests(unittest.TestCase):
3559 def test_times(self):
3560 times = os.times()
3561 self.assertIsInstance(times, os.times_result)
3562
3563 for field in ('user', 'system', 'children_user', 'children_system',
3564 'elapsed'):
3565 value = getattr(times, field)
3566 self.assertIsInstance(value, float)
3567
3568 if os.name == 'nt':
3569 self.assertEqual(times.children_user, 0)
3570 self.assertEqual(times.children_system, 0)
3571 self.assertEqual(times.elapsed, 0)
3572
3573
Brett Cannonc78ca1e2016-06-24 12:03:43 -07003574# Only test if the C version is provided, otherwise TestPEP519 already tested
3575# the pure Python implementation.
3576if hasattr(os, "_fspath"):
3577 class TestPEP519PurePython(TestPEP519):
3578
3579 """Explicitly test the pure Python implementation of os.fspath()."""
3580
3581 fspath = staticmethod(os._fspath)
Ethan Furmancdc08792016-06-02 15:06:09 -07003582
3583
Fred Drake2e2be372001-09-20 21:33:42 +00003584if __name__ == "__main__":
R David Murrayf2ad1732014-12-25 18:36:56 -05003585 unittest.main()