blob: ffa58eedc2eb46f94ec5625d0bd89737c443d80a [file] [log] [blame]
Neal Norwitze241ce82003-02-17 18:17:05 +00001"Test posix functions"
2
Benjamin Petersonee8712c2008-05-20 21:35:26 +00003from test import support
R. David Murrayeb3615d2009-04-22 02:24:39 +00004
5# Skip these tests if there is no posix module.
6posix = support.import_module('posix')
Neal Norwitze241ce82003-02-17 18:17:05 +00007
Antoine Pitroub7572f02009-12-02 20:46:48 +00008import errno
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00009import sys
Neal Norwitze241ce82003-02-17 18:17:05 +000010import time
11import os
Charles-François Natali1e045b12011-05-22 20:42:32 +020012import fcntl
Charles-François Nataliab2d58e2012-04-17 19:48:35 +020013import platform
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000014import pwd
Benjamin Petersondcf97b92008-07-02 17:30:14 +000015import shutil
Benjamin Peterson052a02b2010-08-17 01:27:09 +000016import stat
Ned Deilyba2eab22011-07-26 13:53:55 -070017import tempfile
Neal Norwitze241ce82003-02-17 18:17:05 +000018import unittest
19import warnings
R. David Murraya21e4ca2009-03-31 23:16:50 +000020
Ned Deilyba2eab22011-07-26 13:53:55 -070021_DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
22 support.TESTFN + '-dummy-symlink')
Neal Norwitze241ce82003-02-17 18:17:05 +000023
24class PosixTester(unittest.TestCase):
25
26 def setUp(self):
27 # create empty file
Benjamin Petersonee8712c2008-05-20 21:35:26 +000028 fp = open(support.TESTFN, 'w+')
Neal Norwitze241ce82003-02-17 18:17:05 +000029 fp.close()
Ned Deily3eb67d52011-06-28 00:00:28 -070030 self.teardown_files = [ support.TESTFN ]
Brett Cannonc8d502e2010-03-20 21:53:28 +000031 self._warnings_manager = support.check_warnings()
32 self._warnings_manager.__enter__()
33 warnings.filterwarnings('ignore', '.* potential security risk .*',
34 RuntimeWarning)
Neal Norwitze241ce82003-02-17 18:17:05 +000035
36 def tearDown(self):
Ned Deily3eb67d52011-06-28 00:00:28 -070037 for teardown_file in self.teardown_files:
38 support.unlink(teardown_file)
Brett Cannonc8d502e2010-03-20 21:53:28 +000039 self._warnings_manager.__exit__(None, None, None)
Neal Norwitze241ce82003-02-17 18:17:05 +000040
41 def testNoArgFunctions(self):
42 # test posix functions which take no arguments and have
43 # no side-effects which we need to cleanup (e.g., fork, wait, abort)
Guido van Rossumf0af3e32008-10-02 18:55:37 +000044 NO_ARG_FUNCTIONS = [ "ctermid", "getcwd", "getcwdb", "uname",
Guido van Rossum687b9c02007-10-25 23:18:51 +000045 "times", "getloadavg",
Neal Norwitze241ce82003-02-17 18:17:05 +000046 "getegid", "geteuid", "getgid", "getgroups",
Ross Lagerwall7807c352011-03-17 20:20:30 +020047 "getpid", "getpgrp", "getppid", "getuid", "sync",
Neal Norwitze241ce82003-02-17 18:17:05 +000048 ]
Neal Norwitz71b13e82003-02-23 22:12:24 +000049
Neal Norwitze241ce82003-02-17 18:17:05 +000050 for name in NO_ARG_FUNCTIONS:
51 posix_func = getattr(posix, name, None)
52 if posix_func is not None:
53 posix_func()
Neal Norwitz2ff51a82003-02-17 22:40:31 +000054 self.assertRaises(TypeError, posix_func, 1)
Neal Norwitze241ce82003-02-17 18:17:05 +000055
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000056 if hasattr(posix, 'getresuid'):
57 def test_getresuid(self):
58 user_ids = posix.getresuid()
59 self.assertEqual(len(user_ids), 3)
60 for val in user_ids:
61 self.assertGreaterEqual(val, 0)
62
63 if hasattr(posix, 'getresgid'):
64 def test_getresgid(self):
65 group_ids = posix.getresgid()
66 self.assertEqual(len(group_ids), 3)
67 for val in group_ids:
68 self.assertGreaterEqual(val, 0)
69
70 if hasattr(posix, 'setresuid'):
71 def test_setresuid(self):
72 current_user_ids = posix.getresuid()
73 self.assertIsNone(posix.setresuid(*current_user_ids))
74 # -1 means don't change that value.
75 self.assertIsNone(posix.setresuid(-1, -1, -1))
76
77 def test_setresuid_exception(self):
78 # Don't do this test if someone is silly enough to run us as root.
79 current_user_ids = posix.getresuid()
80 if 0 not in current_user_ids:
81 new_user_ids = (current_user_ids[0]+1, -1, -1)
82 self.assertRaises(OSError, posix.setresuid, *new_user_ids)
83
84 if hasattr(posix, 'setresgid'):
85 def test_setresgid(self):
86 current_group_ids = posix.getresgid()
87 self.assertIsNone(posix.setresgid(*current_group_ids))
88 # -1 means don't change that value.
89 self.assertIsNone(posix.setresgid(-1, -1, -1))
90
91 def test_setresgid_exception(self):
92 # Don't do this test if someone is silly enough to run us as root.
93 current_group_ids = posix.getresgid()
94 if 0 not in current_group_ids:
95 new_group_ids = (current_group_ids[0]+1, -1, -1)
96 self.assertRaises(OSError, posix.setresgid, *new_group_ids)
97
Antoine Pitroub7572f02009-12-02 20:46:48 +000098 @unittest.skipUnless(hasattr(posix, 'initgroups'),
99 "test needs os.initgroups()")
100 def test_initgroups(self):
101 # It takes a string and an integer; check that it raises a TypeError
102 # for other argument lists.
103 self.assertRaises(TypeError, posix.initgroups)
104 self.assertRaises(TypeError, posix.initgroups, None)
105 self.assertRaises(TypeError, posix.initgroups, 3, "foo")
106 self.assertRaises(TypeError, posix.initgroups, "foo", 3, object())
107
108 # If a non-privileged user invokes it, it should fail with OSError
109 # EPERM.
110 if os.getuid() != 0:
Charles-François Natalie8a255a2012-05-02 20:01:38 +0200111 try:
112 name = pwd.getpwuid(posix.getuid()).pw_name
113 except KeyError:
114 # the current UID may not have a pwd entry
115 raise unittest.SkipTest("need a pwd entry")
Antoine Pitroub7572f02009-12-02 20:46:48 +0000116 try:
117 posix.initgroups(name, 13)
118 except OSError as e:
Ezio Melottib3aedd42010-11-20 19:04:17 +0000119 self.assertEqual(e.errno, errno.EPERM)
Antoine Pitroub7572f02009-12-02 20:46:48 +0000120 else:
121 self.fail("Expected OSError to be raised by initgroups")
122
Neal Norwitze241ce82003-02-17 18:17:05 +0000123 def test_statvfs(self):
124 if hasattr(posix, 'statvfs'):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000125 self.assertTrue(posix.statvfs(os.curdir))
Neal Norwitze241ce82003-02-17 18:17:05 +0000126
127 def test_fstatvfs(self):
128 if hasattr(posix, 'fstatvfs'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000129 fp = open(support.TESTFN)
Neal Norwitze241ce82003-02-17 18:17:05 +0000130 try:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000131 self.assertTrue(posix.fstatvfs(fp.fileno()))
Larry Hastings9cf065c2012-06-22 16:30:09 -0700132 self.assertTrue(posix.statvfs(fp.fileno()))
Neal Norwitze241ce82003-02-17 18:17:05 +0000133 finally:
134 fp.close()
135
136 def test_ftruncate(self):
137 if hasattr(posix, 'ftruncate'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000138 fp = open(support.TESTFN, 'w+')
Neal Norwitze241ce82003-02-17 18:17:05 +0000139 try:
140 # we need to have some data to truncate
141 fp.write('test')
142 fp.flush()
143 posix.ftruncate(fp.fileno(), 0)
144 finally:
145 fp.close()
146
Ross Lagerwall7807c352011-03-17 20:20:30 +0200147 @unittest.skipUnless(hasattr(posix, 'truncate'), "test needs posix.truncate()")
148 def test_truncate(self):
149 with open(support.TESTFN, 'w') as fp:
150 fp.write('test')
151 fp.flush()
152 posix.truncate(support.TESTFN, 0)
153
Larry Hastings9cf065c2012-06-22 16:30:09 -0700154 @unittest.skipUnless(getattr(os, 'execve', None) in os.supports_fd, "test needs execve() to support the fd parameter")
Ross Lagerwall7807c352011-03-17 20:20:30 +0200155 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
Ross Lagerwalldedf6cf2011-03-20 18:27:05 +0200156 @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()")
Ross Lagerwall7807c352011-03-17 20:20:30 +0200157 def test_fexecve(self):
158 fp = os.open(sys.executable, os.O_RDONLY)
159 try:
160 pid = os.fork()
161 if pid == 0:
162 os.chdir(os.path.split(sys.executable)[0])
Larry Hastings9cf065c2012-06-22 16:30:09 -0700163 posix.execve(fp, [sys.executable, '-c', 'pass'], os.environ)
Ross Lagerwall7807c352011-03-17 20:20:30 +0200164 else:
Ross Lagerwalldedf6cf2011-03-20 18:27:05 +0200165 self.assertEqual(os.waitpid(pid, 0), (pid, 0))
Ross Lagerwall7807c352011-03-17 20:20:30 +0200166 finally:
167 os.close(fp)
168
169 @unittest.skipUnless(hasattr(posix, 'waitid'), "test needs posix.waitid()")
170 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
171 def test_waitid(self):
172 pid = os.fork()
173 if pid == 0:
174 os.chdir(os.path.split(sys.executable)[0])
175 posix.execve(sys.executable, [sys.executable, '-c', 'pass'], os.environ)
176 else:
177 res = posix.waitid(posix.P_PID, pid, posix.WEXITED)
178 self.assertEqual(pid, res.si_pid)
179
180 @unittest.skipUnless(hasattr(posix, 'lockf'), "test needs posix.lockf()")
181 def test_lockf(self):
182 fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT)
183 try:
184 os.write(fd, b'test')
185 os.lseek(fd, 0, os.SEEK_SET)
186 posix.lockf(fd, posix.F_LOCK, 4)
187 # section is locked
188 posix.lockf(fd, posix.F_ULOCK, 4)
189 finally:
190 os.close(fd)
191
192 @unittest.skipUnless(hasattr(posix, 'pread'), "test needs posix.pread()")
193 def test_pread(self):
194 fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT)
195 try:
196 os.write(fd, b'test')
197 os.lseek(fd, 0, os.SEEK_SET)
198 self.assertEqual(b'es', posix.pread(fd, 2, 1))
Florent Xiclunae41f0de2011-11-11 19:39:25 +0100199 # the first pread() shouldn't disturb the file offset
Ross Lagerwall7807c352011-03-17 20:20:30 +0200200 self.assertEqual(b'te', posix.read(fd, 2))
201 finally:
202 os.close(fd)
203
204 @unittest.skipUnless(hasattr(posix, 'pwrite'), "test needs posix.pwrite()")
205 def test_pwrite(self):
206 fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT)
207 try:
208 os.write(fd, b'test')
209 os.lseek(fd, 0, os.SEEK_SET)
210 posix.pwrite(fd, b'xx', 1)
211 self.assertEqual(b'txxt', posix.read(fd, 4))
212 finally:
213 os.close(fd)
214
215 @unittest.skipUnless(hasattr(posix, 'posix_fallocate'),
216 "test needs posix.posix_fallocate()")
217 def test_posix_fallocate(self):
218 fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT)
219 try:
220 posix.posix_fallocate(fd, 0, 10)
221 except OSError as inst:
222 # issue10812, ZFS doesn't appear to support posix_fallocate,
223 # so skip Solaris-based since they are likely to have ZFS.
224 if inst.errno != errno.EINVAL or not sys.platform.startswith("sunos"):
225 raise
226 finally:
227 os.close(fd)
228
229 @unittest.skipUnless(hasattr(posix, 'posix_fadvise'),
230 "test needs posix.posix_fadvise()")
231 def test_posix_fadvise(self):
232 fd = os.open(support.TESTFN, os.O_RDONLY)
233 try:
234 posix.posix_fadvise(fd, 0, 0, posix.POSIX_FADV_WILLNEED)
235 finally:
236 os.close(fd)
237
Larry Hastings9cf065c2012-06-22 16:30:09 -0700238 @unittest.skipUnless(os.utime in os.supports_fd, "test needs fd support in os.utime")
239 def test_utime_with_fd(self):
Ross Lagerwall7807c352011-03-17 20:20:30 +0200240 now = time.time()
241 fd = os.open(support.TESTFN, os.O_RDONLY)
242 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700243 posix.utime(fd)
244 posix.utime(fd, None)
245 self.assertRaises(TypeError, posix.utime, fd, (None, None))
246 self.assertRaises(TypeError, posix.utime, fd, (now, None))
247 self.assertRaises(TypeError, posix.utime, fd, (None, now))
248 posix.utime(fd, (int(now), int(now)))
249 posix.utime(fd, (now, now))
250 self.assertRaises(ValueError, posix.utime, fd, (now, now), ns=(now, now))
251 self.assertRaises(ValueError, posix.utime, fd, (now, 0), ns=(None, None))
252 self.assertRaises(ValueError, posix.utime, fd, (None, None), ns=(now, 0))
253 posix.utime(fd, (int(now), int((now - int(now)) * 1e9)))
254 posix.utime(fd, ns=(int(now), int((now - int(now)) * 1e9)))
255
Ross Lagerwall7807c352011-03-17 20:20:30 +0200256 finally:
257 os.close(fd)
258
Larry Hastings9cf065c2012-06-22 16:30:09 -0700259 @unittest.skipUnless(os.utime in os.supports_follow_symlinks, "test needs follow_symlinks support in os.utime")
260 def test_utime_nofollow_symlinks(self):
Ross Lagerwall7807c352011-03-17 20:20:30 +0200261 now = time.time()
Larry Hastings9cf065c2012-06-22 16:30:09 -0700262 posix.utime(support.TESTFN, None, follow_symlinks=False)
263 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, None), follow_symlinks=False)
264 self.assertRaises(TypeError, posix.utime, support.TESTFN, (now, None), follow_symlinks=False)
265 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, now), follow_symlinks=False)
266 posix.utime(support.TESTFN, (int(now), int(now)), follow_symlinks=False)
267 posix.utime(support.TESTFN, (now, now), follow_symlinks=False)
268 posix.utime(support.TESTFN, follow_symlinks=False)
Ross Lagerwall7807c352011-03-17 20:20:30 +0200269
270 @unittest.skipUnless(hasattr(posix, 'writev'), "test needs posix.writev()")
271 def test_writev(self):
272 fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT)
273 try:
274 os.writev(fd, (b'test1', b'tt2', b't3'))
275 os.lseek(fd, 0, os.SEEK_SET)
276 self.assertEqual(b'test1tt2t3', posix.read(fd, 10))
277 finally:
278 os.close(fd)
279
280 @unittest.skipUnless(hasattr(posix, 'readv'), "test needs posix.readv()")
281 def test_readv(self):
282 fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT)
283 try:
284 os.write(fd, b'test1tt2t3')
285 os.lseek(fd, 0, os.SEEK_SET)
286 buf = [bytearray(i) for i in [5, 3, 2]]
287 self.assertEqual(posix.readv(fd, buf), 10)
288 self.assertEqual([b'test1', b'tt2', b't3'], [bytes(i) for i in buf])
289 finally:
290 os.close(fd)
291
Neal Norwitze241ce82003-02-17 18:17:05 +0000292 def test_dup(self):
293 if hasattr(posix, 'dup'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000294 fp = open(support.TESTFN)
Neal Norwitze241ce82003-02-17 18:17:05 +0000295 try:
296 fd = posix.dup(fp.fileno())
Ezio Melottie9615932010-01-24 19:26:24 +0000297 self.assertIsInstance(fd, int)
Neal Norwitze241ce82003-02-17 18:17:05 +0000298 os.close(fd)
299 finally:
300 fp.close()
301
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000302 def test_confstr(self):
303 if hasattr(posix, 'confstr'):
304 self.assertRaises(ValueError, posix.confstr, "CS_garbage")
305 self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)
306
Neal Norwitze241ce82003-02-17 18:17:05 +0000307 def test_dup2(self):
308 if hasattr(posix, 'dup2'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000309 fp1 = open(support.TESTFN)
310 fp2 = open(support.TESTFN)
Neal Norwitze241ce82003-02-17 18:17:05 +0000311 try:
312 posix.dup2(fp1.fileno(), fp2.fileno())
313 finally:
314 fp1.close()
315 fp2.close()
316
Charles-François Natali1e045b12011-05-22 20:42:32 +0200317 @unittest.skipUnless(hasattr(os, 'O_CLOEXEC'), "needs os.O_CLOEXEC")
Charles-François Natali239bb962011-06-03 12:55:15 +0200318 @support.requires_linux_version(2, 6, 23)
Charles-François Natali1e045b12011-05-22 20:42:32 +0200319 def test_oscloexec(self):
320 fd = os.open(support.TESTFN, os.O_RDONLY|os.O_CLOEXEC)
321 self.addCleanup(os.close, fd)
Victor Stinnere36f3752011-05-24 00:29:43 +0200322 self.assertTrue(fcntl.fcntl(fd, fcntl.F_GETFD) & fcntl.FD_CLOEXEC)
Charles-François Natali1e045b12011-05-22 20:42:32 +0200323
Skip Montanaro98470002005-06-17 01:14:49 +0000324 def test_osexlock(self):
325 if hasattr(posix, "O_EXLOCK"):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000326 fd = os.open(support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000327 os.O_WRONLY|os.O_EXLOCK|os.O_CREAT)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000328 self.assertRaises(OSError, os.open, support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000329 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
330 os.close(fd)
331
332 if hasattr(posix, "O_SHLOCK"):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000333 fd = os.open(support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000334 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000335 self.assertRaises(OSError, os.open, support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000336 os.O_WRONLY|os.O_EXLOCK|os.O_NONBLOCK)
337 os.close(fd)
338
339 def test_osshlock(self):
340 if hasattr(posix, "O_SHLOCK"):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000341 fd1 = os.open(support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000342 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000343 fd2 = os.open(support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000344 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
345 os.close(fd2)
346 os.close(fd1)
347
348 if hasattr(posix, "O_EXLOCK"):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000349 fd = os.open(support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000350 os.O_WRONLY|os.O_SHLOCK|os.O_CREAT)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000351 self.assertRaises(OSError, os.open, support.TESTFN,
Skip Montanaro98470002005-06-17 01:14:49 +0000352 os.O_RDONLY|os.O_EXLOCK|os.O_NONBLOCK)
353 os.close(fd)
354
Neal Norwitze241ce82003-02-17 18:17:05 +0000355 def test_fstat(self):
356 if hasattr(posix, 'fstat'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000357 fp = open(support.TESTFN)
Neal Norwitze241ce82003-02-17 18:17:05 +0000358 try:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000359 self.assertTrue(posix.fstat(fp.fileno()))
Larry Hastings9cf065c2012-06-22 16:30:09 -0700360 self.assertTrue(posix.stat(fp.fileno()))
Neal Norwitze241ce82003-02-17 18:17:05 +0000361 finally:
362 fp.close()
363
364 def test_stat(self):
365 if hasattr(posix, 'stat'):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000366 self.assertTrue(posix.stat(support.TESTFN))
Neal Norwitze241ce82003-02-17 18:17:05 +0000367
Benjamin Peterson052a02b2010-08-17 01:27:09 +0000368 @unittest.skipUnless(hasattr(posix, 'mkfifo'), "don't have mkfifo()")
369 def test_mkfifo(self):
370 support.unlink(support.TESTFN)
371 posix.mkfifo(support.TESTFN, stat.S_IRUSR | stat.S_IWUSR)
372 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
373
374 @unittest.skipUnless(hasattr(posix, 'mknod') and hasattr(stat, 'S_IFIFO'),
375 "don't have mknod()/S_IFIFO")
376 def test_mknod(self):
377 # Test using mknod() to create a FIFO (the only use specified
378 # by POSIX).
379 support.unlink(support.TESTFN)
380 mode = stat.S_IFIFO | stat.S_IRUSR | stat.S_IWUSR
381 try:
382 posix.mknod(support.TESTFN, mode, 0)
383 except OSError as e:
384 # Some old systems don't allow unprivileged users to use
385 # mknod(), or only support creating device nodes.
386 self.assertIn(e.errno, (errno.EPERM, errno.EINVAL))
387 else:
388 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
389
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000390 def _test_all_chown_common(self, chown_func, first_param):
391 """Common code for chown, fchown and lchown tests."""
Charles-François Nataliab2d58e2012-04-17 19:48:35 +0200392 # test a successful chown call
393 chown_func(first_param, os.getuid(), os.getgid())
394
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000395 if os.getuid() == 0:
396 try:
397 # Many linux distros have a nfsnobody user as MAX_UID-2
398 # that makes a good test case for signedness issues.
399 # http://bugs.python.org/issue1747858
400 # This part of the test only runs when run as root.
401 # Only scary people run their tests as root.
402 ent = pwd.getpwnam('nfsnobody')
403 chown_func(first_param, ent.pw_uid, ent.pw_gid)
404 except KeyError:
405 pass
Charles-François Nataliab2d58e2012-04-17 19:48:35 +0200406 elif platform.system() in ('HP-UX', 'SunOS'):
407 # HP-UX and Solaris can allow a non-root user to chown() to root
408 # (issue #5113)
409 raise unittest.SkipTest("Skipping because of non-standard chown() "
410 "behavior")
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000411 else:
412 # non-root cannot chown to root, raises OSError
413 self.assertRaises(OSError, chown_func,
414 first_param, 0, 0)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000415
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000416 @unittest.skipUnless(hasattr(posix, 'chown'), "test needs os.chown()")
417 def test_chown(self):
418 # raise an OSError if the file does not exist
419 os.unlink(support.TESTFN)
420 self.assertRaises(OSError, posix.chown, support.TESTFN, -1, -1)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000421
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000422 # re-create the file
Victor Stinnerbf816222011-06-30 23:25:47 +0200423 support.create_empty_file(support.TESTFN)
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000424 self._test_all_chown_common(posix.chown, support.TESTFN)
425
426 @unittest.skipUnless(hasattr(posix, 'fchown'), "test needs os.fchown()")
427 def test_fchown(self):
428 os.unlink(support.TESTFN)
429
430 # re-create the file
431 test_file = open(support.TESTFN, 'w')
432 try:
433 fd = test_file.fileno()
434 self._test_all_chown_common(posix.fchown, fd)
435 finally:
436 test_file.close()
437
438 @unittest.skipUnless(hasattr(posix, 'lchown'), "test needs os.lchown()")
439 def test_lchown(self):
440 os.unlink(support.TESTFN)
441 # create a symlink
Ned Deily3eb67d52011-06-28 00:00:28 -0700442 os.symlink(_DUMMY_SYMLINK, support.TESTFN)
Benjamin Peterson1baf4652009-12-31 03:11:23 +0000443 self._test_all_chown_common(posix.lchown, support.TESTFN)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000444
Neal Norwitze241ce82003-02-17 18:17:05 +0000445 def test_chdir(self):
446 if hasattr(posix, 'chdir'):
447 posix.chdir(os.curdir)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000448 self.assertRaises(OSError, posix.chdir, support.TESTFN)
Neal Norwitze241ce82003-02-17 18:17:05 +0000449
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +0000450 def test_listdir(self):
451 if hasattr(posix, 'listdir'):
452 self.assertTrue(support.TESTFN in posix.listdir(os.curdir))
453
454 def test_listdir_default(self):
455 # When listdir is called without argument, it's the same as listdir(os.curdir)
456 if hasattr(posix, 'listdir'):
457 self.assertTrue(support.TESTFN in posix.listdir())
Neal Norwitze241ce82003-02-17 18:17:05 +0000458
Larry Hastings9cf065c2012-06-22 16:30:09 -0700459 @unittest.skipUnless(os.listdir in os.supports_fd, "test needs fd support for os.listdir()")
Charles-François Natali77940902012-02-06 19:54:48 +0100460 def test_flistdir(self):
Antoine Pitrou8250e232011-02-25 23:41:16 +0000461 f = posix.open(posix.getcwd(), posix.O_RDONLY)
Charles-François Natali7546ad32012-01-08 18:34:06 +0100462 self.addCleanup(posix.close, f)
Antoine Pitrou8250e232011-02-25 23:41:16 +0000463 self.assertEqual(
464 sorted(posix.listdir('.')),
Larry Hastings9cf065c2012-06-22 16:30:09 -0700465 sorted(posix.listdir(f))
Antoine Pitrou8250e232011-02-25 23:41:16 +0000466 )
Charles-François Natali7546ad32012-01-08 18:34:06 +0100467 # Check that the fd offset was reset (issue #13739)
Charles-François Natali7546ad32012-01-08 18:34:06 +0100468 self.assertEqual(
469 sorted(posix.listdir('.')),
Larry Hastings9cf065c2012-06-22 16:30:09 -0700470 sorted(posix.listdir(f))
Charles-François Natali7546ad32012-01-08 18:34:06 +0100471 )
Antoine Pitrou8250e232011-02-25 23:41:16 +0000472
Neal Norwitze241ce82003-02-17 18:17:05 +0000473 def test_access(self):
474 if hasattr(posix, 'access'):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000475 self.assertTrue(posix.access(support.TESTFN, os.R_OK))
Neal Norwitze241ce82003-02-17 18:17:05 +0000476
477 def test_umask(self):
478 if hasattr(posix, 'umask'):
479 old_mask = posix.umask(0)
Ezio Melottie9615932010-01-24 19:26:24 +0000480 self.assertIsInstance(old_mask, int)
Neal Norwitze241ce82003-02-17 18:17:05 +0000481 posix.umask(old_mask)
482
483 def test_strerror(self):
484 if hasattr(posix, 'strerror'):
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000485 self.assertTrue(posix.strerror(0))
Neal Norwitze241ce82003-02-17 18:17:05 +0000486
487 def test_pipe(self):
488 if hasattr(posix, 'pipe'):
489 reader, writer = posix.pipe()
490 os.close(reader)
491 os.close(writer)
492
Charles-François Natalidaafdd52011-05-29 20:07:40 +0200493 @unittest.skipUnless(hasattr(os, 'pipe2'), "test needs os.pipe2()")
Charles-François Natali239bb962011-06-03 12:55:15 +0200494 @support.requires_linux_version(2, 6, 27)
Charles-François Natalidaafdd52011-05-29 20:07:40 +0200495 def test_pipe2(self):
496 self.assertRaises(TypeError, os.pipe2, 'DEADBEEF')
497 self.assertRaises(TypeError, os.pipe2, 0, 0)
498
Charles-François Natali368f34b2011-06-06 19:49:47 +0200499 # try calling with flags = 0, like os.pipe()
500 r, w = os.pipe2(0)
Charles-François Natalidaafdd52011-05-29 20:07:40 +0200501 os.close(r)
502 os.close(w)
503
504 # test flags
505 r, w = os.pipe2(os.O_CLOEXEC|os.O_NONBLOCK)
506 self.addCleanup(os.close, r)
507 self.addCleanup(os.close, w)
508 self.assertTrue(fcntl.fcntl(r, fcntl.F_GETFD) & fcntl.FD_CLOEXEC)
509 self.assertTrue(fcntl.fcntl(w, fcntl.F_GETFD) & fcntl.FD_CLOEXEC)
510 # try reading from an empty pipe: this should fail, not block
511 self.assertRaises(OSError, os.read, r, 1)
512 # try a write big enough to fill-up the pipe: this should either
513 # fail or perform a partial write, not block
514 try:
515 os.write(w, b'x' * support.PIPE_MAX_SIZE)
516 except OSError:
517 pass
518
Neal Norwitze241ce82003-02-17 18:17:05 +0000519 def test_utime(self):
520 if hasattr(posix, 'utime'):
521 now = time.time()
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000522 posix.utime(support.TESTFN, None)
523 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, None))
524 self.assertRaises(TypeError, posix.utime, support.TESTFN, (now, None))
525 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, now))
526 posix.utime(support.TESTFN, (int(now), int(now)))
527 posix.utime(support.TESTFN, (now, now))
Neal Norwitze241ce82003-02-17 18:17:05 +0000528
Larry Hastings9cf065c2012-06-22 16:30:09 -0700529 def _test_chflags_regular_file(self, chflags_func, target_file, **kwargs):
Ned Deily3eb67d52011-06-28 00:00:28 -0700530 st = os.stat(target_file)
531 self.assertTrue(hasattr(st, 'st_flags'))
Larry Hastings9cf065c2012-06-22 16:30:09 -0700532 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE, **kwargs)
Ned Deily3eb67d52011-06-28 00:00:28 -0700533 try:
534 new_st = os.stat(target_file)
535 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags)
536 try:
537 fd = open(target_file, 'w+')
538 except IOError as e:
539 self.assertEqual(e.errno, errno.EPERM)
540 finally:
541 posix.chflags(target_file, st.st_flags)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000542
Ned Deily3eb67d52011-06-28 00:00:28 -0700543 @unittest.skipUnless(hasattr(posix, 'chflags'), 'test needs os.chflags()')
544 def test_chflags(self):
545 self._test_chflags_regular_file(posix.chflags, support.TESTFN)
546
547 @unittest.skipUnless(hasattr(posix, 'lchflags'), 'test needs os.lchflags()')
548 def test_lchflags_regular_file(self):
549 self._test_chflags_regular_file(posix.lchflags, support.TESTFN)
Larry Hastings9cf065c2012-06-22 16:30:09 -0700550 self._test_chflags_regular_file(posix.chflags, support.TESTFN, follow_symlinks=False)
Ned Deily3eb67d52011-06-28 00:00:28 -0700551
552 @unittest.skipUnless(hasattr(posix, 'lchflags'), 'test needs os.lchflags()')
553 def test_lchflags_symlink(self):
554 testfn_st = os.stat(support.TESTFN)
555
556 self.assertTrue(hasattr(testfn_st, 'st_flags'))
557
558 os.symlink(support.TESTFN, _DUMMY_SYMLINK)
559 self.teardown_files.append(_DUMMY_SYMLINK)
560 dummy_symlink_st = os.lstat(_DUMMY_SYMLINK)
561
Larry Hastings9cf065c2012-06-22 16:30:09 -0700562 def chflags_nofollow(path, flags):
563 return posix.chflags(path, flags, follow_symlinks=False)
Ned Deily3eb67d52011-06-28 00:00:28 -0700564
Larry Hastings9cf065c2012-06-22 16:30:09 -0700565 for fn in (posix.lchflags, chflags_nofollow):
566 fn(_DUMMY_SYMLINK,
567 dummy_symlink_st.st_flags | stat.UF_IMMUTABLE)
568 try:
569 new_testfn_st = os.stat(support.TESTFN)
570 new_dummy_symlink_st = os.lstat(_DUMMY_SYMLINK)
571
572 self.assertEqual(testfn_st.st_flags, new_testfn_st.st_flags)
573 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
574 new_dummy_symlink_st.st_flags)
575 finally:
576 fn(_DUMMY_SYMLINK, dummy_symlink_st.st_flags)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000577
Guido van Rossum98297ee2007-11-06 21:34:58 +0000578 def test_environ(self):
Victor Stinner17b490d2010-05-06 22:19:30 +0000579 if os.name == "nt":
580 item_type = str
581 else:
582 item_type = bytes
Guido van Rossum98297ee2007-11-06 21:34:58 +0000583 for k, v in posix.environ.items():
Victor Stinner17b490d2010-05-06 22:19:30 +0000584 self.assertEqual(type(k), item_type)
585 self.assertEqual(type(v), item_type)
Guido van Rossum98297ee2007-11-06 21:34:58 +0000586
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000587 def test_getcwd_long_pathnames(self):
588 if hasattr(posix, 'getcwd'):
589 dirname = 'getcwd-test-directory-0123456789abcdef-01234567890abcdef'
590 curdir = os.getcwd()
591 base_path = os.path.abspath(support.TESTFN) + '.getcwd'
592
593 try:
594 os.mkdir(base_path)
595 os.chdir(base_path)
596 except:
Benjamin Petersone549ead2009-03-28 21:42:05 +0000597# Just returning nothing instead of the SkipTest exception,
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000598# because the test results in Error in that case.
599# Is that ok?
Benjamin Petersone549ead2009-03-28 21:42:05 +0000600# raise unittest.SkipTest("cannot create directory for testing")
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000601 return
602
603 def _create_and_do_getcwd(dirname, current_path_length = 0):
604 try:
605 os.mkdir(dirname)
606 except:
Benjamin Petersone549ead2009-03-28 21:42:05 +0000607 raise unittest.SkipTest("mkdir cannot create directory sufficiently deep for getcwd test")
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000608
609 os.chdir(dirname)
610 try:
611 os.getcwd()
612 if current_path_length < 1027:
613 _create_and_do_getcwd(dirname, current_path_length + len(dirname) + 1)
614 finally:
615 os.chdir('..')
616 os.rmdir(dirname)
617
618 _create_and_do_getcwd(dirname)
619
620 finally:
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000621 os.chdir(curdir)
R. David Murray414c91f2009-07-09 20:12:31 +0000622 support.rmtree(base_path)
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000623
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +0200624 @unittest.skipUnless(hasattr(posix, 'getgrouplist'), "test needs posix.getgrouplist()")
625 @unittest.skipUnless(hasattr(pwd, 'getpwuid'), "test needs pwd.getpwuid()")
626 @unittest.skipUnless(hasattr(os, 'getuid'), "test needs os.getuid()")
627 def test_getgrouplist(self):
628 with os.popen('id -G') as idg:
629 groups = idg.read().strip()
Charles-François Natalid59240d2012-05-02 20:04:40 +0200630 ret = idg.close()
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +0200631
Charles-François Natali360b3c22012-05-02 20:50:13 +0200632 if ret != None or not groups:
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +0200633 raise unittest.SkipTest("need working 'id -G'")
634
635 self.assertEqual(
636 set([int(x) for x in groups.split()]),
637 set(posix.getgrouplist(pwd.getpwuid(os.getuid())[0],
638 pwd.getpwuid(os.getuid())[3])))
639
Antoine Pitrou318b8f32011-01-12 18:45:27 +0000640 @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()")
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +0000641 def test_getgroups(self):
642 with os.popen('id -G') as idg:
643 groups = idg.read().strip()
Charles-François Natalie8a255a2012-05-02 20:01:38 +0200644 ret = idg.close()
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +0000645
Charles-François Natali39687ee2012-05-02 20:49:14 +0200646 if ret != None or not groups:
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +0000647 raise unittest.SkipTest("need working 'id -G'")
648
Ronald Oussoren7fb6f512010-08-01 19:18:13 +0000649 # 'id -G' and 'os.getgroups()' should return the same
650 # groups, ignoring order and duplicates.
Antoine Pitrou318b8f32011-01-12 18:45:27 +0000651 # #10822 - it is implementation defined whether posix.getgroups()
652 # includes the effective gid so we include it anyway, since id -G does
Ronald Oussorencb615e62010-07-24 14:15:19 +0000653 self.assertEqual(
Ronald Oussoren7fb6f512010-08-01 19:18:13 +0000654 set([int(x) for x in groups.split()]),
Antoine Pitrou318b8f32011-01-12 18:45:27 +0000655 set(posix.getgroups() + [posix.getegid()]))
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +0000656
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000657 # tests for the posix *at functions follow
658
Larry Hastings9cf065c2012-06-22 16:30:09 -0700659 @unittest.skipUnless(os.access in os.supports_dir_fd, "test needs dir_fd support for os.access()")
660 def test_access_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000661 f = posix.open(posix.getcwd(), posix.O_RDONLY)
662 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700663 self.assertTrue(posix.access(support.TESTFN, os.R_OK, dir_fd=f))
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000664 finally:
665 posix.close(f)
666
Larry Hastings9cf065c2012-06-22 16:30:09 -0700667 @unittest.skipUnless(os.chmod in os.supports_dir_fd, "test needs dir_fd support in os.chmod()")
668 def test_chmod_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000669 os.chmod(support.TESTFN, stat.S_IRUSR)
670
671 f = posix.open(posix.getcwd(), posix.O_RDONLY)
672 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700673 posix.chmod(support.TESTFN, stat.S_IRUSR | stat.S_IWUSR, dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000674
675 s = posix.stat(support.TESTFN)
676 self.assertEqual(s[0] & stat.S_IRWXU, stat.S_IRUSR | stat.S_IWUSR)
677 finally:
678 posix.close(f)
679
Larry Hastings9cf065c2012-06-22 16:30:09 -0700680 @unittest.skipUnless(os.chown in os.supports_dir_fd, "test needs dir_fd support in os.chown()")
681 def test_chown_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000682 support.unlink(support.TESTFN)
Victor Stinnerbf816222011-06-30 23:25:47 +0200683 support.create_empty_file(support.TESTFN)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000684
685 f = posix.open(posix.getcwd(), posix.O_RDONLY)
686 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700687 posix.chown(support.TESTFN, os.getuid(), os.getgid(), dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000688 finally:
689 posix.close(f)
690
Larry Hastings9cf065c2012-06-22 16:30:09 -0700691 @unittest.skipUnless(os.stat in os.supports_dir_fd, "test needs dir_fd support in os.stat()")
692 def test_stat_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000693 support.unlink(support.TESTFN)
694 with open(support.TESTFN, 'w') as outfile:
695 outfile.write("testline\n")
696
697 f = posix.open(posix.getcwd(), posix.O_RDONLY)
698 try:
699 s1 = posix.stat(support.TESTFN)
Larry Hastings9cf065c2012-06-22 16:30:09 -0700700 s2 = posix.stat(support.TESTFN, dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000701 self.assertEqual(s1, s2)
702 finally:
703 posix.close(f)
704
Larry Hastings9cf065c2012-06-22 16:30:09 -0700705 @unittest.skipUnless(os.utime in os.supports_dir_fd, "test needs dir_fd support in os.utime()")
706 def test_utime_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000707 f = posix.open(posix.getcwd(), posix.O_RDONLY)
708 try:
709 now = time.time()
Larry Hastings9cf065c2012-06-22 16:30:09 -0700710 posix.utime(support.TESTFN, None, dir_fd=f)
711 posix.utime(support.TESTFN, dir_fd=f)
712 self.assertRaises(TypeError, posix.utime, support.TESTFN, now, dir_fd=f)
713 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, None), dir_fd=f)
714 self.assertRaises(TypeError, posix.utime, support.TESTFN, (now, None), dir_fd=f)
715 self.assertRaises(TypeError, posix.utime, support.TESTFN, (None, now), dir_fd=f)
716 self.assertRaises(TypeError, posix.utime, support.TESTFN, (now, "x"), dir_fd=f)
717 posix.utime(support.TESTFN, (int(now), int(now)), dir_fd=f)
718 posix.utime(support.TESTFN, (now, now), dir_fd=f)
719 posix.utime(support.TESTFN,
720 (int(now), int((now - int(now)) * 1e9)), dir_fd=f)
721 posix.utime(support.TESTFN, dir_fd=f,
722 times=(int(now), int((now - int(now)) * 1e9)))
723
724 if os.utime in os.supports_follow_symlinks:
725 posix.utime(support.TESTFN, follow_symlinks=False, dir_fd=f)
726
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000727 finally:
728 posix.close(f)
729
Larry Hastings9cf065c2012-06-22 16:30:09 -0700730 @unittest.skipUnless(os.link in os.supports_dir_fd, "test needs dir_fd support in os.link()")
731 def test_link_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000732 f = posix.open(posix.getcwd(), posix.O_RDONLY)
733 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700734 posix.link(support.TESTFN, support.TESTFN + 'link', src_dir_fd=f, dst_dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000735 # should have same inodes
736 self.assertEqual(posix.stat(support.TESTFN)[1],
737 posix.stat(support.TESTFN + 'link')[1])
738 finally:
739 posix.close(f)
740 support.unlink(support.TESTFN + 'link')
741
Larry Hastings9cf065c2012-06-22 16:30:09 -0700742 @unittest.skipUnless(os.mkdir in os.supports_dir_fd, "test needs dir_fd support in os.mkdir()")
743 def test_mkdir_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000744 f = posix.open(posix.getcwd(), posix.O_RDONLY)
745 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700746 posix.mkdir(support.TESTFN + 'dir', dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000747 posix.stat(support.TESTFN + 'dir') # should not raise exception
748 finally:
749 posix.close(f)
750 support.rmtree(support.TESTFN + 'dir')
751
Larry Hastings9cf065c2012-06-22 16:30:09 -0700752 @unittest.skipUnless((os.mknod in os.supports_dir_fd) and hasattr(stat, 'S_IFIFO'),
753 "test requires both stat.S_IFIFO and dir_fd support for os.mknod()")
754 def test_mknod_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000755 # Test using mknodat() to create a FIFO (the only use specified
756 # by POSIX).
757 support.unlink(support.TESTFN)
758 mode = stat.S_IFIFO | stat.S_IRUSR | stat.S_IWUSR
759 f = posix.open(posix.getcwd(), posix.O_RDONLY)
760 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700761 posix.mknod(support.TESTFN, mode, 0, dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000762 except OSError as e:
763 # Some old systems don't allow unprivileged users to use
764 # mknod(), or only support creating device nodes.
765 self.assertIn(e.errno, (errno.EPERM, errno.EINVAL))
766 else:
767 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
768 finally:
769 posix.close(f)
770
Larry Hastings9cf065c2012-06-22 16:30:09 -0700771 @unittest.skipUnless(os.open in os.supports_dir_fd, "test needs dir_fd support in os.open()")
772 def test_open_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000773 support.unlink(support.TESTFN)
774 with open(support.TESTFN, 'w') as outfile:
775 outfile.write("testline\n")
776 a = posix.open(posix.getcwd(), posix.O_RDONLY)
Larry Hastings9cf065c2012-06-22 16:30:09 -0700777 b = posix.open(support.TESTFN, posix.O_RDONLY, dir_fd=a)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000778 try:
779 res = posix.read(b, 9).decode(encoding="utf-8")
780 self.assertEqual("testline\n", res)
781 finally:
782 posix.close(a)
783 posix.close(b)
784
Larry Hastings9cf065c2012-06-22 16:30:09 -0700785 @unittest.skipUnless(os.readlink in os.supports_dir_fd, "test needs dir_fd support in os.readlink()")
786 def test_readlink_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000787 os.symlink(support.TESTFN, support.TESTFN + 'link')
788 f = posix.open(posix.getcwd(), posix.O_RDONLY)
789 try:
790 self.assertEqual(posix.readlink(support.TESTFN + 'link'),
Larry Hastings9cf065c2012-06-22 16:30:09 -0700791 posix.readlink(support.TESTFN + 'link', dir_fd=f))
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000792 finally:
793 support.unlink(support.TESTFN + 'link')
794 posix.close(f)
795
Larry Hastings9cf065c2012-06-22 16:30:09 -0700796 @unittest.skipUnless(os.rename in os.supports_dir_fd, "test needs dir_fd support in os.rename()")
797 def test_rename_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000798 support.unlink(support.TESTFN)
Victor Stinnerbf816222011-06-30 23:25:47 +0200799 support.create_empty_file(support.TESTFN + 'ren')
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000800 f = posix.open(posix.getcwd(), posix.O_RDONLY)
801 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700802 posix.rename(support.TESTFN + 'ren', support.TESTFN, src_dir_fd=f, dst_dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000803 except:
804 posix.rename(support.TESTFN + 'ren', support.TESTFN)
805 raise
806 else:
807 posix.stat(support.TESTFN) # should not throw exception
808 finally:
809 posix.close(f)
810
Larry Hastings9cf065c2012-06-22 16:30:09 -0700811 @unittest.skipUnless(os.symlink in os.supports_dir_fd, "test needs dir_fd support in os.symlink()")
812 def test_symlink_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000813 f = posix.open(posix.getcwd(), posix.O_RDONLY)
814 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700815 posix.symlink(support.TESTFN, support.TESTFN + 'link', dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000816 self.assertEqual(posix.readlink(support.TESTFN + 'link'), support.TESTFN)
817 finally:
818 posix.close(f)
819 support.unlink(support.TESTFN + 'link')
820
Larry Hastings9cf065c2012-06-22 16:30:09 -0700821 @unittest.skipUnless(os.unlink in os.supports_dir_fd, "test needs dir_fd support in os.unlink()")
822 def test_unlink_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000823 f = posix.open(posix.getcwd(), posix.O_RDONLY)
Victor Stinnerbf816222011-06-30 23:25:47 +0200824 support.create_empty_file(support.TESTFN + 'del')
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000825 posix.stat(support.TESTFN + 'del') # should not throw exception
826 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700827 posix.unlink(support.TESTFN + 'del', dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000828 except:
829 support.unlink(support.TESTFN + 'del')
830 raise
831 else:
832 self.assertRaises(OSError, posix.stat, support.TESTFN + 'link')
833 finally:
834 posix.close(f)
835
Larry Hastings9cf065c2012-06-22 16:30:09 -0700836 @unittest.skipUnless(os.mkfifo in os.supports_dir_fd, "test needs dir_fd support in os.mkfifo()")
837 def test_mkfifo_dir_fd(self):
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000838 support.unlink(support.TESTFN)
839 f = posix.open(posix.getcwd(), posix.O_RDONLY)
840 try:
Larry Hastings9cf065c2012-06-22 16:30:09 -0700841 posix.mkfifo(support.TESTFN, stat.S_IRUSR | stat.S_IWUSR, dir_fd=f)
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000842 self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode))
843 finally:
844 posix.close(f)
845
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500846 requires_sched_h = unittest.skipUnless(hasattr(posix, 'sched_yield'),
847 "don't have scheduling support")
Benjamin Peterson2740af82011-08-02 17:41:34 -0500848 requires_sched_affinity = unittest.skipUnless(hasattr(posix, 'cpu_set'),
Benjamin Peterson50ba2712011-08-02 22:15:40 -0500849 "don't have sched affinity support")
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500850
851 @requires_sched_h
852 def test_sched_yield(self):
853 # This has no error conditions (at least on Linux).
854 posix.sched_yield()
855
856 @requires_sched_h
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +0200857 @unittest.skipUnless(hasattr(posix, 'sched_get_priority_max'),
858 "requires sched_get_priority_max()")
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500859 def test_sched_priority(self):
860 # Round-robin usually has interesting priorities.
861 pol = posix.SCHED_RR
862 lo = posix.sched_get_priority_min(pol)
863 hi = posix.sched_get_priority_max(pol)
864 self.assertIsInstance(lo, int)
865 self.assertIsInstance(hi, int)
866 self.assertGreaterEqual(hi, lo)
Benjamin Peterson539b6c42011-08-02 22:09:37 -0500867 # OSX evidently just returns 15 without checking the argument.
868 if sys.platform != "darwin":
Benjamin Petersonc1581582011-08-02 22:10:55 -0500869 self.assertRaises(OSError, posix.sched_get_priority_min, -23)
870 self.assertRaises(OSError, posix.sched_get_priority_max, -23)
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500871
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500872 @unittest.skipUnless(hasattr(posix, 'sched_setscheduler'), "can't change scheduler")
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500873 def test_get_and_set_scheduler_and_param(self):
874 possible_schedulers = [sched for name, sched in posix.__dict__.items()
875 if name.startswith("SCHED_")]
876 mine = posix.sched_getscheduler(0)
877 self.assertIn(mine, possible_schedulers)
878 try:
Jesus Ceaceb5d162011-09-10 01:16:55 +0200879 parent = posix.sched_getscheduler(os.getppid())
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500880 except OSError as e:
Jesus Ceaceb5d162011-09-10 01:16:55 +0200881 if e.errno != errno.EPERM:
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500882 raise
883 else:
Jesus Ceaceb5d162011-09-10 01:16:55 +0200884 self.assertIn(parent, possible_schedulers)
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500885 self.assertRaises(OSError, posix.sched_getscheduler, -1)
886 self.assertRaises(OSError, posix.sched_getparam, -1)
887 param = posix.sched_getparam(0)
888 self.assertIsInstance(param.sched_priority, int)
Benjamin Peterson18592ca2011-08-02 18:48:59 -0500889 try:
890 posix.sched_setscheduler(0, mine, param)
891 except OSError as e:
892 if e.errno != errno.EPERM:
893 raise
Charles-François Natali7b911cb2011-08-21 12:41:43 +0200894
895 # POSIX states that calling sched_setparam() on a process with a
896 # scheduling policy other than SCHED_FIFO or SCHED_RR is
897 # implementation-defined: FreeBSD returns EINVAL.
898 if not sys.platform.startswith('freebsd'):
899 posix.sched_setparam(0, param)
900 self.assertRaises(OSError, posix.sched_setparam, -1, param)
901
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500902 self.assertRaises(OSError, posix.sched_setscheduler, -1, mine, param)
903 self.assertRaises(TypeError, posix.sched_setscheduler, 0, mine, None)
904 self.assertRaises(TypeError, posix.sched_setparam, 0, 43)
905 param = posix.sched_param(None)
906 self.assertRaises(TypeError, posix.sched_setparam, 0, param)
907 large = 214748364700
908 param = posix.sched_param(large)
909 self.assertRaises(OverflowError, posix.sched_setparam, 0, param)
910 param = posix.sched_param(sched_priority=-large)
911 self.assertRaises(OverflowError, posix.sched_setparam, 0, param)
912
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -0500913 @unittest.skipUnless(hasattr(posix, "sched_rr_get_interval"), "no function")
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500914 def test_sched_rr_get_interval(self):
Benjamin Peterson43234ab2011-08-02 22:19:14 -0500915 try:
916 interval = posix.sched_rr_get_interval(0)
917 except OSError as e:
918 # This likely means that sched_rr_get_interval is only valid for
919 # processes with the SCHED_RR scheduler in effect.
920 if e.errno != errno.EINVAL:
921 raise
922 self.skipTest("only works on SCHED_RR processes")
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500923 self.assertIsInstance(interval, float)
924 # Reasonable constraints, I think.
925 self.assertGreaterEqual(interval, 0.)
926 self.assertLess(interval, 1.)
927
Benjamin Peterson2740af82011-08-02 17:41:34 -0500928 @requires_sched_affinity
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500929 def test_sched_affinity(self):
930 mask = posix.sched_getaffinity(0, 1024)
931 self.assertGreaterEqual(mask.count(), 1)
932 self.assertIsInstance(mask, posix.cpu_set)
933 self.assertRaises(OSError, posix.sched_getaffinity, -1, 1024)
934 empty = posix.cpu_set(10)
935 posix.sched_setaffinity(0, mask)
936 self.assertRaises(OSError, posix.sched_setaffinity, 0, empty)
937 self.assertRaises(OSError, posix.sched_setaffinity, -1, mask)
938
Benjamin Peterson2740af82011-08-02 17:41:34 -0500939 @requires_sched_affinity
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500940 def test_cpu_set_basic(self):
941 s = posix.cpu_set(10)
942 self.assertEqual(len(s), 10)
943 self.assertEqual(s.count(), 0)
944 s.set(0)
945 s.set(9)
946 self.assertTrue(s.isset(0))
947 self.assertTrue(s.isset(9))
948 self.assertFalse(s.isset(5))
949 self.assertEqual(s.count(), 2)
950 s.clear(0)
951 self.assertFalse(s.isset(0))
952 self.assertEqual(s.count(), 1)
953 s.zero()
954 self.assertFalse(s.isset(0))
955 self.assertFalse(s.isset(9))
956 self.assertEqual(s.count(), 0)
957 self.assertRaises(ValueError, s.set, -1)
958 self.assertRaises(ValueError, s.set, 10)
959 self.assertRaises(ValueError, s.clear, -1)
960 self.assertRaises(ValueError, s.clear, 10)
961 self.assertRaises(ValueError, s.isset, -1)
962 self.assertRaises(ValueError, s.isset, 10)
963
Benjamin Peterson2740af82011-08-02 17:41:34 -0500964 @requires_sched_affinity
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500965 def test_cpu_set_cmp(self):
966 self.assertNotEqual(posix.cpu_set(11), posix.cpu_set(12))
967 l = posix.cpu_set(10)
968 r = posix.cpu_set(10)
969 self.assertEqual(l, r)
970 l.set(1)
971 self.assertNotEqual(l, r)
972 r.set(1)
973 self.assertEqual(l, r)
974
Benjamin Peterson2740af82011-08-02 17:41:34 -0500975 @requires_sched_affinity
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500976 def test_cpu_set_bitwise(self):
977 l = posix.cpu_set(5)
978 l.set(0)
979 l.set(1)
980 r = posix.cpu_set(5)
981 r.set(1)
982 r.set(2)
983 b = l & r
984 self.assertEqual(b.count(), 1)
985 self.assertTrue(b.isset(1))
986 b = l | r
987 self.assertEqual(b.count(), 3)
988 self.assertTrue(b.isset(0))
989 self.assertTrue(b.isset(1))
990 self.assertTrue(b.isset(2))
991 b = l ^ r
992 self.assertEqual(b.count(), 2)
993 self.assertTrue(b.isset(0))
994 self.assertFalse(b.isset(1))
995 self.assertTrue(b.isset(2))
996 b = l
997 b |= r
998 self.assertIs(b, l)
999 self.assertEqual(l.count(), 3)
1000
Victor Stinner8b905bd2011-10-25 13:34:04 +02001001 def test_rtld_constants(self):
1002 # check presence of major RTLD_* constants
1003 posix.RTLD_LAZY
1004 posix.RTLD_NOW
1005 posix.RTLD_GLOBAL
1006 posix.RTLD_LOCAL
1007
Jesus Cea94363612012-06-22 18:32:07 +02001008 @unittest.skipUnless(hasattr(os, 'SEEK_HOLE'),
1009 "test needs an OS that reports file holes")
1010 def test_fs_holes(self) :
1011 # Even if the filesystem doesn't report holes,
1012 # if the OS supports it the SEEK_* constants
1013 # will be defined and will have a consistent
1014 # behaviour:
1015 # os.SEEK_DATA = current position
1016 # os.SEEK_HOLE = end of file position
1017 with open(support.TESTFN, 'r+b') as fp :
1018 fp.write(b"hello")
1019 fp.flush()
1020 size = fp.tell()
1021 fno = fp.fileno()
1022 for i in range(size) :
1023 self.assertEqual(i, os.lseek(fno, i, os.SEEK_DATA))
1024 self.assertLessEqual(size, os.lseek(fno, i, os.SEEK_HOLE))
1025 self.assertRaises(OSError, os.lseek, fno, size, os.SEEK_DATA)
1026 self.assertRaises(OSError, os.lseek, fno, size, os.SEEK_HOLE)
1027
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00001028class PosixGroupsTester(unittest.TestCase):
1029
1030 def setUp(self):
1031 if posix.getuid() != 0:
1032 raise unittest.SkipTest("not enough privileges")
1033 if not hasattr(posix, 'getgroups'):
1034 raise unittest.SkipTest("need posix.getgroups")
1035 if sys.platform == 'darwin':
1036 raise unittest.SkipTest("getgroups(2) is broken on OSX")
1037 self.saved_groups = posix.getgroups()
1038
1039 def tearDown(self):
1040 if hasattr(posix, 'setgroups'):
1041 posix.setgroups(self.saved_groups)
1042 elif hasattr(posix, 'initgroups'):
1043 name = pwd.getpwuid(posix.getuid()).pw_name
1044 posix.initgroups(name, self.saved_groups[0])
1045
1046 @unittest.skipUnless(hasattr(posix, 'initgroups'),
1047 "test needs posix.initgroups()")
1048 def test_initgroups(self):
1049 # find missing group
1050
Antoine Pitroue5a91012010-09-04 17:32:06 +00001051 g = max(self.saved_groups) + 1
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00001052 name = pwd.getpwuid(posix.getuid()).pw_name
1053 posix.initgroups(name, g)
1054 self.assertIn(g, posix.getgroups())
1055
1056 @unittest.skipUnless(hasattr(posix, 'setgroups'),
1057 "test needs posix.setgroups()")
1058 def test_setgroups(self):
Antoine Pitroue5a91012010-09-04 17:32:06 +00001059 for groups in [[0], list(range(16))]:
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00001060 posix.setgroups(groups)
1061 self.assertListEqual(groups, posix.getgroups())
1062
Neal Norwitze241ce82003-02-17 18:17:05 +00001063def test_main():
Antoine Pitrou68c95922011-03-20 17:33:57 +01001064 try:
1065 support.run_unittest(PosixTester, PosixGroupsTester)
1066 finally:
1067 support.reap_children()
Neal Norwitze241ce82003-02-17 18:17:05 +00001068
1069if __name__ == '__main__':
1070 test_main()