blob: 705bdc7bf36ebe40ead3d5c3654ce62b30ee567a [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
Brian Curtineb24d742010-04-12 17:16:38 +000016
Thomas Wouters0e3f5912006-08-11 14:57:12 +000017# Tests creating TESTFN
18class FileTests(unittest.TestCase):
19 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +000020 if os.path.exists(support.TESTFN):
21 os.unlink(support.TESTFN)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000022 tearDown = setUp
23
24 def test_access(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +000025 f = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000026 os.close(f)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000027 self.assertTrue(os.access(support.TESTFN, os.W_OK))
Thomas Wouters0e3f5912006-08-11 14:57:12 +000028
Christian Heimesfdab48e2008-01-20 09:06:41 +000029 def test_closerange(self):
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000030 first = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR)
31 # We must allocate two consecutive file descriptors, otherwise
32 # it will mess up other file descriptors (perhaps even the three
33 # standard ones).
34 second = os.dup(first)
35 try:
36 retries = 0
37 while second != first + 1:
38 os.close(first)
39 retries += 1
40 if retries > 10:
41 # XXX test skipped
Benjamin Petersonfa0d7032009-06-01 22:42:33 +000042 self.skipTest("couldn't allocate two consecutive fds")
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000043 first, second = second, os.dup(second)
44 finally:
45 os.close(second)
Christian Heimesfdab48e2008-01-20 09:06:41 +000046 # close a fd that is open, and one that isn't
Antoine Pitroub9ee06c2008-08-16 22:03:17 +000047 os.closerange(first, first + 2)
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000048 self.assertRaises(OSError, os.write, first, b"a")
Thomas Wouters0e3f5912006-08-11 14:57:12 +000049
Hirokazu Yamamoto4c19e6e2008-09-08 23:41:21 +000050 def test_rename(self):
51 path = support.TESTFN
52 old = sys.getrefcount(path)
53 self.assertRaises(TypeError, os.rename, path, 0)
54 new = sys.getrefcount(path)
55 self.assertEqual(old, new)
56
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000057 def test_read(self):
58 with open(support.TESTFN, "w+b") as fobj:
59 fobj.write(b"spam")
60 fobj.flush()
61 fd = fobj.fileno()
62 os.lseek(fd, 0, 0)
63 s = os.read(fd, 4)
64 self.assertEqual(type(s), bytes)
65 self.assertEqual(s, b"spam")
66
67 def test_write(self):
68 # os.write() accepts bytes- and buffer-like objects but not strings
69 fd = os.open(support.TESTFN, os.O_CREAT | os.O_WRONLY)
70 self.assertRaises(TypeError, os.write, fd, "beans")
71 os.write(fd, b"bacon\n")
72 os.write(fd, bytearray(b"eggs\n"))
73 os.write(fd, memoryview(b"spam\n"))
74 os.close(fd)
75 with open(support.TESTFN, "rb") as fobj:
Antoine Pitroud62269f2008-09-15 23:54:52 +000076 self.assertEqual(fobj.read().splitlines(),
77 [b"bacon", b"eggs", b"spam"])
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +000078
79
Christian Heimesdd15f6c2008-03-16 00:07:10 +000080class TemporaryFileTests(unittest.TestCase):
81 def setUp(self):
82 self.files = []
Benjamin Petersonee8712c2008-05-20 21:35:26 +000083 os.mkdir(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +000084
85 def tearDown(self):
86 for name in self.files:
87 os.unlink(name)
Benjamin Petersonee8712c2008-05-20 21:35:26 +000088 os.rmdir(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +000089
90 def check_tempfile(self, name):
91 # make sure it doesn't already exist:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +000092 self.assertFalse(os.path.exists(name),
Christian Heimesdd15f6c2008-03-16 00:07:10 +000093 "file already exists for temporary file")
94 # make sure we can create the file
95 open(name, "w")
96 self.files.append(name)
97
98 def test_tempnam(self):
99 if not hasattr(os, "tempnam"):
100 return
101 warnings.filterwarnings("ignore", "tempnam", RuntimeWarning,
102 r"test_os$")
103 self.check_tempfile(os.tempnam())
104
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000105 name = os.tempnam(support.TESTFN)
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000106 self.check_tempfile(name)
107
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000108 name = os.tempnam(support.TESTFN, "pfx")
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000109 self.assertTrue(os.path.basename(name)[:3] == "pfx")
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000110 self.check_tempfile(name)
111
112 def test_tmpfile(self):
113 if not hasattr(os, "tmpfile"):
114 return
115 # As with test_tmpnam() below, the Windows implementation of tmpfile()
116 # attempts to create a file in the root directory of the current drive.
117 # On Vista and Server 2008, this test will always fail for normal users
118 # as writing to the root directory requires elevated privileges. With
119 # XP and below, the semantics of tmpfile() are the same, but the user
120 # running the test is more likely to have administrative privileges on
121 # their account already. If that's the case, then os.tmpfile() should
122 # work. In order to make this test as useful as possible, rather than
123 # trying to detect Windows versions or whether or not the user has the
124 # right permissions, just try and create a file in the root directory
125 # and see if it raises a 'Permission denied' OSError. If it does, then
126 # test that a subsequent call to os.tmpfile() raises the same error. If
127 # it doesn't, assume we're on XP or below and the user running the test
128 # has administrative privileges, and proceed with the test as normal.
129 if sys.platform == 'win32':
130 name = '\\python_test_os_test_tmpfile.txt'
131 if os.path.exists(name):
132 os.remove(name)
133 try:
134 fp = open(name, 'w')
135 except IOError as first:
136 # open() failed, assert tmpfile() fails in the same way.
137 # Although open() raises an IOError and os.tmpfile() raises an
138 # OSError(), 'args' will be (13, 'Permission denied') in both
139 # cases.
140 try:
141 fp = os.tmpfile()
142 except OSError as second:
143 self.assertEqual(first.args, second.args)
144 else:
145 self.fail("expected os.tmpfile() to raise OSError")
146 return
147 else:
148 # open() worked, therefore, tmpfile() should work. Close our
149 # dummy file and proceed with the test as normal.
150 fp.close()
151 os.remove(name)
152
153 fp = os.tmpfile()
154 fp.write("foobar")
155 fp.seek(0,0)
156 s = fp.read()
157 fp.close()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000158 self.assertTrue(s == "foobar")
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000159
160 def test_tmpnam(self):
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000161 if not hasattr(os, "tmpnam"):
162 return
163 warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning,
164 r"test_os$")
165 name = os.tmpnam()
166 if sys.platform in ("win32",):
167 # The Windows tmpnam() seems useless. From the MS docs:
168 #
169 # The character string that tmpnam creates consists of
170 # the path prefix, defined by the entry P_tmpdir in the
171 # file STDIO.H, followed by a sequence consisting of the
172 # digit characters '0' through '9'; the numerical value
173 # of this string is in the range 1 - 65,535. Changing the
174 # definitions of L_tmpnam or P_tmpdir in STDIO.H does not
175 # change the operation of tmpnam.
176 #
177 # The really bizarre part is that, at least under MSVC6,
178 # P_tmpdir is "\\". That is, the path returned refers to
179 # the root of the current drive. That's a terrible place to
180 # put temp files, and, depending on privileges, the user
181 # may not even be able to open a file in the root directory.
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000182 self.assertFalse(os.path.exists(name),
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000183 "file already exists for temporary file")
184 else:
185 self.check_tempfile(name)
186
Amaury Forgeot d'Arce2e36ba2008-08-01 00:14:22 +0000187 def fdopen_helper(self, *args):
188 fd = os.open(support.TESTFN, os.O_RDONLY)
189 fp2 = os.fdopen(fd, *args)
190 fp2.close()
191
192 def test_fdopen(self):
193 self.fdopen_helper()
194 self.fdopen_helper('r')
195 self.fdopen_helper('r', 100)
196
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000197# Test attributes on return values from os.*stat* family.
198class StatAttributeTests(unittest.TestCase):
199 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000200 os.mkdir(support.TESTFN)
201 self.fname = os.path.join(support.TESTFN, "f1")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000202 f = open(self.fname, 'wb')
Guido van Rossum26d95c32007-08-27 23:18:54 +0000203 f.write(b"ABC")
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000204 f.close()
Tim Peterse0c446b2001-10-18 21:57:37 +0000205
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000206 def tearDown(self):
207 os.unlink(self.fname)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000208 os.rmdir(support.TESTFN)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000209
210 def test_stat_attributes(self):
211 if not hasattr(os, "stat"):
212 return
213
214 import stat
215 result = os.stat(self.fname)
216
217 # Make sure direct access works
218 self.assertEquals(result[stat.ST_SIZE], 3)
219 self.assertEquals(result.st_size, 3)
220
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000221 # Make sure all the attributes are there
222 members = dir(result)
223 for name in dir(stat):
224 if name[:3] == 'ST_':
225 attr = name.lower()
Martin v. Löwis4d394df2005-01-23 09:19:22 +0000226 if name.endswith("TIME"):
227 def trunc(x): return int(x)
228 else:
229 def trunc(x): return x
230 self.assertEquals(trunc(getattr(result, attr)),
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000231 result[getattr(stat, name)])
Benjamin Peterson577473f2010-01-19 00:09:57 +0000232 self.assertIn(attr, members)
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000233
234 try:
235 result[200]
236 self.fail("No exception thrown")
237 except IndexError:
238 pass
239
240 # Make sure that assignment fails
241 try:
242 result.st_mode = 1
243 self.fail("No exception thrown")
Collin Winter42dae6a2007-03-28 21:44:53 +0000244 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000245 pass
246
247 try:
248 result.st_rdev = 1
249 self.fail("No exception thrown")
Guido van Rossum1fff8782001-10-18 21:19:31 +0000250 except (AttributeError, TypeError):
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000251 pass
252
253 try:
254 result.parrot = 1
255 self.fail("No exception thrown")
256 except AttributeError:
257 pass
258
259 # Use the stat_result constructor with a too-short tuple.
260 try:
261 result2 = os.stat_result((10,))
262 self.fail("No exception thrown")
263 except TypeError:
264 pass
265
266 # Use the constructr with a too-long tuple.
267 try:
268 result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
269 except TypeError:
270 pass
271
Tim Peterse0c446b2001-10-18 21:57:37 +0000272
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000273 def test_statvfs_attributes(self):
274 if not hasattr(os, "statvfs"):
275 return
276
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000277 try:
278 result = os.statvfs(self.fname)
Guido van Rossumb940e112007-01-10 16:19:56 +0000279 except OSError as e:
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000280 # On AtheOS, glibc always returns ENOSYS
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000281 if e.errno == errno.ENOSYS:
282 return
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000283
284 # Make sure direct access works
Brett Cannoncfaf10c2008-05-16 00:45:35 +0000285 self.assertEquals(result.f_bfree, result[3])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000286
Brett Cannoncfaf10c2008-05-16 00:45:35 +0000287 # Make sure all the attributes are there.
288 members = ('bsize', 'frsize', 'blocks', 'bfree', 'bavail', 'files',
289 'ffree', 'favail', 'flag', 'namemax')
290 for value, member in enumerate(members):
291 self.assertEquals(getattr(result, 'f_' + member), result[value])
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000292
293 # Make sure that assignment really fails
294 try:
295 result.f_bfree = 1
296 self.fail("No exception thrown")
Collin Winter42dae6a2007-03-28 21:44:53 +0000297 except AttributeError:
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000298 pass
299
300 try:
301 result.parrot = 1
302 self.fail("No exception thrown")
303 except AttributeError:
304 pass
305
306 # Use the constructor with a too-short tuple.
307 try:
308 result2 = os.statvfs_result((10,))
309 self.fail("No exception thrown")
310 except TypeError:
311 pass
312
313 # Use the constructr with a too-long tuple.
314 try:
315 result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
316 except TypeError:
317 pass
Fred Drake38c2ef02001-07-17 20:52:51 +0000318
Thomas Wouters89f507f2006-12-13 04:49:30 +0000319 def test_utime_dir(self):
320 delta = 1000000
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000321 st = os.stat(support.TESTFN)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000322 # round to int, because some systems may support sub-second
323 # time stamps in stat, but not in utime.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000324 os.utime(support.TESTFN, (st.st_atime, int(st.st_mtime-delta)))
325 st2 = os.stat(support.TESTFN)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000326 self.assertEquals(st2.st_mtime, int(st.st_mtime-delta))
327
328 # Restrict test to Win32, since there is no guarantee other
329 # systems support centiseconds
330 if sys.platform == 'win32':
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000331 def get_file_system(path):
Hirokazu Yamamoto5ef6d182008-08-20 04:17:24 +0000332 root = os.path.splitdrive(os.path.abspath(path))[0] + '\\'
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000333 import ctypes
Hirokazu Yamamotoca765d52008-08-20 16:18:19 +0000334 kernel32 = ctypes.windll.kernel32
Hirokazu Yamamoto5ef6d182008-08-20 04:17:24 +0000335 buf = ctypes.create_unicode_buffer("", 100)
Hirokazu Yamamotoca765d52008-08-20 16:18:19 +0000336 if kernel32.GetVolumeInformationW(root, None, 0, None, None, None, buf, len(buf)):
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000337 return buf.value
338
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000339 if get_file_system(support.TESTFN) == "NTFS":
Thomas Wouters47b49bf2007-08-30 22:15:33 +0000340 def test_1565150(self):
341 t1 = 1159195039.25
342 os.utime(self.fname, (t1, t1))
343 self.assertEquals(os.stat(self.fname).st_mtime, t1)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000344
Guido van Rossumd8faa362007-04-27 19:54:29 +0000345 def test_1686475(self):
346 # Verify that an open file can be stat'ed
347 try:
348 os.stat(r"c:\pagefile.sys")
349 except WindowsError as e:
Benjamin Petersonc4fe6f32008-08-19 18:57:56 +0000350 if e.errno == 2: # file does not exist; cannot run test
Guido van Rossumd8faa362007-04-27 19:54:29 +0000351 return
352 self.fail("Could not stat pagefile.sys")
353
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000354from test import mapping_tests
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000355
Walter Dörwald0a6d0ff2004-05-31 16:29:04 +0000356class EnvironTests(mapping_tests.BasicTestMappingProtocol):
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000357 """check that os.environ object conform to mapping protocol"""
Walter Dörwald118f9312004-06-02 18:42:25 +0000358 type2test = None
Christian Heimes90333392007-11-01 19:08:42 +0000359
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000360 def setUp(self):
361 self.__save = dict(os.environ)
Christian Heimes90333392007-11-01 19:08:42 +0000362 for key, value in self._reference().items():
363 os.environ[key] = value
364
Raymond Hettinger2c2d3222003-03-09 07:05:43 +0000365 def tearDown(self):
366 os.environ.clear()
367 os.environ.update(self.__save)
368
Christian Heimes90333392007-11-01 19:08:42 +0000369 def _reference(self):
370 return {"KEY1":"VALUE1", "KEY2":"VALUE2", "KEY3":"VALUE3"}
371
372 def _empty_mapping(self):
373 os.environ.clear()
374 return os.environ
375
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000376 # Bug 1110478
Martin v. Löwis5510f652005-02-17 21:23:20 +0000377 def test_update2(self):
Christian Heimes90333392007-11-01 19:08:42 +0000378 os.environ.clear()
Martin v. Löwis1d11de62005-01-29 13:29:23 +0000379 if os.path.exists("/bin/sh"):
380 os.environ.update(HELLO="World")
381 value = os.popen("/bin/sh -c 'echo $HELLO'").read().strip()
382 self.assertEquals(value, "World")
383
Christian Heimes1a13d592007-11-08 14:16:55 +0000384 def test_os_popen_iter(self):
385 if os.path.exists("/bin/sh"):
386 popen = os.popen("/bin/sh -c 'echo \"line1\nline2\nline3\"'")
387 it = iter(popen)
388 self.assertEquals(next(it), "line1\n")
389 self.assertEquals(next(it), "line2\n")
390 self.assertEquals(next(it), "line3\n")
391 self.assertRaises(StopIteration, next, it)
392
Guido van Rossum67aca9e2007-06-13 21:51:27 +0000393 # Verify environ keys and values from the OS are of the
394 # correct str type.
395 def test_keyvalue_types(self):
396 for key, val in os.environ.items():
397 self.assertEquals(type(key), str)
398 self.assertEquals(type(val), str)
399
Christian Heimes90333392007-11-01 19:08:42 +0000400 def test_items(self):
401 for key, value in self._reference().items():
402 self.assertEqual(os.environ.get(key), value)
403
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000404 # Issue 7310
405 def test___repr__(self):
406 """Check that the repr() of os.environ looks like environ({...})."""
407 env = os.environ
408 self.assertTrue(isinstance(env.data, dict))
409 self.assertEqual(repr(env), 'environ({!r})'.format(env.data))
410
Gregory P. Smithb6e8c7e2010-02-27 07:22:22 +0000411 def test_get_exec_path(self):
412 defpath_list = os.defpath.split(os.pathsep)
413 test_path = ['/monty', '/python', '', '/flying/circus']
414 test_env = {'PATH': os.pathsep.join(test_path)}
415
416 saved_environ = os.environ
417 try:
418 os.environ = dict(test_env)
419 # Test that defaulting to os.environ works.
420 self.assertSequenceEqual(test_path, os.get_exec_path())
421 self.assertSequenceEqual(test_path, os.get_exec_path(env=None))
422 finally:
423 os.environ = saved_environ
424
425 # No PATH environment variable
426 self.assertSequenceEqual(defpath_list, os.get_exec_path({}))
427 # Empty PATH environment variable
428 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''}))
429 # Supplied PATH environment variable
430 self.assertSequenceEqual(test_path, os.get_exec_path(test_env))
431
Ezio Melotti19e4acf2010-02-22 15:59:01 +0000432
Tim Petersc4e09402003-04-25 07:11:48 +0000433class WalkTests(unittest.TestCase):
434 """Tests for os.walk()."""
435
436 def test_traversal(self):
437 import os
438 from os.path import join
439
440 # Build:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000441 # TESTFN/
442 # TEST1/ a file kid and two directory kids
Tim Petersc4e09402003-04-25 07:11:48 +0000443 # tmp1
444 # SUB1/ a file kid and a directory kid
Guido van Rossumd8faa362007-04-27 19:54:29 +0000445 # tmp2
446 # SUB11/ no kids
447 # SUB2/ a file kid and a dirsymlink kid
448 # tmp3
449 # link/ a symlink to TESTFN.2
450 # TEST2/
451 # tmp4 a lone file
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000452 walk_path = join(support.TESTFN, "TEST1")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000453 sub1_path = join(walk_path, "SUB1")
Tim Petersc4e09402003-04-25 07:11:48 +0000454 sub11_path = join(sub1_path, "SUB11")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000455 sub2_path = join(walk_path, "SUB2")
456 tmp1_path = join(walk_path, "tmp1")
Tim Petersc4e09402003-04-25 07:11:48 +0000457 tmp2_path = join(sub1_path, "tmp2")
458 tmp3_path = join(sub2_path, "tmp3")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000459 link_path = join(sub2_path, "link")
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000460 t2_path = join(support.TESTFN, "TEST2")
461 tmp4_path = join(support.TESTFN, "TEST2", "tmp4")
Tim Petersc4e09402003-04-25 07:11:48 +0000462
463 # Create stuff.
464 os.makedirs(sub11_path)
465 os.makedirs(sub2_path)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000466 os.makedirs(t2_path)
467 for path in tmp1_path, tmp2_path, tmp3_path, tmp4_path:
Alex Martelli01c77c62006-08-24 02:58:11 +0000468 f = open(path, "w")
Tim Petersc4e09402003-04-25 07:11:48 +0000469 f.write("I'm " + path + " and proud of it. Blame test_os.\n")
470 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000471 if hasattr(os, "symlink"):
472 os.symlink(os.path.abspath(t2_path), link_path)
473 sub2_tree = (sub2_path, ["link"], ["tmp3"])
474 else:
475 sub2_tree = (sub2_path, [], ["tmp3"])
Tim Petersc4e09402003-04-25 07:11:48 +0000476
477 # Walk top-down.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000478 all = list(os.walk(walk_path))
Tim Petersc4e09402003-04-25 07:11:48 +0000479 self.assertEqual(len(all), 4)
480 # We can't know which order SUB1 and SUB2 will appear in.
481 # Not flipped: TESTFN, SUB1, SUB11, SUB2
482 # flipped: TESTFN, SUB2, SUB1, SUB11
483 flipped = all[0][1][0] != "SUB1"
484 all[0][1].sort()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000485 self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
Tim Petersc4e09402003-04-25 07:11:48 +0000486 self.assertEqual(all[1 + flipped], (sub1_path, ["SUB11"], ["tmp2"]))
487 self.assertEqual(all[2 + flipped], (sub11_path, [], []))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000488 self.assertEqual(all[3 - 2 * flipped], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000489
490 # Prune the search.
491 all = []
Guido van Rossumd8faa362007-04-27 19:54:29 +0000492 for root, dirs, files in os.walk(walk_path):
Tim Petersc4e09402003-04-25 07:11:48 +0000493 all.append((root, dirs, files))
494 # Don't descend into SUB1.
495 if 'SUB1' in dirs:
496 # Note that this also mutates the dirs we appended to all!
497 dirs.remove('SUB1')
498 self.assertEqual(len(all), 2)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000499 self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"]))
500 self.assertEqual(all[1], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000501
502 # Walk bottom-up.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000503 all = list(os.walk(walk_path, topdown=False))
Tim Petersc4e09402003-04-25 07:11:48 +0000504 self.assertEqual(len(all), 4)
505 # We can't know which order SUB1 and SUB2 will appear in.
506 # Not flipped: SUB11, SUB1, SUB2, TESTFN
507 # flipped: SUB2, SUB11, SUB1, TESTFN
508 flipped = all[3][1][0] != "SUB1"
509 all[3][1].sort()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000510 self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"]))
Tim Petersc4e09402003-04-25 07:11:48 +0000511 self.assertEqual(all[flipped], (sub11_path, [], []))
512 self.assertEqual(all[flipped + 1], (sub1_path, ["SUB11"], ["tmp2"]))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000513 self.assertEqual(all[2 - 2 * flipped], sub2_tree)
Tim Petersc4e09402003-04-25 07:11:48 +0000514
Guido van Rossumd8faa362007-04-27 19:54:29 +0000515 if hasattr(os, "symlink"):
516 # Walk, following symlinks.
517 for root, dirs, files in os.walk(walk_path, followlinks=True):
518 if root == link_path:
519 self.assertEqual(dirs, [])
520 self.assertEqual(files, ["tmp4"])
521 break
522 else:
523 self.fail("Didn't follow symlink with followlinks=True")
524
525 def tearDown(self):
Tim Petersc4e09402003-04-25 07:11:48 +0000526 # Tear everything down. This is a decent use for bottom-up on
527 # Windows, which doesn't have a recursive delete command. The
528 # (not so) subtlety is that rmdir will fail unless the dir's
529 # kids are removed first, so bottom up is essential.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000530 for root, dirs, files in os.walk(support.TESTFN, topdown=False):
Tim Petersc4e09402003-04-25 07:11:48 +0000531 for name in files:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000532 os.remove(os.path.join(root, name))
Tim Petersc4e09402003-04-25 07:11:48 +0000533 for name in dirs:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000534 dirname = os.path.join(root, name)
535 if not os.path.islink(dirname):
536 os.rmdir(dirname)
537 else:
538 os.remove(dirname)
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000539 os.rmdir(support.TESTFN)
Tim Petersc4e09402003-04-25 07:11:48 +0000540
Guido van Rossume7ba4952007-06-06 23:52:48 +0000541class MakedirTests(unittest.TestCase):
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000542 def setUp(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000543 os.mkdir(support.TESTFN)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000544
545 def test_makedir(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000546 base = support.TESTFN
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000547 path = os.path.join(base, 'dir1', 'dir2', 'dir3')
548 os.makedirs(path) # Should work
549 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4')
550 os.makedirs(path)
551
552 # Try paths with a '.' in them
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000553 self.assertRaises(OSError, os.makedirs, os.curdir)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000554 path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4', 'dir5', os.curdir)
555 os.makedirs(path)
556 path = os.path.join(base, 'dir1', os.curdir, 'dir2', 'dir3', 'dir4',
557 'dir5', 'dir6')
558 os.makedirs(path)
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000559
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000560 def tearDown(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000561 path = os.path.join(support.TESTFN, 'dir1', 'dir2', 'dir3',
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000562 'dir4', 'dir5', 'dir6')
563 # If the tests failed, the bottom-most directory ('../dir6')
564 # may not have been created, so we look for the outermost directory
565 # that exists.
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000566 while not os.path.exists(path) and path != support.TESTFN:
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000567 path = os.path.dirname(path)
568
569 os.removedirs(path)
570
Guido van Rossume7ba4952007-06-06 23:52:48 +0000571class DevNullTests(unittest.TestCase):
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000572 def test_devnull(self):
Alex Martelli01c77c62006-08-24 02:58:11 +0000573 f = open(os.devnull, 'w')
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000574 f.write('hello')
575 f.close()
Alex Martelli01c77c62006-08-24 02:58:11 +0000576 f = open(os.devnull, 'r')
Tim Peters4182cfd2004-06-08 20:34:34 +0000577 self.assertEqual(f.read(), '')
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000578 f.close()
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000579
Guido van Rossume7ba4952007-06-06 23:52:48 +0000580class URandomTests(unittest.TestCase):
Martin v. Löwisdc3883f2004-08-29 15:46:35 +0000581 def test_urandom(self):
582 try:
583 self.assertEqual(len(os.urandom(1)), 1)
584 self.assertEqual(len(os.urandom(10)), 10)
585 self.assertEqual(len(os.urandom(100)), 100)
586 self.assertEqual(len(os.urandom(1000)), 1000)
587 except NotImplementedError:
588 pass
589
Guido van Rossume7ba4952007-06-06 23:52:48 +0000590class ExecTests(unittest.TestCase):
591 def test_execvpe_with_bad_program(self):
Thomas Hellerbd315c52007-08-30 17:57:21 +0000592 self.assertRaises(OSError, os.execvpe, 'no such app-', ['no such app-'], None)
Guido van Rossume7ba4952007-06-06 23:52:48 +0000593
Thomas Heller6790d602007-08-30 17:15:14 +0000594 def test_execvpe_with_bad_arglist(self):
595 self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
596
Antoine Pitrou1119a642010-01-17 12:16:23 +0000597class ArgTests(unittest.TestCase):
598 def test_bytearray(self):
599 # Issue #7561: posix module didn't release bytearray exports properly.
600 b = bytearray(os.sep.encode('ascii'))
601 self.assertRaises(OSError, os.mkdir, b)
602 # Check object is still resizable.
603 b[:] = b''
604
Thomas Wouters477c8d52006-05-27 19:21:47 +0000605class Win32ErrorTests(unittest.TestCase):
606 def test_rename(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000607 self.assertRaises(WindowsError, os.rename, support.TESTFN, support.TESTFN+".bak")
Thomas Wouters477c8d52006-05-27 19:21:47 +0000608
609 def test_remove(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000610 self.assertRaises(WindowsError, os.remove, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000611
612 def test_chdir(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000613 self.assertRaises(WindowsError, os.chdir, support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000614
615 def test_mkdir(self):
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000616 f = open(support.TESTFN, "w")
Benjamin Petersonf91df042009-02-13 02:50:59 +0000617 try:
618 self.assertRaises(WindowsError, os.mkdir, support.TESTFN)
619 finally:
620 f.close()
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000621 os.unlink(support.TESTFN)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000622
623 def test_utime(self):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000624 self.assertRaises(WindowsError, os.utime, support.TESTFN, None)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000625
Thomas Wouters477c8d52006-05-27 19:21:47 +0000626 def test_chmod(self):
Benjamin Petersonf91df042009-02-13 02:50:59 +0000627 self.assertRaises(WindowsError, os.chmod, support.TESTFN, 0)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000628
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000629class TestInvalidFD(unittest.TestCase):
Benjamin Peterson05e782f2009-01-19 15:15:02 +0000630 singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat",
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000631 "fstatvfs", "fsync", "tcgetpgrp", "ttyname"]
632 #singles.append("close")
633 #We omit close because it doesn'r raise an exception on some platforms
634 def get_single(f):
635 def helper(self):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000636 if hasattr(os, f):
637 self.check(getattr(os, f))
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000638 return helper
639 for f in singles:
640 locals()["test_"+f] = get_single(f)
641
Benjamin Peterson7522c742009-01-19 21:00:09 +0000642 def check(self, f, *args):
Benjamin Peterson5c6d7872009-02-06 02:40:07 +0000643 try:
644 f(support.make_bad_fd(), *args)
645 except OSError as e:
646 self.assertEqual(e.errno, errno.EBADF)
647 else:
648 self.fail("%r didn't raise a OSError with a bad file descriptor"
649 % f)
Benjamin Peterson7522c742009-01-19 21:00:09 +0000650
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000651 def test_isatty(self):
652 if hasattr(os, "isatty"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000653 self.assertEqual(os.isatty(support.make_bad_fd()), False)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000654
655 def test_closerange(self):
656 if hasattr(os, "closerange"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000657 fd = support.make_bad_fd()
R. David Murray630cc482009-07-22 15:20:27 +0000658 # Make sure none of the descriptors we are about to close are
659 # currently valid (issue 6542).
660 for i in range(10):
661 try: os.fstat(fd+i)
662 except OSError:
663 pass
664 else:
665 break
666 if i < 2:
667 raise unittest.SkipTest(
668 "Unable to acquire a range of invalid file descriptors")
669 self.assertEqual(os.closerange(fd, fd + i-1), None)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000670
671 def test_dup2(self):
672 if hasattr(os, "dup2"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000673 self.check(os.dup2, 20)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000674
675 def test_fchmod(self):
676 if hasattr(os, "fchmod"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000677 self.check(os.fchmod, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000678
679 def test_fchown(self):
680 if hasattr(os, "fchown"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000681 self.check(os.fchown, -1, -1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000682
683 def test_fpathconf(self):
684 if hasattr(os, "fpathconf"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000685 self.check(os.fpathconf, "PC_NAME_MAX")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000686
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000687 def test_ftruncate(self):
688 if hasattr(os, "ftruncate"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000689 self.check(os.ftruncate, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000690
691 def test_lseek(self):
692 if hasattr(os, "lseek"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000693 self.check(os.lseek, 0, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000694
695 def test_read(self):
696 if hasattr(os, "read"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000697 self.check(os.read, 1)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000698
699 def test_tcsetpgrpt(self):
700 if hasattr(os, "tcsetpgrp"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000701 self.check(os.tcsetpgrp, 0)
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000702
703 def test_write(self):
704 if hasattr(os, "write"):
Benjamin Peterson7522c742009-01-19 21:00:09 +0000705 self.check(os.write, b" ")
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000706
Thomas Wouters477c8d52006-05-27 19:21:47 +0000707if sys.platform != 'win32':
708 class Win32ErrorTests(unittest.TestCase):
709 pass
710
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000711 class PosixUidGidTests(unittest.TestCase):
712 if hasattr(os, 'setuid'):
713 def test_setuid(self):
714 if os.getuid() != 0:
715 self.assertRaises(os.error, os.setuid, 0)
716 self.assertRaises(OverflowError, os.setuid, 1<<32)
717
718 if hasattr(os, 'setgid'):
719 def test_setgid(self):
720 if os.getuid() != 0:
721 self.assertRaises(os.error, os.setgid, 0)
722 self.assertRaises(OverflowError, os.setgid, 1<<32)
723
724 if hasattr(os, 'seteuid'):
725 def test_seteuid(self):
726 if os.getuid() != 0:
727 self.assertRaises(os.error, os.seteuid, 0)
728 self.assertRaises(OverflowError, os.seteuid, 1<<32)
729
730 if hasattr(os, 'setegid'):
731 def test_setegid(self):
732 if os.getuid() != 0:
733 self.assertRaises(os.error, os.setegid, 0)
734 self.assertRaises(OverflowError, os.setegid, 1<<32)
735
736 if hasattr(os, 'setreuid'):
737 def test_setreuid(self):
738 if os.getuid() != 0:
739 self.assertRaises(os.error, os.setreuid, 0, 0)
740 self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
741 self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000742
743 def test_setreuid_neg1(self):
744 # Needs to accept -1. We run this in a subprocess to avoid
745 # altering the test runner's process state (issue8045).
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000746 subprocess.check_call([
747 sys.executable, '-c',
748 'import os,sys;os.setreuid(-1,-1);sys.exit(0)'])
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000749
750 if hasattr(os, 'setregid'):
751 def test_setregid(self):
752 if os.getuid() != 0:
753 self.assertRaises(os.error, os.setregid, 0, 0)
754 self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
755 self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000756
757 def test_setregid_neg1(self):
758 # Needs to accept -1. We run this in a subprocess to avoid
759 # altering the test runner's process state (issue8045).
Benjamin Petersonebe87ba2010-03-06 20:34:24 +0000760 subprocess.check_call([
761 sys.executable, '-c',
762 'import os,sys;os.setregid(-1,-1);sys.exit(0)'])
Martin v. Löwis011e8422009-05-05 04:43:17 +0000763
Mark Dickinson70613682009-05-05 21:34:59 +0000764 @unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X")
Martin v. Löwis011e8422009-05-05 04:43:17 +0000765 class Pep383Tests(unittest.TestCase):
766 filenames = [b'foo\xf6bar', 'foo\xf6bar'.encode("utf-8")]
767
768 def setUp(self):
769 self.fsencoding = sys.getfilesystemencoding()
770 sys.setfilesystemencoding("utf-8")
771 self.dir = support.TESTFN
Martin v. Löwis43c57782009-05-10 08:15:24 +0000772 self.bdir = self.dir.encode("utf-8", "surrogateescape")
Martin v. Löwis011e8422009-05-05 04:43:17 +0000773 os.mkdir(self.dir)
774 self.unicodefn = []
775 for fn in self.filenames:
776 f = open(os.path.join(self.bdir, fn), "w")
777 f.close()
Martin v. Löwis43c57782009-05-10 08:15:24 +0000778 self.unicodefn.append(fn.decode("utf-8", "surrogateescape"))
Martin v. Löwis011e8422009-05-05 04:43:17 +0000779
780 def tearDown(self):
781 shutil.rmtree(self.dir)
782 sys.setfilesystemencoding(self.fsencoding)
783
784 def test_listdir(self):
785 expected = set(self.unicodefn)
786 found = set(os.listdir(support.TESTFN))
787 self.assertEquals(found, expected)
788
789 def test_open(self):
790 for fn in self.unicodefn:
791 f = open(os.path.join(self.dir, fn))
792 f.close()
793
794 def test_stat(self):
795 for fn in self.unicodefn:
796 os.stat(os.path.join(self.dir, fn))
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000797else:
798 class PosixUidGidTests(unittest.TestCase):
799 pass
Martin v. Löwis011e8422009-05-05 04:43:17 +0000800 class Pep383Tests(unittest.TestCase):
801 pass
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000802
Brian Curtineb24d742010-04-12 17:16:38 +0000803@unittest.skipUnless(sys.platform == "win32", "Win32 specific tests")
804class Win32KillTests(unittest.TestCase):
805 def _kill(self, sig, *args):
806 # Send a subprocess a signal (or in some cases, just an int to be
807 # the return value)
808 proc = subprocess.Popen(*args)
809 os.kill(proc.pid, sig)
810 self.assertEqual(proc.wait(), sig)
811
812 def test_kill_sigterm(self):
813 # SIGTERM doesn't mean anything special, but make sure it works
814 self._kill(signal.SIGTERM, [sys.executable])
815
816 def test_kill_int(self):
817 # os.kill on Windows can take an int which gets set as the exit code
818 self._kill(100, [sys.executable])
819
820 def _kill_with_event(self, event, name):
821 # Run a script which has console control handling enabled.
822 proc = subprocess.Popen([sys.executable,
823 os.path.join(os.path.dirname(__file__),
824 "win_console_handler.py")],
825 creationflags=subprocess.CREATE_NEW_PROCESS_GROUP)
826 # Let the interpreter startup before we send signals. See #3137.
827 time.sleep(0.5)
828 os.kill(proc.pid, event)
829 # proc.send_signal(event) could also be done here.
830 # Allow time for the signal to be passed and the process to exit.
831 time.sleep(0.5)
832 if not proc.poll():
833 # Forcefully kill the process if we weren't able to signal it.
834 os.kill(proc.pid, signal.SIGINT)
835 self.fail("subprocess did not stop on {}".format(name))
836
837 @unittest.skip("subprocesses aren't inheriting CTRL+C property")
838 def test_CTRL_C_EVENT(self):
839 from ctypes import wintypes
840 import ctypes
841
842 # Make a NULL value by creating a pointer with no argument.
843 NULL = ctypes.POINTER(ctypes.c_int)()
844 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
845 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
846 wintypes.BOOL)
847 SetConsoleCtrlHandler.restype = wintypes.BOOL
848
849 # Calling this with NULL and FALSE causes the calling process to
850 # handle CTRL+C, rather than ignore it. This property is inherited
851 # by subprocesses.
852 SetConsoleCtrlHandler(NULL, 0)
853
854 self._kill_with_event(signal.CTRL_C_EVENT, "CTRL_C_EVENT")
855
856 def test_CTRL_BREAK_EVENT(self):
857 self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT")
858
859
Fred Drake2e2be372001-09-20 21:33:42 +0000860def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000861 support.run_unittest(
Antoine Pitrou1119a642010-01-17 12:16:23 +0000862 ArgTests,
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000863 FileTests,
Walter Dörwald21d3a322003-05-01 17:45:56 +0000864 StatAttributeTests,
865 EnvironTests,
Andrew M. Kuchlingb386f6a2003-12-23 16:36:11 +0000866 WalkTests,
867 MakedirTests,
Martin v. Löwisbdec50f2004-06-08 08:29:33 +0000868 DevNullTests,
Thomas Wouters477c8d52006-05-27 19:21:47 +0000869 URandomTests,
Guido van Rossume7ba4952007-06-06 23:52:48 +0000870 ExecTests,
Benjamin Petersone1cdfd72009-01-18 21:02:37 +0000871 Win32ErrorTests,
Benjamin Petersonef3e4c22009-04-11 19:48:14 +0000872 TestInvalidFD,
Martin v. Löwis011e8422009-05-05 04:43:17 +0000873 PosixUidGidTests,
Brian Curtineb24d742010-04-12 17:16:38 +0000874 Pep383Tests,
875 Win32KillTests
Walter Dörwald21d3a322003-05-01 17:45:56 +0000876 )
Fred Drake2e2be372001-09-20 21:33:42 +0000877
878if __name__ == "__main__":
879 test_main()