blob: 727b00eebf4ae6de6ed81eb3a775ef8bd91ab355 [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
5import os
Benjamin Peterson5c6d7872009-02-06 02:40:07 +00006import errno
Fred Drake38c2ef02001-07-17 20:52:51 +00007import unittest
Jeremy Hyltona7fc21b2001-08-20 20:10:01 +00008import warnings
Thomas Wouters477c8d52006-05-27 19:21:47 +00009import sys
Brian Curtineb24d742010-04-12 17:16:38 +000010import signal
11import subprocess
12import time
Martin v. Löwis011e8422009-05-05 04:43:17 +000013import shutil
Benjamin Petersonee8712c2008-05-20 21:35:26 +000014from test import support
Fred Drake38c2ef02001-07-17 20:52:51 +000015
Mark Dickinson7cf03892010-04-16 13:45:35 +000016# Detect whether we're on a Linux system that uses the (now outdated
17# and unmaintained) linuxthreads threading library. There's an issue
18# when combining linuxthreads with a failed execv call: see
19# http://bugs.python.org/issue4970.
Mark Dickinson89589c92010-04-16 13:51:27 +000020if (hasattr(os, "confstr_names") and
21 "CS_GNU_LIBPTHREAD_VERSION" in os.confstr_names):
Mark Dickinson7cf03892010-04-16 13:45:35 +000022 libpthread = os.confstr("CS_GNU_LIBPTHREAD_VERSION")
23 USING_LINUXTHREADS= libpthread.startswith("linuxthreads")
24else:
25 USING_LINUXTHREADS= False
Brian Curtineb24d742010-04-12 17:16:38 +000026
Thomas Wouters0e3f5912006-08-11 14:57:12 +000027# Tests creating TESTFN
28class FileTests(unittest.TestCase):
29 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +000030 if os.path.exists(support.TESTFN):
31 os.unlink(support.TESTFN)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000032 tearDown = setUp
33
34 def test_access(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +000035 f = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000036 os.close(f)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000037 self.assertTrue(os.access(support.TESTFN, os.W_OK))
Thomas Wouters0e3f5912006-08-11 14:57:12 +000038
Christian Heimesfdab48e2008-01-20 09:06:41 +000039 def test_closerange(self):
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000040 first = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
41 # We must allocate two consecutive file descriptors, otherwise
42 # it will mess up other file descriptors (perhaps even the three
43 # standard ones).
44 second = os.dup(first)
45 try:
46 retries = 0
47 while second != first + 1:
48 os.close(first)
49 retries += 1
50 if retries > 10:
51 # XXX test skipped
Benjamin Petersonfa0d7032009-06-01 22:42:33 +000052 self.skipTest("couldn't allocate two consecutive fds")
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000053 first, second = second, os.dup(second)
54 finally:
55 os.close(second)
Christian Heimesfdab48e2008-01-20 09:06:41 +000056 # close a fd that is open, and one that isn't
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000057 os.closerange(first, first + 2)
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000058 self.assertRaises(OSError, os.write, first, b"a")
Thomas Wouters0e3f5912006-08-11 14:57:12 +000059
Hirokazu Yamamoto4c19e6e2008-09-08 23:41:21 +000060 def test_rename(self):
61 path = support.TESTFN
62 old = sys.getrefcount(path)
63 self.assertRaises(TypeError, os.rename, path, 0)
64 new = sys.getrefcount(path)
65 self.assertEqual(old, new)
66
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000067 def test_read(self):
68 with open(support.TESTFN, "w+b") as fobj:
69 fobj.write(b"spam")
70 fobj.flush()
71 fd = fobj.fileno()
72 os.lseek(fd, 0, 0)
73 s = os.read(fd, 4)
74 self.assertEqual(type(s), bytes)
75 self.assertEqual(s, b"spam")
76
77 def test_write(self):
78 # os.write() accepts bytes- and buffer-like objects but not strings
79 fd = os.open(support.TESTFN, os.O_CREAT | os.O_WRONLY)
80 self.assertRaises(TypeError, os.write, fd, "beans")
81 os.write(fd, b"bacon\n")
82 os.write(fd, bytearray(b"eggs\n"))
83 os.write(fd, memoryview(b"spam\n"))
84 os.close(fd)
85 with open(support.TESTFN, "rb") as fobj:
Antoine Pitroud62269f2008-09-15 23:54:52 +000086 self.assertEqual(fobj.read().splitlines(),
87 [b"bacon", b"eggs", b"spam"])
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000088
89
Christian Heimesdd15f6c2008-03-16 00:07:10 +000090class TemporaryFileTests(unittest.TestCase):
91 def setUp(self):
92 self.files = []
Benjamin Petersonee8712c2008-05-20 21:35:26 +000093 os.mkdir(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +000094
95 def tearDown(self):
96 for name in self.files:
97 os.unlink(name)
Benjamin Petersonee8712c2008-05-20 21:35:26 +000098 os.rmdir(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +000099
100 def check_tempfile(self, name):
101 # make sure it doesn't already exist:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000102 self.assertFalse(os.path.exists(name),
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000103 "file already exists for temporary file")
104 # make sure we can create the file
105 open(name, "w")
106 self.files.append(name)
107
108 def test_tempnam(self):
109 if not hasattr(os, "tempnam"):
110 return
111 warnings.filterwarnings("ignore", "tempnam", RuntimeWarning,
112 r"test_os$")
113 self.check_tempfile(os.tempnam())
114
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000115 name = os.tempnam(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000116 self.check_tempfile(name)
117
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000118 name = os.tempnam(support.TESTFN, "pfx")
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000119 self.assertTrue(os.path.basename(name)[:3] == "pfx")
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000120 self.check_tempfile(name)
121
122 def test_tmpfile(self):
123 if not hasattr(os, "tmpfile"):
124 return
125 # As with test_tmpnam() below, the Windows implementation of tmpfile()
126 # attempts to create a file in the root directory of the current drive.
127 # On Vista and Server 2008, this test will always fail for normal users
128 # as writing to the root directory requires elevated privileges. With
129 # XP and below, the semantics of tmpfile() are the same, but the user
130 # running the test is more likely to have administrative privileges on
131 # their account already. If that's the case, then os.tmpfile() should
132 # work. In order to make this test as useful as possible, rather than
133 # trying to detect Windows versions or whether or not the user has the
134 # right permissions, just try and create a file in the root directory
135 # and see if it raises a 'Permission denied' OSError. If it does, then
136 # test that a subsequent call to os.tmpfile() raises the same error. If
137 # it doesn't, assume we're on XP or below and the user running the test
138 # has administrative privileges, and proceed with the test as normal.
139 if sys.platform == 'win32':
140 name = '\\python_test_os_test_tmpfile.txt'
141 if os.path.exists(name):
142 os.remove(name)
143 try:
144 fp = open(name, 'w')
145 except IOError as first:
146 # open() failed, assert tmpfile() fails in the same way.
147 # Although open() raises an IOError and os.tmpfile() raises an
148 # OSError(), 'args' will be (13, 'Permission denied') in both
149 # cases.
150 try:
151 fp = os.tmpfile()
152 except OSError as second:
153 self.assertEqual(first.args, second.args)
154 else:
155 self.fail("expected os.tmpfile() to raise OSError")
156 return
157 else:
158 # open() worked, therefore, tmpfile() should work. Close our
159 # dummy file and proceed with the test as normal.
160 fp.close()
161 os.remove(name)
162
163 fp = os.tmpfile()
164 fp.write("foobar")
165 fp.seek(0,0)
166 s = fp.read()
167 fp.close()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000168 self.assertTrue(s == "foobar")
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000169
170 def test_tmpnam(self):
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000171 if not hasattr(os, "tmpnam"):
172 return
173 warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning,
174 r"test_os$")
175 name = os.tmpnam()
176 if sys.platform in ("win32",):
177 # The Windows tmpnam() seems useless. From the MS docs:
178 #
179 # The character string that tmpnam creates consists of
180 # the path prefix, defined by the entry P_tmpdir in the
181 # file STDIO.H, followed by a sequence consisting of the
182 # digit characters '0' through '9'; the numerical value
183 # of this string is in the range 1 - 65,535. Changing the
184 # definitions of L_tmpnam or P_tmpdir in STDIO.H does not
185 # change the operation of tmpnam.
186 #
187 # The really bizarre part is that, at least under MSVC6,
188 # P_tmpdir is "\\". That is, the path returned refers to
189 # the root of the current drive. That's a terrible place to
190 # put temp files, and, depending on privileges, the user
191 # may not even be able to open a file in the root directory.
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000192 self.assertFalse(os.path.exists(name),
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000193 "file already exists for temporary file")
194 else:
195 self.check_tempfile(name)
196
Amaury Forgeot d'Arce2e36ba2008-08-01 00:14:22 +0000197 def fdopen_helper(self, *args):
198 fd = os.open(support.TESTFN, os.O_RDONLY)
199 fp2 = os.fdopen(fd, *args)
200 fp2.close()
201
202 def test_fdopen(self):
203 self.fdopen_helper()
204 self.fdopen_helper('r')
205 self.fdopen_helper('r', 100)
206
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000207# Test attributes on return values from os.*stat* family.
208class StatAttributeTests(unittest.TestCase):
209 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000210 os.mkdir(support.TESTFN)
211 self.fname = os.path.join(support.TESTFN, "f1")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000212 f = open(self.fname, 'wb')
Guido van Rossum26d95c32007-08-27 23:18:54 +0000213 f.write(b"ABC")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000214 f.close()
Tim Peterse0c446b2001-10-18 21:57:37 +0000215
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000216 def tearDown(self):
217 os.unlink(self.fname)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000218 os.rmdir(support.TESTFN)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000219
220 def test_stat_attributes(self):
221 if not hasattr(os, "stat"):
222 return
223
224 import stat
225 result = os.stat(self.fname)
226
227 # Make sure direct access works
228 self.assertEquals(result[stat.ST_SIZE], 3)
229 self.assertEquals(result.st_size, 3)
230
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000231 # Make sure all the attributes are there
232 members = dir(result)
233 for name in dir(stat):
234 if name[:3] == 'ST_':
235 attr = name.lower()
Martin v. Löwis4d394df2005-01-23 09:19:22 +0000236 if name.endswith("TIME"):
237 def trunc(x): return int(x)
238 else:
239 def trunc(x): return x
240 self.assertEquals(trunc(getattr(result, attr)),
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000241 result[getattr(stat, name)])
Benjamin Peterson577473f2010-01-19 00:09:57 +0000242 self.assertIn(attr, members)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000243
244 try:
245 result[200]
246 self.fail("No exception thrown")
247 except IndexError:
248 pass
249
250 # Make sure that assignment fails
251 try:
252 result.st_mode = 1
253 self.fail("No exception thrown")
Collin Winter42dae6a2007-03-28 21:44:53 +0000254 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000255 pass
256
257 try:
258 result.st_rdev = 1
259 self.fail("No exception thrown")
Guido van Rossum1fff8782001-10-18 21:19:31 +0000260 except (AttributeError, TypeError):
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000261 pass
262
263 try:
264 result.parrot = 1
265 self.fail("No exception thrown")
266 except AttributeError:
267 pass
268
269 # Use the stat_result constructor with a too-short tuple.
270 try:
271 result2 = os.stat_result((10,))
272 self.fail("No exception thrown")
273 except TypeError:
274 pass
275
276 # Use the constructr with a too-long tuple.
277 try:
278 result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
279 except TypeError:
280 pass
281
Tim Peterse0c446b2001-10-18 21:57:37 +0000282
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000283 def test_statvfs_attributes(self):
284 if not hasattr(os, "statvfs"):
285 return
286
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000287 try:
288 result = os.statvfs(self.fname)
Guido van Rossumb940e112007-01-10 16:19:56 +0000289 except OSError as e:
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000290 # On AtheOS, glibc always returns ENOSYS
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000291 if e.errno == errno.ENOSYS:
292 return
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000293
294 # Make sure direct access works
Brett Cannoncfaf10c2008-05-16 00:45:35 +0000295 self.assertEquals(result.f_bfree, result[3])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000296
Brett Cannoncfaf10c2008-05-16 00:45:35 +0000297 # Make sure all the attributes are there.
298 members = ('bsize', 'frsize', 'blocks', 'bfree', 'bavail', 'files',
299 'ffree', 'favail', 'flag', 'namemax')
300 for value, member in enumerate(members):
301 self.assertEquals(getattr(result, 'f_' + member), result[value])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000302
303 # Make sure that assignment really fails
304 try:
305 result.f_bfree = 1
306 self.fail("No exception thrown")
Collin Winter42dae6a2007-03-28 21:44:53 +0000307 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000308 pass
309
310 try:
311 result.parrot = 1
312 self.fail("No exception thrown")
313 except AttributeError:
314 pass
315
316 # Use the constructor with a too-short tuple.
317 try:
318 result2 = os.statvfs_result((10,))
319 self.fail("No exception thrown")
320 except TypeError:
321 pass
322
323 # Use the constructr with a too-long tuple.
324 try:
325 result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
326 except TypeError:
327 pass
Fred Drake38c2ef02001-07-17 20:52:51 +0000328
Thomas Wouters89f507f2006-12-13 04:49:30 +0000329 def test_utime_dir(self):
330 delta = 1000000
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000331 st = os.stat(support.TESTFN)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000332 # round to int, because some systems may support sub-second
333 # time stamps in stat, but not in utime.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000334 os.utime(support.TESTFN, (st.st_atime, int(st.st_mtime-delta)))
335 st2 = os.stat(support.TESTFN)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000336 self.assertEquals(st2.st_mtime, int(st.st_mtime-delta))
337
338 # Restrict test to Win32, since there is no guarantee other
339 # systems support centiseconds
340 if sys.platform == 'win32':
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000341 def get_file_system(path):
Hirokazu Yamamoto5ef6d182008-08-20 04:17:24 +0000342 root = os.path.splitdrive(os.path.abspath(path))[0] + '\\'
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000343 import ctypes
Hirokazu Yamamotoca765d52008-08-20 16:18:19 +0000344 kernel32 = ctypes.windll.kernel32
Hirokazu Yamamoto5ef6d182008-08-20 04:17:24 +0000345 buf = ctypes.create_unicode_buffer("", 100)
Hirokazu Yamamotoca765d52008-08-20 16:18:19 +0000346 if kernel32.GetVolumeInformationW(root, None, 0, None, None, None, buf, len(buf)):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000347 return buf.value
348
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000349 if get_file_system(support.TESTFN) == "NTFS":
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000350 def test_1565150(self):
351 t1 = 1159195039.25
352 os.utime(self.fname, (t1, t1))
353 self.assertEquals(os.stat(self.fname).st_mtime, t1)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000354
Guido van Rossumd8faa362007-04-27 19:54:29 +0000355 def test_1686475(self):
356 # Verify that an open file can be stat'ed
357 try:
358 os.stat(r"c:\pagefile.sys")
359 except WindowsError as e:
Benjamin Petersonc4fe6f32008-08-19 18:57:56 +0000360 if e.errno == 2: # file does not exist; cannot run test
Guido van Rossumd8faa362007-04-27 19:54:29 +0000361 return
362 self.fail("Could not stat pagefile.sys")
363
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000364from test import mapping_tests
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000365
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000366class EnvironTests(mapping_tests.BasicTestMappingProtocol):
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000367 """check that os.environ object conform to mapping protocol"""
Walter Dörwald118f9312004-06-02 18:42:25 +0000368 type2test = None
Christian Heimes90333392007-11-01 19:08:42 +0000369
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000370 def setUp(self):
371 self.__save = dict(os.environ)
Victor Stinner84ae1182010-05-06 22:05:07 +0000372 self.__saveb = dict(os.environb)
Christian Heimes90333392007-11-01 19:08:42 +0000373 for key, value in self._reference().items():
374 os.environ[key] = value
375
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000376 def tearDown(self):
377 os.environ.clear()
378 os.environ.update(self.__save)
Victor Stinner84ae1182010-05-06 22:05:07 +0000379 os.environb.clear()
380 os.environb.update(self.__saveb)
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000381
Christian Heimes90333392007-11-01 19:08:42 +0000382 def _reference(self):
383 return {"KEY1":"VALUE1", "KEY2":"VALUE2", "KEY3":"VALUE3"}
384
385 def _empty_mapping(self):
386 os.environ.clear()
387 return os.environ
388
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000389 # Bug 1110478
Martin v. Löwis5510f652005-02-17 21:23:20 +0000390 def test_update2(self):
Christian Heimes90333392007-11-01 19:08:42 +0000391 os.environ.clear()
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000392 if os.path.exists("/bin/sh"):
393 os.environ.update(HELLO="World")
394 value = os.popen("/bin/sh -c 'echo $HELLO'").read().strip()
395 self.assertEquals(value, "World")
396
Christian Heimes1a13d592007-11-08 14:16:55 +0000397 def test_os_popen_iter(self):
398 if os.path.exists("/bin/sh"):
399 popen = os.popen("/bin/sh -c 'echo \"line1\nline2\nline3\"'")
400 it = iter(popen)
401 self.assertEquals(next(it), "line1\n")
402 self.assertEquals(next(it), "line2\n")
403 self.assertEquals(next(it), "line3\n")
404 self.assertRaises(StopIteration, next, it)
405
Guido van Rossum67aca9e2007-06-13 21:51:27 +0000406 # Verify environ keys and values from the OS are of the
407 # correct str type.
408 def test_keyvalue_types(self):
409 for key, val in os.environ.items():
410 self.assertEquals(type(key), str)
411 self.assertEquals(type(val), str)
412
Christian Heimes90333392007-11-01 19:08:42 +0000413 def test_items(self):
414 for key, value in self._reference().items():
415 self.assertEqual(os.environ.get(key), value)
416
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000417 # Issue 7310
418 def test___repr__(self):
419 """Check that the repr() of os.environ looks like environ({...})."""
420 env = os.environ
421 self.assertTrue(isinstance(env.data, dict))
422 self.assertEqual(repr(env), 'environ({!r})'.format(env.data))
423
Gregory P. Smithb6e8c7e2010-02-27 07:22:22 +0000424 def test_get_exec_path(self):
425 defpath_list = os.defpath.split(os.pathsep)
426 test_path = ['/monty', '/python', '', '/flying/circus']
427 test_env = {'PATH': os.pathsep.join(test_path)}
428
429 saved_environ = os.environ
430 try:
431 os.environ = dict(test_env)
432 # Test that defaulting to os.environ works.
433 self.assertSequenceEqual(test_path, os.get_exec_path())
434 self.assertSequenceEqual(test_path, os.get_exec_path(env=None))
435 finally:
436 os.environ = saved_environ
437
438 # No PATH environment variable
439 self.assertSequenceEqual(defpath_list, os.get_exec_path({}))
440 # Empty PATH environment variable
441 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''}))
442 # Supplied PATH environment variable
443 self.assertSequenceEqual(test_path, os.get_exec_path(test_env))
444
Victor Stinner84ae1182010-05-06 22:05:07 +0000445 @unittest.skipIf(sys.platform == "win32", "POSIX specific test")
446 def test_environb(self):
447 # os.environ -> os.environb
448 value = 'euro\u20ac'
449 try:
Benjamin Peterson180799d2010-05-06 22:25:42 +0000450 value_bytes = value.encode(sys.getfilesystemencoding(),
451 'surrogateescape')
Victor Stinner84ae1182010-05-06 22:05:07 +0000452 except UnicodeEncodeError:
Benjamin Peterson180799d2010-05-06 22:25:42 +0000453 msg = "U+20AC character is not encodable to %s" % (
454 sys.getfilesystemencoding(),)
Benjamin Peterson932d3f42010-05-06 22:26:31 +0000455 self.skipTest(msg)
Victor Stinner84ae1182010-05-06 22:05:07 +0000456 os.environ['unicode'] = value
457 self.assertEquals(os.environ['unicode'], value)
458 self.assertEquals(os.environb[b'unicode'], value_bytes)
459
460 # os.environb -> os.environ
461 value = b'\xff'
462 os.environb[b'bytes'] = value
463 self.assertEquals(os.environb[b'bytes'], value)
464 value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape')
465 self.assertEquals(os.environ['bytes'], value_str)
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000466
Tim Petersc4e09402003-04-25 07:11:48 +0000467class WalkTests(unittest.TestCase):
468 """Tests for os.walk()."""
469
470 def test_traversal(self):
471 import os
472 from os.path import join
473
474 # Build:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000475 # TESTFN/
476 # TEST1/ a file kid and two directory kids
Tim Petersc4e09402003-04-25 07:11:48 +0000477 # tmp1
478 # SUB1/ a file kid and a directory kid
Guido van Rossumd8faa362007-04-27 19:54:29 +0000479 # tmp2
480 # SUB11/ no kids
481 # SUB2/ a file kid and a dirsymlink kid
482 # tmp3
483 # link/ a symlink to TESTFN.2
484 # TEST2/
485 # tmp4 a lone file
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000486 walk_path = join(support.TESTFN, "TEST1")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000487 sub1_path = join(walk_path, "SUB1")
Tim Petersc4e09402003-04-25 07:11:48 +0000488 sub11_path = join(sub1_path, "SUB11")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000489 sub2_path = join(walk_path, "SUB2")
490 tmp1_path = join(walk_path, "tmp1")
Tim Petersc4e09402003-04-25 07:11:48 +0000491 tmp2_path = join(sub1_path, "tmp2")
492 tmp3_path = join(sub2_path, "tmp3")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000493 link_path = join(sub2_path, "link")
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000494 t2_path = join(support.TESTFN, "TEST2")
495 tmp4_path = join(support.TESTFN, "TEST2", "tmp4")
Tim Petersc4e09402003-04-25 07:11:48 +0000496
497 # Create stuff.
498 os.makedirs(sub11_path)
499 os.makedirs(sub2_path)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000500 os.makedirs(t2_path)
501 for path in tmp1_path, tmp2_path, tmp3_path, tmp4_path:
Alex Martelli01c77c62006-08-24 02:58:11 +0000502 f = open(path, "w")
Tim Petersc4e09402003-04-25 07:11:48 +0000503 f.write("I'm " + path + " and proud of it. Blame test_os.\n")
504 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000505 if hasattr(os, "symlink"):
506 os.symlink(os.path.abspath(t2_path), link_path)
507 sub2_tree = (sub2_path, ["link"], ["tmp3"])
508 else:
509 sub2_tree = (sub2_path, [], ["tmp3"])
Tim Petersc4e09402003-04-25 07:11:48 +0000510
511 # Walk top-down.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000512 all = list(os.walk(walk_path))
Tim Petersc4e09402003-04-25 07:11:48 +0000513 self.assertEqual(len(all), 4)
514 # We can't know which order SUB1 and SUB2 will appear in.
515 # Not flipped: TESTFN, SUB1, SUB11, SUB2
516 # flipped: TESTFN, SUB2, SUB1, SUB11
517 flipped = all[0][1][0] != "SUB1"
518 all[0][1].sort()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000519 self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
Tim Petersc4e09402003-04-25 07:11:48 +0000520 self.assertEqual(all[1 + flipped], (sub1_path, ["SUB11"], ["tmp2"]))
521 self.assertEqual(all[2 + flipped], (sub11_path, [], []))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000522 self.assertEqual(all[3 - 2 * flipped], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000523
524 # Prune the search.
525 all = []
Guido van Rossumd8faa362007-04-27 19:54:29 +0000526 for root, dirs, files in os.walk(walk_path):
Tim Petersc4e09402003-04-25 07:11:48 +0000527 all.append((root, dirs, files))
528 # Don't descend into SUB1.
529 if 'SUB1' in dirs:
530 # Note that this also mutates the dirs we appended to all!
531 dirs.remove('SUB1')
532 self.assertEqual(len(all), 2)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000533 self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
534 self.assertEqual(all[1], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000535
536 # Walk bottom-up.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000537 all = list(os.walk(walk_path, topdown=False))
Tim Petersc4e09402003-04-25 07:11:48 +0000538 self.assertEqual(len(all), 4)
539 # We can't know which order SUB1 and SUB2 will appear in.
540 # Not flipped: SUB11, SUB1, SUB2, TESTFN
541 # flipped: SUB2, SUB11, SUB1, TESTFN
542 flipped = all[3][1][0] != "SUB1"
543 all[3][1].sort()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000544 self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
Tim Petersc4e09402003-04-25 07:11:48 +0000545 self.assertEqual(all[flipped], (sub11_path, [], []))
546 self.assertEqual(all[flipped + 1], (sub1_path, ["SUB11"], ["tmp2"]))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000547 self.assertEqual(all[2 - 2 * flipped], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000548
Guido van Rossumd8faa362007-04-27 19:54:29 +0000549 if hasattr(os, "symlink"):
550 # Walk, following symlinks.
551 for root, dirs, files in os.walk(walk_path, followlinks=True):
552 if root == link_path:
553 self.assertEqual(dirs, [])
554 self.assertEqual(files, ["tmp4"])
555 break
556 else:
557 self.fail("Didn't follow symlink with followlinks=True")
558
559 def tearDown(self):
Tim Petersc4e09402003-04-25 07:11:48 +0000560 # Tear everything down. This is a decent use for bottom-up on
561 # Windows, which doesn't have a recursive delete command. The
562 # (not so) subtlety is that rmdir will fail unless the dir's
563 # kids are removed first, so bottom up is essential.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000564 for root, dirs, files in os.walk(support.TESTFN, topdown=False):
Tim Petersc4e09402003-04-25 07:11:48 +0000565 for name in files:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000566 os.remove(os.path.join(root, name))
Tim Petersc4e09402003-04-25 07:11:48 +0000567 for name in dirs:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000568 dirname = os.path.join(root, name)
569 if not os.path.islink(dirname):
570 os.rmdir(dirname)
571 else:
572 os.remove(dirname)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000573 os.rmdir(support.TESTFN)
Tim Petersc4e09402003-04-25 07:11:48 +0000574
Guido van Rossume7ba4952007-06-06 23:52:48 +0000575class MakedirTests(unittest.TestCase):
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000576 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000577 os.mkdir(support.TESTFN)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000578
579 def test_makedir(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000580 base = support.TESTFN
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000581 path = os.path.join(base, 'dir1', 'dir2', 'dir3')
582 os.makedirs(path) # Should work
583 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4')
584 os.makedirs(path)
585
586 # Try paths with a '.' in them
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000587 self.assertRaises(OSError, os.makedirs, os.curdir)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000588 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4', 'dir5', os.curdir)
589 os.makedirs(path)
590 path = os.path.join(base, 'dir1', os.curdir, 'dir2', 'dir3', 'dir4',
591 'dir5', 'dir6')
592 os.makedirs(path)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000593
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000594 def tearDown(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000595 path = os.path.join(support.TESTFN, 'dir1', 'dir2', 'dir3',
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000596 'dir4', 'dir5', 'dir6')
597 # If the tests failed, the bottom-most directory ('../dir6')
598 # may not have been created, so we look for the outermost directory
599 # that exists.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000600 while not os.path.exists(path) and path != support.TESTFN:
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000601 path = os.path.dirname(path)
602
603 os.removedirs(path)
604
Guido van Rossume7ba4952007-06-06 23:52:48 +0000605class DevNullTests(unittest.TestCase):
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000606 def test_devnull(self):
Alex Martelli01c77c62006-08-24 02:58:11 +0000607 f = open(os.devnull, 'w')
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000608 f.write('hello')
609 f.close()
Alex Martelli01c77c62006-08-24 02:58:11 +0000610 f = open(os.devnull, 'r')
Tim Peters4182cfd2004-06-08 20:34:34 +0000611 self.assertEqual(f.read(), '')
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000612 f.close()
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000613
Guido van Rossume7ba4952007-06-06 23:52:48 +0000614class URandomTests(unittest.TestCase):
Martin v. Löwisdc3883f2004-08-29 15:46:35 +0000615 def test_urandom(self):
616 try:
617 self.assertEqual(len(os.urandom(1)), 1)
618 self.assertEqual(len(os.urandom(10)), 10)
619 self.assertEqual(len(os.urandom(100)), 100)
620 self.assertEqual(len(os.urandom(1000)), 1000)
621 except NotImplementedError:
622 pass
623
Guido van Rossume7ba4952007-06-06 23:52:48 +0000624class ExecTests(unittest.TestCase):
Mark Dickinson7cf03892010-04-16 13:45:35 +0000625 @unittest.skipIf(USING_LINUXTHREADS,
626 "avoid triggering a linuxthreads bug: see issue #4970")
Guido van Rossume7ba4952007-06-06 23:52:48 +0000627 def test_execvpe_with_bad_program(self):
Mark Dickinson7cf03892010-04-16 13:45:35 +0000628 self.assertRaises(OSError, os.execvpe, 'no such app-',
629 ['no such app-'], None)
Guido van Rossume7ba4952007-06-06 23:52:48 +0000630
Thomas Heller6790d602007-08-30 17:15:14 +0000631 def test_execvpe_with_bad_arglist(self):
632 self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
633
Thomas Wouters477c8d52006-05-27 19:21:47 +0000634class Win32ErrorTests(unittest.TestCase):
635 def test_rename(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000636 self.assertRaises(WindowsError, os.rename, support.TESTFN, support.TESTFN+".bak")
Thomas Wouters477c8d52006-05-27 19:21:47 +0000637
638 def test_remove(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000639 self.assertRaises(WindowsError, os.remove, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000640
641 def test_chdir(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000642 self.assertRaises(WindowsError, os.chdir, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000643
644 def test_mkdir(self):
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000645 f = open(support.TESTFN, "w")
Benjamin Petersonf91df042009-02-13 02:50:59 +0000646 try:
647 self.assertRaises(WindowsError, os.mkdir, support.TESTFN)
648 finally:
649 f.close()
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000650 os.unlink(support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000651
652 def test_utime(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000653 self.assertRaises(WindowsError, os.utime, support.TESTFN, None)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000654
Thomas Wouters477c8d52006-05-27 19:21:47 +0000655 def test_chmod(self):
Benjamin Petersonf91df042009-02-13 02:50:59 +0000656 self.assertRaises(WindowsError, os.chmod, support.TESTFN, 0)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000657
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000658class TestInvalidFD(unittest.TestCase):
Benjamin Peterson05e782f2009-01-19 15:15:02 +0000659 singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat",
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000660 "fstatvfs", "fsync", "tcgetpgrp", "ttyname"]
661 #singles.append("close")
662 #We omit close because it doesn'r raise an exception on some platforms
663 def get_single(f):
664 def helper(self):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000665 if hasattr(os, f):
666 self.check(getattr(os, f))
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000667 return helper
668 for f in singles:
669 locals()["test_"+f] = get_single(f)
670
Benjamin Peterson7522c742009-01-19 21:00:09 +0000671 def check(self, f, *args):
Benjamin Peterson5c6d7872009-02-06 02:40:07 +0000672 try:
673 f(support.make_bad_fd(), *args)
674 except OSError as e:
675 self.assertEqual(e.errno, errno.EBADF)
676 else:
677 self.fail("%r didn't raise a OSError with a bad file descriptor"
678 % f)
Benjamin Peterson7522c742009-01-19 21:00:09 +0000679
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000680 def test_isatty(self):
681 if hasattr(os, "isatty"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000682 self.assertEqual(os.isatty(support.make_bad_fd()), False)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000683
684 def test_closerange(self):
685 if hasattr(os, "closerange"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000686 fd = support.make_bad_fd()
R. David Murray630cc482009-07-22 15:20:27 +0000687 # Make sure none of the descriptors we are about to close are
688 # currently valid (issue 6542).
689 for i in range(10):
690 try: os.fstat(fd+i)
691 except OSError:
692 pass
693 else:
694 break
695 if i < 2:
696 raise unittest.SkipTest(
697 "Unable to acquire a range of invalid file descriptors")
698 self.assertEqual(os.closerange(fd, fd + i-1), None)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000699
700 def test_dup2(self):
701 if hasattr(os, "dup2"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000702 self.check(os.dup2, 20)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000703
704 def test_fchmod(self):
705 if hasattr(os, "fchmod"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000706 self.check(os.fchmod, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000707
708 def test_fchown(self):
709 if hasattr(os, "fchown"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000710 self.check(os.fchown, -1, -1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000711
712 def test_fpathconf(self):
713 if hasattr(os, "fpathconf"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000714 self.check(os.fpathconf, "PC_NAME_MAX")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000715
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000716 def test_ftruncate(self):
717 if hasattr(os, "ftruncate"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000718 self.check(os.ftruncate, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000719
720 def test_lseek(self):
721 if hasattr(os, "lseek"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000722 self.check(os.lseek, 0, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000723
724 def test_read(self):
725 if hasattr(os, "read"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000726 self.check(os.read, 1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000727
728 def test_tcsetpgrpt(self):
729 if hasattr(os, "tcsetpgrp"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000730 self.check(os.tcsetpgrp, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000731
732 def test_write(self):
733 if hasattr(os, "write"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000734 self.check(os.write, b" ")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000735
Thomas Wouters477c8d52006-05-27 19:21:47 +0000736if sys.platform != 'win32':
737 class Win32ErrorTests(unittest.TestCase):
738 pass
739
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000740 class PosixUidGidTests(unittest.TestCase):
741 if hasattr(os, 'setuid'):
742 def test_setuid(self):
743 if os.getuid() != 0:
744 self.assertRaises(os.error, os.setuid, 0)
745 self.assertRaises(OverflowError, os.setuid, 1<<32)
746
747 if hasattr(os, 'setgid'):
748 def test_setgid(self):
749 if os.getuid() != 0:
750 self.assertRaises(os.error, os.setgid, 0)
751 self.assertRaises(OverflowError, os.setgid, 1<<32)
752
753 if hasattr(os, 'seteuid'):
754 def test_seteuid(self):
755 if os.getuid() != 0:
756 self.assertRaises(os.error, os.seteuid, 0)
757 self.assertRaises(OverflowError, os.seteuid, 1<<32)
758
759 if hasattr(os, 'setegid'):
760 def test_setegid(self):
761 if os.getuid() != 0:
762 self.assertRaises(os.error, os.setegid, 0)
763 self.assertRaises(OverflowError, os.setegid, 1<<32)
764
765 if hasattr(os, 'setreuid'):
766 def test_setreuid(self):
767 if os.getuid() != 0:
768 self.assertRaises(os.error, os.setreuid, 0, 0)
769 self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
770 self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000771
772 def test_setreuid_neg1(self):
773 # Needs to accept -1. We run this in a subprocess to avoid
774 # altering the test runner's process state (issue8045).
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000775 subprocess.check_call([
776 sys.executable, '-c',
777 'import os,sys;os.setreuid(-1,-1);sys.exit(0)'])
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000778
779 if hasattr(os, 'setregid'):
780 def test_setregid(self):
781 if os.getuid() != 0:
782 self.assertRaises(os.error, os.setregid, 0, 0)
783 self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
784 self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000785
786 def test_setregid_neg1(self):
787 # Needs to accept -1. We run this in a subprocess to avoid
788 # altering the test runner's process state (issue8045).
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000789 subprocess.check_call([
790 sys.executable, '-c',
791 'import os,sys;os.setregid(-1,-1);sys.exit(0)'])
Martin v. Löwis011e8422009-05-05 04:43:17 +0000792
Mark Dickinson70613682009-05-05 21:34:59 +0000793 @unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X")
Martin v. Löwis011e8422009-05-05 04:43:17 +0000794 class Pep383Tests(unittest.TestCase):
795 filenames = [b'foo\xf6bar', 'foo\xf6bar'.encode("utf-8")]
796
797 def setUp(self):
798 self.fsencoding = sys.getfilesystemencoding()
799 sys.setfilesystemencoding("utf-8")
800 self.dir = support.TESTFN
Martin v. Löwis43c57782009-05-10 08:15:24 +0000801 self.bdir = self.dir.encode("utf-8", "surrogateescape")
Martin v. Löwis011e8422009-05-05 04:43:17 +0000802 os.mkdir(self.dir)
803 self.unicodefn = []
804 for fn in self.filenames:
805 f = open(os.path.join(self.bdir, fn), "w")
806 f.close()
Martin v. Löwis43c57782009-05-10 08:15:24 +0000807 self.unicodefn.append(fn.decode("utf-8", "surrogateescape"))
Martin v. Löwis011e8422009-05-05 04:43:17 +0000808
809 def tearDown(self):
810 shutil.rmtree(self.dir)
811 sys.setfilesystemencoding(self.fsencoding)
812
813 def test_listdir(self):
814 expected = set(self.unicodefn)
815 found = set(os.listdir(support.TESTFN))
816 self.assertEquals(found, expected)
817
818 def test_open(self):
819 for fn in self.unicodefn:
820 f = open(os.path.join(self.dir, fn))
821 f.close()
822
823 def test_stat(self):
824 for fn in self.unicodefn:
825 os.stat(os.path.join(self.dir, fn))
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000826else:
827 class PosixUidGidTests(unittest.TestCase):
828 pass
Martin v. Löwis011e8422009-05-05 04:43:17 +0000829 class Pep383Tests(unittest.TestCase):
830 pass
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000831
Brian Curtineb24d742010-04-12 17:16:38 +0000832@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
833class Win32KillTests(unittest.TestCase):
834 def _kill(self, sig, *args):
835 # Send a subprocess a signal (or in some cases, just an int to be
836 # the return value)
837 proc = subprocess.Popen(*args)
838 os.kill(proc.pid, sig)
839 self.assertEqual(proc.wait(), sig)
840
841 def test_kill_sigterm(self):
842 # SIGTERM doesn't mean anything special, but make sure it works
843 self._kill(signal.SIGTERM, [sys.executable])
844
845 def test_kill_int(self):
846 # os.kill on Windows can take an int which gets set as the exit code
847 self._kill(100, [sys.executable])
848
849 def _kill_with_event(self, event, name):
850 # Run a script which has console control handling enabled.
851 proc = subprocess.Popen([sys.executable,
852 os.path.join(os.path.dirname(__file__),
853 "win_console_handler.py")],
854 creationflags=subprocess.CREATE_NEW_PROCESS_GROUP)
855 # Let the interpreter startup before we send signals. See #3137.
856 time.sleep(0.5)
857 os.kill(proc.pid, event)
858 # proc.send_signal(event) could also be done here.
859 # Allow time for the signal to be passed and the process to exit.
860 time.sleep(0.5)
861 if not proc.poll():
862 # Forcefully kill the process if we weren't able to signal it.
863 os.kill(proc.pid, signal.SIGINT)
864 self.fail("subprocess did not stop on {}".format(name))
865
866 @unittest.skip("subprocesses aren't inheriting CTRL+C property")
867 def test_CTRL_C_EVENT(self):
868 from ctypes import wintypes
869 import ctypes
870
871 # Make a NULL value by creating a pointer with no argument.
872 NULL = ctypes.POINTER(ctypes.c_int)()
873 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
874 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
875 wintypes.BOOL)
876 SetConsoleCtrlHandler.restype = wintypes.BOOL
877
878 # Calling this with NULL and FALSE causes the calling process to
879 # handle CTRL+C, rather than ignore it. This property is inherited
880 # by subprocesses.
881 SetConsoleCtrlHandler(NULL, 0)
882
883 self._kill_with_event(signal.CTRL_C_EVENT, "CTRL_C_EVENT")
884
885 def test_CTRL_BREAK_EVENT(self):
886 self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT")
887
888
Fred Drake2e2be372001-09-20 21:33:42 +0000889def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000890 support.run_unittest(
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000891 FileTests,
Walter Dörwald21d3a322003-05-01 17:45:56 +0000892 StatAttributeTests,
893 EnvironTests,
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000894 WalkTests,
895 MakedirTests,
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000896 DevNullTests,
Thomas Wouters477c8d52006-05-27 19:21:47 +0000897 URandomTests,
Guido van Rossume7ba4952007-06-06 23:52:48 +0000898 ExecTests,
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000899 Win32ErrorTests,
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000900 TestInvalidFD,
Martin v. Löwis011e8422009-05-05 04:43:17 +0000901 PosixUidGidTests,
Brian Curtineb24d742010-04-12 17:16:38 +0000902 Pep383Tests,
903 Win32KillTests
Walter Dörwald21d3a322003-05-01 17:45:56 +0000904 )
Fred Drake2e2be372001-09-20 21:33:42 +0000905
906if __name__ == "__main__":
907 test_main()