Fred Drake | 38c2ef0 | 2001-07-17 20:52:51 +0000 | [diff] [blame] | 1 | # 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örwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 3 | # portable than they had been thought to be. |
Fred Drake | 38c2ef0 | 2001-07-17 20:52:51 +0000 | [diff] [blame] | 4 | |
| 5 | import os |
Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 6 | import errno |
Fred Drake | 38c2ef0 | 2001-07-17 20:52:51 +0000 | [diff] [blame] | 7 | import unittest |
Jeremy Hylton | a7fc21b | 2001-08-20 20:10:01 +0000 | [diff] [blame] | 8 | import warnings |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9 | import sys |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 10 | import signal |
| 11 | import subprocess |
| 12 | import time |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 13 | import shutil |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 14 | from test import support |
Victor Stinner | c2d095f | 2010-05-17 00:14:53 +0000 | [diff] [blame] | 15 | import contextlib |
Fred Drake | 38c2ef0 | 2001-07-17 20:52:51 +0000 | [diff] [blame] | 16 | |
Mark Dickinson | 7cf0389 | 2010-04-16 13:45:35 +0000 | [diff] [blame] | 17 | # Detect whether we're on a Linux system that uses the (now outdated |
| 18 | # and unmaintained) linuxthreads threading library. There's an issue |
| 19 | # when combining linuxthreads with a failed execv call: see |
| 20 | # http://bugs.python.org/issue4970. |
Mark Dickinson | 89589c9 | 2010-04-16 13:51:27 +0000 | [diff] [blame] | 21 | if (hasattr(os, "confstr_names") and |
| 22 | "CS_GNU_LIBPTHREAD_VERSION" in os.confstr_names): |
Mark Dickinson | 7cf0389 | 2010-04-16 13:45:35 +0000 | [diff] [blame] | 23 | libpthread = os.confstr("CS_GNU_LIBPTHREAD_VERSION") |
| 24 | USING_LINUXTHREADS= libpthread.startswith("linuxthreads") |
| 25 | else: |
| 26 | USING_LINUXTHREADS= False |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 27 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 28 | # Tests creating TESTFN |
| 29 | class FileTests(unittest.TestCase): |
| 30 | def setUp(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 31 | if os.path.exists(support.TESTFN): |
| 32 | os.unlink(support.TESTFN) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 33 | tearDown = setUp |
| 34 | |
| 35 | def test_access(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 36 | f = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 37 | os.close(f) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 38 | self.assertTrue(os.access(support.TESTFN, os.W_OK)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 39 | |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 40 | def test_closerange(self): |
Antoine Pitrou | b9ee06c | 2008-08-16 22:03:17 +0000 | [diff] [blame] | 41 | first = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR) |
| 42 | # We must allocate two consecutive file descriptors, otherwise |
| 43 | # it will mess up other file descriptors (perhaps even the three |
| 44 | # standard ones). |
| 45 | second = os.dup(first) |
| 46 | try: |
| 47 | retries = 0 |
| 48 | while second != first + 1: |
| 49 | os.close(first) |
| 50 | retries += 1 |
| 51 | if retries > 10: |
| 52 | # XXX test skipped |
Benjamin Peterson | fa0d703 | 2009-06-01 22:42:33 +0000 | [diff] [blame] | 53 | self.skipTest("couldn't allocate two consecutive fds") |
Antoine Pitrou | b9ee06c | 2008-08-16 22:03:17 +0000 | [diff] [blame] | 54 | first, second = second, os.dup(second) |
| 55 | finally: |
| 56 | os.close(second) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 57 | # close a fd that is open, and one that isn't |
Antoine Pitrou | b9ee06c | 2008-08-16 22:03:17 +0000 | [diff] [blame] | 58 | os.closerange(first, first + 2) |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 59 | self.assertRaises(OSError, os.write, first, b"a") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 60 | |
Hirokazu Yamamoto | 4c19e6e | 2008-09-08 23:41:21 +0000 | [diff] [blame] | 61 | def test_rename(self): |
| 62 | path = support.TESTFN |
| 63 | old = sys.getrefcount(path) |
| 64 | self.assertRaises(TypeError, os.rename, path, 0) |
| 65 | new = sys.getrefcount(path) |
| 66 | self.assertEqual(old, new) |
| 67 | |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 68 | def test_read(self): |
| 69 | with open(support.TESTFN, "w+b") as fobj: |
| 70 | fobj.write(b"spam") |
| 71 | fobj.flush() |
| 72 | fd = fobj.fileno() |
| 73 | os.lseek(fd, 0, 0) |
| 74 | s = os.read(fd, 4) |
| 75 | self.assertEqual(type(s), bytes) |
| 76 | self.assertEqual(s, b"spam") |
| 77 | |
| 78 | def test_write(self): |
| 79 | # os.write() accepts bytes- and buffer-like objects but not strings |
| 80 | fd = os.open(support.TESTFN, os.O_CREAT | os.O_WRONLY) |
| 81 | self.assertRaises(TypeError, os.write, fd, "beans") |
| 82 | os.write(fd, b"bacon\n") |
| 83 | os.write(fd, bytearray(b"eggs\n")) |
| 84 | os.write(fd, memoryview(b"spam\n")) |
| 85 | os.close(fd) |
| 86 | with open(support.TESTFN, "rb") as fobj: |
Antoine Pitrou | d62269f | 2008-09-15 23:54:52 +0000 | [diff] [blame] | 87 | self.assertEqual(fobj.read().splitlines(), |
| 88 | [b"bacon", b"eggs", b"spam"]) |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 89 | |
| 90 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 91 | class TemporaryFileTests(unittest.TestCase): |
| 92 | def setUp(self): |
| 93 | self.files = [] |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 94 | os.mkdir(support.TESTFN) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 95 | |
| 96 | def tearDown(self): |
| 97 | for name in self.files: |
| 98 | os.unlink(name) |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 99 | os.rmdir(support.TESTFN) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 100 | |
| 101 | def check_tempfile(self, name): |
| 102 | # make sure it doesn't already exist: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 103 | self.assertFalse(os.path.exists(name), |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 104 | "file already exists for temporary file") |
| 105 | # make sure we can create the file |
| 106 | open(name, "w") |
| 107 | self.files.append(name) |
| 108 | |
| 109 | def test_tempnam(self): |
| 110 | if not hasattr(os, "tempnam"): |
| 111 | return |
| 112 | warnings.filterwarnings("ignore", "tempnam", RuntimeWarning, |
| 113 | r"test_os$") |
| 114 | self.check_tempfile(os.tempnam()) |
| 115 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 116 | name = os.tempnam(support.TESTFN) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 117 | self.check_tempfile(name) |
| 118 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 119 | name = os.tempnam(support.TESTFN, "pfx") |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 120 | self.assertTrue(os.path.basename(name)[:3] == "pfx") |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 121 | self.check_tempfile(name) |
| 122 | |
| 123 | def test_tmpfile(self): |
| 124 | if not hasattr(os, "tmpfile"): |
| 125 | return |
| 126 | # As with test_tmpnam() below, the Windows implementation of tmpfile() |
| 127 | # attempts to create a file in the root directory of the current drive. |
| 128 | # On Vista and Server 2008, this test will always fail for normal users |
| 129 | # as writing to the root directory requires elevated privileges. With |
| 130 | # XP and below, the semantics of tmpfile() are the same, but the user |
| 131 | # running the test is more likely to have administrative privileges on |
| 132 | # their account already. If that's the case, then os.tmpfile() should |
| 133 | # work. In order to make this test as useful as possible, rather than |
| 134 | # trying to detect Windows versions or whether or not the user has the |
| 135 | # right permissions, just try and create a file in the root directory |
| 136 | # and see if it raises a 'Permission denied' OSError. If it does, then |
| 137 | # test that a subsequent call to os.tmpfile() raises the same error. If |
| 138 | # it doesn't, assume we're on XP or below and the user running the test |
| 139 | # has administrative privileges, and proceed with the test as normal. |
| 140 | if sys.platform == 'win32': |
| 141 | name = '\\python_test_os_test_tmpfile.txt' |
| 142 | if os.path.exists(name): |
| 143 | os.remove(name) |
| 144 | try: |
| 145 | fp = open(name, 'w') |
| 146 | except IOError as first: |
| 147 | # open() failed, assert tmpfile() fails in the same way. |
| 148 | # Although open() raises an IOError and os.tmpfile() raises an |
| 149 | # OSError(), 'args' will be (13, 'Permission denied') in both |
| 150 | # cases. |
| 151 | try: |
| 152 | fp = os.tmpfile() |
| 153 | except OSError as second: |
| 154 | self.assertEqual(first.args, second.args) |
| 155 | else: |
| 156 | self.fail("expected os.tmpfile() to raise OSError") |
| 157 | return |
| 158 | else: |
| 159 | # open() worked, therefore, tmpfile() should work. Close our |
| 160 | # dummy file and proceed with the test as normal. |
| 161 | fp.close() |
| 162 | os.remove(name) |
| 163 | |
| 164 | fp = os.tmpfile() |
| 165 | fp.write("foobar") |
| 166 | fp.seek(0,0) |
| 167 | s = fp.read() |
| 168 | fp.close() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 169 | self.assertTrue(s == "foobar") |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 170 | |
| 171 | def test_tmpnam(self): |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 172 | if not hasattr(os, "tmpnam"): |
| 173 | return |
| 174 | warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning, |
| 175 | r"test_os$") |
| 176 | name = os.tmpnam() |
| 177 | if sys.platform in ("win32",): |
| 178 | # The Windows tmpnam() seems useless. From the MS docs: |
| 179 | # |
| 180 | # The character string that tmpnam creates consists of |
| 181 | # the path prefix, defined by the entry P_tmpdir in the |
| 182 | # file STDIO.H, followed by a sequence consisting of the |
| 183 | # digit characters '0' through '9'; the numerical value |
| 184 | # of this string is in the range 1 - 65,535. Changing the |
| 185 | # definitions of L_tmpnam or P_tmpdir in STDIO.H does not |
| 186 | # change the operation of tmpnam. |
| 187 | # |
| 188 | # The really bizarre part is that, at least under MSVC6, |
| 189 | # P_tmpdir is "\\". That is, the path returned refers to |
| 190 | # the root of the current drive. That's a terrible place to |
| 191 | # put temp files, and, depending on privileges, the user |
| 192 | # may not even be able to open a file in the root directory. |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 193 | self.assertFalse(os.path.exists(name), |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 194 | "file already exists for temporary file") |
| 195 | else: |
| 196 | self.check_tempfile(name) |
| 197 | |
Amaury Forgeot d'Arc | e2e36ba | 2008-08-01 00:14:22 +0000 | [diff] [blame] | 198 | def fdopen_helper(self, *args): |
| 199 | fd = os.open(support.TESTFN, os.O_RDONLY) |
| 200 | fp2 = os.fdopen(fd, *args) |
| 201 | fp2.close() |
| 202 | |
| 203 | def test_fdopen(self): |
| 204 | self.fdopen_helper() |
| 205 | self.fdopen_helper('r') |
| 206 | self.fdopen_helper('r', 100) |
| 207 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 208 | # Test attributes on return values from os.*stat* family. |
| 209 | class StatAttributeTests(unittest.TestCase): |
| 210 | def setUp(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 211 | os.mkdir(support.TESTFN) |
| 212 | self.fname = os.path.join(support.TESTFN, "f1") |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 213 | f = open(self.fname, 'wb') |
Guido van Rossum | 26d95c3 | 2007-08-27 23:18:54 +0000 | [diff] [blame] | 214 | f.write(b"ABC") |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 215 | f.close() |
Tim Peters | e0c446b | 2001-10-18 21:57:37 +0000 | [diff] [blame] | 216 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 217 | def tearDown(self): |
| 218 | os.unlink(self.fname) |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 219 | os.rmdir(support.TESTFN) |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 220 | |
| 221 | def test_stat_attributes(self): |
| 222 | if not hasattr(os, "stat"): |
| 223 | return |
| 224 | |
| 225 | import stat |
| 226 | result = os.stat(self.fname) |
| 227 | |
| 228 | # Make sure direct access works |
| 229 | self.assertEquals(result[stat.ST_SIZE], 3) |
| 230 | self.assertEquals(result.st_size, 3) |
| 231 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 232 | # Make sure all the attributes are there |
| 233 | members = dir(result) |
| 234 | for name in dir(stat): |
| 235 | if name[:3] == 'ST_': |
| 236 | attr = name.lower() |
Martin v. Löwis | 4d394df | 2005-01-23 09:19:22 +0000 | [diff] [blame] | 237 | if name.endswith("TIME"): |
| 238 | def trunc(x): return int(x) |
| 239 | else: |
| 240 | def trunc(x): return x |
| 241 | self.assertEquals(trunc(getattr(result, attr)), |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 242 | result[getattr(stat, name)]) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 243 | self.assertIn(attr, members) |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 244 | |
| 245 | try: |
| 246 | result[200] |
| 247 | self.fail("No exception thrown") |
| 248 | except IndexError: |
| 249 | pass |
| 250 | |
| 251 | # Make sure that assignment fails |
| 252 | try: |
| 253 | result.st_mode = 1 |
| 254 | self.fail("No exception thrown") |
Collin Winter | 42dae6a | 2007-03-28 21:44:53 +0000 | [diff] [blame] | 255 | except AttributeError: |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 256 | pass |
| 257 | |
| 258 | try: |
| 259 | result.st_rdev = 1 |
| 260 | self.fail("No exception thrown") |
Guido van Rossum | 1fff878 | 2001-10-18 21:19:31 +0000 | [diff] [blame] | 261 | except (AttributeError, TypeError): |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 262 | pass |
| 263 | |
| 264 | try: |
| 265 | result.parrot = 1 |
| 266 | self.fail("No exception thrown") |
| 267 | except AttributeError: |
| 268 | pass |
| 269 | |
| 270 | # Use the stat_result constructor with a too-short tuple. |
| 271 | try: |
| 272 | result2 = os.stat_result((10,)) |
| 273 | self.fail("No exception thrown") |
| 274 | except TypeError: |
| 275 | pass |
| 276 | |
| 277 | # Use the constructr with a too-long tuple. |
| 278 | try: |
| 279 | result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) |
| 280 | except TypeError: |
| 281 | pass |
| 282 | |
Tim Peters | e0c446b | 2001-10-18 21:57:37 +0000 | [diff] [blame] | 283 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 284 | def test_statvfs_attributes(self): |
| 285 | if not hasattr(os, "statvfs"): |
| 286 | return |
| 287 | |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 288 | try: |
| 289 | result = os.statvfs(self.fname) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 290 | except OSError as e: |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 291 | # On AtheOS, glibc always returns ENOSYS |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 292 | if e.errno == errno.ENOSYS: |
| 293 | return |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 294 | |
| 295 | # Make sure direct access works |
Brett Cannon | cfaf10c | 2008-05-16 00:45:35 +0000 | [diff] [blame] | 296 | self.assertEquals(result.f_bfree, result[3]) |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 297 | |
Brett Cannon | cfaf10c | 2008-05-16 00:45:35 +0000 | [diff] [blame] | 298 | # Make sure all the attributes are there. |
| 299 | members = ('bsize', 'frsize', 'blocks', 'bfree', 'bavail', 'files', |
| 300 | 'ffree', 'favail', 'flag', 'namemax') |
| 301 | for value, member in enumerate(members): |
| 302 | self.assertEquals(getattr(result, 'f_' + member), result[value]) |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 303 | |
| 304 | # Make sure that assignment really fails |
| 305 | try: |
| 306 | result.f_bfree = 1 |
| 307 | self.fail("No exception thrown") |
Collin Winter | 42dae6a | 2007-03-28 21:44:53 +0000 | [diff] [blame] | 308 | except AttributeError: |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 309 | pass |
| 310 | |
| 311 | try: |
| 312 | result.parrot = 1 |
| 313 | self.fail("No exception thrown") |
| 314 | except AttributeError: |
| 315 | pass |
| 316 | |
| 317 | # Use the constructor with a too-short tuple. |
| 318 | try: |
| 319 | result2 = os.statvfs_result((10,)) |
| 320 | self.fail("No exception thrown") |
| 321 | except TypeError: |
| 322 | pass |
| 323 | |
| 324 | # Use the constructr with a too-long tuple. |
| 325 | try: |
| 326 | result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) |
| 327 | except TypeError: |
| 328 | pass |
Fred Drake | 38c2ef0 | 2001-07-17 20:52:51 +0000 | [diff] [blame] | 329 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 330 | def test_utime_dir(self): |
| 331 | delta = 1000000 |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 332 | st = os.stat(support.TESTFN) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 333 | # round to int, because some systems may support sub-second |
| 334 | # time stamps in stat, but not in utime. |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 335 | os.utime(support.TESTFN, (st.st_atime, int(st.st_mtime-delta))) |
| 336 | st2 = os.stat(support.TESTFN) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 337 | self.assertEquals(st2.st_mtime, int(st.st_mtime-delta)) |
| 338 | |
| 339 | # Restrict test to Win32, since there is no guarantee other |
| 340 | # systems support centiseconds |
| 341 | if sys.platform == 'win32': |
Thomas Wouters | 47b49bf | 2007-08-30 22:15:33 +0000 | [diff] [blame] | 342 | def get_file_system(path): |
Hirokazu Yamamoto | 5ef6d18 | 2008-08-20 04:17:24 +0000 | [diff] [blame] | 343 | root = os.path.splitdrive(os.path.abspath(path))[0] + '\\' |
Thomas Wouters | 47b49bf | 2007-08-30 22:15:33 +0000 | [diff] [blame] | 344 | import ctypes |
Hirokazu Yamamoto | ca765d5 | 2008-08-20 16:18:19 +0000 | [diff] [blame] | 345 | kernel32 = ctypes.windll.kernel32 |
Hirokazu Yamamoto | 5ef6d18 | 2008-08-20 04:17:24 +0000 | [diff] [blame] | 346 | buf = ctypes.create_unicode_buffer("", 100) |
Hirokazu Yamamoto | ca765d5 | 2008-08-20 16:18:19 +0000 | [diff] [blame] | 347 | if kernel32.GetVolumeInformationW(root, None, 0, None, None, None, buf, len(buf)): |
Thomas Wouters | 47b49bf | 2007-08-30 22:15:33 +0000 | [diff] [blame] | 348 | return buf.value |
| 349 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 350 | if get_file_system(support.TESTFN) == "NTFS": |
Thomas Wouters | 47b49bf | 2007-08-30 22:15:33 +0000 | [diff] [blame] | 351 | def test_1565150(self): |
| 352 | t1 = 1159195039.25 |
| 353 | os.utime(self.fname, (t1, t1)) |
| 354 | self.assertEquals(os.stat(self.fname).st_mtime, t1) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 355 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 356 | def test_1686475(self): |
| 357 | # Verify that an open file can be stat'ed |
| 358 | try: |
| 359 | os.stat(r"c:\pagefile.sys") |
| 360 | except WindowsError as e: |
Benjamin Peterson | c4fe6f3 | 2008-08-19 18:57:56 +0000 | [diff] [blame] | 361 | if e.errno == 2: # file does not exist; cannot run test |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 362 | return |
| 363 | self.fail("Could not stat pagefile.sys") |
| 364 | |
Walter Dörwald | 0a6d0ff | 2004-05-31 16:29:04 +0000 | [diff] [blame] | 365 | from test import mapping_tests |
Raymond Hettinger | 2c2d322 | 2003-03-09 07:05:43 +0000 | [diff] [blame] | 366 | |
Walter Dörwald | 0a6d0ff | 2004-05-31 16:29:04 +0000 | [diff] [blame] | 367 | class EnvironTests(mapping_tests.BasicTestMappingProtocol): |
Raymond Hettinger | 2c2d322 | 2003-03-09 07:05:43 +0000 | [diff] [blame] | 368 | """check that os.environ object conform to mapping protocol""" |
Walter Dörwald | 118f931 | 2004-06-02 18:42:25 +0000 | [diff] [blame] | 369 | type2test = None |
Christian Heimes | 9033339 | 2007-11-01 19:08:42 +0000 | [diff] [blame] | 370 | |
Raymond Hettinger | 2c2d322 | 2003-03-09 07:05:43 +0000 | [diff] [blame] | 371 | def setUp(self): |
| 372 | self.__save = dict(os.environ) |
Victor Stinner | 208d28c | 2010-05-07 00:54:14 +0000 | [diff] [blame] | 373 | if os.name not in ('os2', 'nt'): |
| 374 | self.__saveb = dict(os.environb) |
Christian Heimes | 9033339 | 2007-11-01 19:08:42 +0000 | [diff] [blame] | 375 | for key, value in self._reference().items(): |
| 376 | os.environ[key] = value |
| 377 | |
Raymond Hettinger | 2c2d322 | 2003-03-09 07:05:43 +0000 | [diff] [blame] | 378 | def tearDown(self): |
| 379 | os.environ.clear() |
| 380 | os.environ.update(self.__save) |
Victor Stinner | 208d28c | 2010-05-07 00:54:14 +0000 | [diff] [blame] | 381 | if os.name not in ('os2', 'nt'): |
| 382 | os.environb.clear() |
| 383 | os.environb.update(self.__saveb) |
Raymond Hettinger | 2c2d322 | 2003-03-09 07:05:43 +0000 | [diff] [blame] | 384 | |
Christian Heimes | 9033339 | 2007-11-01 19:08:42 +0000 | [diff] [blame] | 385 | def _reference(self): |
| 386 | return {"KEY1":"VALUE1", "KEY2":"VALUE2", "KEY3":"VALUE3"} |
| 387 | |
| 388 | def _empty_mapping(self): |
| 389 | os.environ.clear() |
| 390 | return os.environ |
| 391 | |
Martin v. Löwis | 1d11de6 | 2005-01-29 13:29:23 +0000 | [diff] [blame] | 392 | # Bug 1110478 |
Martin v. Löwis | 5510f65 | 2005-02-17 21:23:20 +0000 | [diff] [blame] | 393 | def test_update2(self): |
Christian Heimes | 9033339 | 2007-11-01 19:08:42 +0000 | [diff] [blame] | 394 | os.environ.clear() |
Martin v. Löwis | 1d11de6 | 2005-01-29 13:29:23 +0000 | [diff] [blame] | 395 | if os.path.exists("/bin/sh"): |
| 396 | os.environ.update(HELLO="World") |
| 397 | value = os.popen("/bin/sh -c 'echo $HELLO'").read().strip() |
| 398 | self.assertEquals(value, "World") |
| 399 | |
Christian Heimes | 1a13d59 | 2007-11-08 14:16:55 +0000 | [diff] [blame] | 400 | def test_os_popen_iter(self): |
| 401 | if os.path.exists("/bin/sh"): |
| 402 | popen = os.popen("/bin/sh -c 'echo \"line1\nline2\nline3\"'") |
| 403 | it = iter(popen) |
| 404 | self.assertEquals(next(it), "line1\n") |
| 405 | self.assertEquals(next(it), "line2\n") |
| 406 | self.assertEquals(next(it), "line3\n") |
| 407 | self.assertRaises(StopIteration, next, it) |
| 408 | |
Guido van Rossum | 67aca9e | 2007-06-13 21:51:27 +0000 | [diff] [blame] | 409 | # Verify environ keys and values from the OS are of the |
| 410 | # correct str type. |
| 411 | def test_keyvalue_types(self): |
| 412 | for key, val in os.environ.items(): |
| 413 | self.assertEquals(type(key), str) |
| 414 | self.assertEquals(type(val), str) |
| 415 | |
Christian Heimes | 9033339 | 2007-11-01 19:08:42 +0000 | [diff] [blame] | 416 | def test_items(self): |
| 417 | for key, value in self._reference().items(): |
| 418 | self.assertEqual(os.environ.get(key), value) |
| 419 | |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 420 | # Issue 7310 |
| 421 | def test___repr__(self): |
| 422 | """Check that the repr() of os.environ looks like environ({...}).""" |
| 423 | env = os.environ |
| 424 | self.assertTrue(isinstance(env.data, dict)) |
| 425 | self.assertEqual(repr(env), 'environ({!r})'.format(env.data)) |
| 426 | |
Gregory P. Smith | b6e8c7e | 2010-02-27 07:22:22 +0000 | [diff] [blame] | 427 | def test_get_exec_path(self): |
| 428 | defpath_list = os.defpath.split(os.pathsep) |
| 429 | test_path = ['/monty', '/python', '', '/flying/circus'] |
| 430 | test_env = {'PATH': os.pathsep.join(test_path)} |
| 431 | |
| 432 | saved_environ = os.environ |
| 433 | try: |
| 434 | os.environ = dict(test_env) |
| 435 | # Test that defaulting to os.environ works. |
| 436 | self.assertSequenceEqual(test_path, os.get_exec_path()) |
| 437 | self.assertSequenceEqual(test_path, os.get_exec_path(env=None)) |
| 438 | finally: |
| 439 | os.environ = saved_environ |
| 440 | |
| 441 | # No PATH environment variable |
| 442 | self.assertSequenceEqual(defpath_list, os.get_exec_path({})) |
| 443 | # Empty PATH environment variable |
| 444 | self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''})) |
| 445 | # Supplied PATH environment variable |
| 446 | self.assertSequenceEqual(test_path, os.get_exec_path(test_env)) |
| 447 | |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 448 | @unittest.skipIf(sys.platform == "win32", "POSIX specific test") |
| 449 | def test_environb(self): |
| 450 | # os.environ -> os.environb |
| 451 | value = 'euro\u20ac' |
| 452 | try: |
Benjamin Peterson | 180799d | 2010-05-06 22:25:42 +0000 | [diff] [blame] | 453 | value_bytes = value.encode(sys.getfilesystemencoding(), |
| 454 | 'surrogateescape') |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 455 | except UnicodeEncodeError: |
Benjamin Peterson | 180799d | 2010-05-06 22:25:42 +0000 | [diff] [blame] | 456 | msg = "U+20AC character is not encodable to %s" % ( |
| 457 | sys.getfilesystemencoding(),) |
Benjamin Peterson | 932d3f4 | 2010-05-06 22:26:31 +0000 | [diff] [blame] | 458 | self.skipTest(msg) |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 459 | os.environ['unicode'] = value |
| 460 | self.assertEquals(os.environ['unicode'], value) |
| 461 | self.assertEquals(os.environb[b'unicode'], value_bytes) |
| 462 | |
| 463 | # os.environb -> os.environ |
| 464 | value = b'\xff' |
| 465 | os.environb[b'bytes'] = value |
| 466 | self.assertEquals(os.environb[b'bytes'], value) |
| 467 | value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape') |
| 468 | self.assertEquals(os.environ['bytes'], value_str) |
Ezio Melotti | 19e4acf | 2010-02-22 15:59:01 +0000 | [diff] [blame] | 469 | |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 470 | class WalkTests(unittest.TestCase): |
| 471 | """Tests for os.walk().""" |
| 472 | |
| 473 | def test_traversal(self): |
| 474 | import os |
| 475 | from os.path import join |
| 476 | |
| 477 | # Build: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 478 | # TESTFN/ |
| 479 | # TEST1/ a file kid and two directory kids |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 480 | # tmp1 |
| 481 | # SUB1/ a file kid and a directory kid |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 482 | # tmp2 |
| 483 | # SUB11/ no kids |
| 484 | # SUB2/ a file kid and a dirsymlink kid |
| 485 | # tmp3 |
| 486 | # link/ a symlink to TESTFN.2 |
| 487 | # TEST2/ |
| 488 | # tmp4 a lone file |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 489 | walk_path = join(support.TESTFN, "TEST1") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 490 | sub1_path = join(walk_path, "SUB1") |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 491 | sub11_path = join(sub1_path, "SUB11") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 492 | sub2_path = join(walk_path, "SUB2") |
| 493 | tmp1_path = join(walk_path, "tmp1") |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 494 | tmp2_path = join(sub1_path, "tmp2") |
| 495 | tmp3_path = join(sub2_path, "tmp3") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 496 | link_path = join(sub2_path, "link") |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 497 | t2_path = join(support.TESTFN, "TEST2") |
| 498 | tmp4_path = join(support.TESTFN, "TEST2", "tmp4") |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 499 | |
| 500 | # Create stuff. |
| 501 | os.makedirs(sub11_path) |
| 502 | os.makedirs(sub2_path) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 503 | os.makedirs(t2_path) |
| 504 | for path in tmp1_path, tmp2_path, tmp3_path, tmp4_path: |
Alex Martelli | 01c77c6 | 2006-08-24 02:58:11 +0000 | [diff] [blame] | 505 | f = open(path, "w") |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 506 | f.write("I'm " + path + " and proud of it. Blame test_os.\n") |
| 507 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 508 | if hasattr(os, "symlink"): |
| 509 | os.symlink(os.path.abspath(t2_path), link_path) |
| 510 | sub2_tree = (sub2_path, ["link"], ["tmp3"]) |
| 511 | else: |
| 512 | sub2_tree = (sub2_path, [], ["tmp3"]) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 513 | |
| 514 | # Walk top-down. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 515 | all = list(os.walk(walk_path)) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 516 | self.assertEqual(len(all), 4) |
| 517 | # We can't know which order SUB1 and SUB2 will appear in. |
| 518 | # Not flipped: TESTFN, SUB1, SUB11, SUB2 |
| 519 | # flipped: TESTFN, SUB2, SUB1, SUB11 |
| 520 | flipped = all[0][1][0] != "SUB1" |
| 521 | all[0][1].sort() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 522 | self.assertEqual(all[0], (walk_path, ["SUB1", "SUB2"], ["tmp1"])) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 523 | self.assertEqual(all[1 + flipped], (sub1_path, ["SUB11"], ["tmp2"])) |
| 524 | self.assertEqual(all[2 + flipped], (sub11_path, [], [])) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 525 | self.assertEqual(all[3 - 2 * flipped], sub2_tree) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 526 | |
| 527 | # Prune the search. |
| 528 | all = [] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 529 | for root, dirs, files in os.walk(walk_path): |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 530 | all.append((root, dirs, files)) |
| 531 | # Don't descend into SUB1. |
| 532 | if 'SUB1' in dirs: |
| 533 | # Note that this also mutates the dirs we appended to all! |
| 534 | dirs.remove('SUB1') |
| 535 | self.assertEqual(len(all), 2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 536 | self.assertEqual(all[0], (walk_path, ["SUB2"], ["tmp1"])) |
| 537 | self.assertEqual(all[1], sub2_tree) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 538 | |
| 539 | # Walk bottom-up. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 540 | all = list(os.walk(walk_path, topdown=False)) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 541 | self.assertEqual(len(all), 4) |
| 542 | # We can't know which order SUB1 and SUB2 will appear in. |
| 543 | # Not flipped: SUB11, SUB1, SUB2, TESTFN |
| 544 | # flipped: SUB2, SUB11, SUB1, TESTFN |
| 545 | flipped = all[3][1][0] != "SUB1" |
| 546 | all[3][1].sort() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 547 | self.assertEqual(all[3], (walk_path, ["SUB1", "SUB2"], ["tmp1"])) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 548 | self.assertEqual(all[flipped], (sub11_path, [], [])) |
| 549 | self.assertEqual(all[flipped + 1], (sub1_path, ["SUB11"], ["tmp2"])) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 550 | self.assertEqual(all[2 - 2 * flipped], sub2_tree) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 551 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 552 | if hasattr(os, "symlink"): |
| 553 | # Walk, following symlinks. |
| 554 | for root, dirs, files in os.walk(walk_path, followlinks=True): |
| 555 | if root == link_path: |
| 556 | self.assertEqual(dirs, []) |
| 557 | self.assertEqual(files, ["tmp4"]) |
| 558 | break |
| 559 | else: |
| 560 | self.fail("Didn't follow symlink with followlinks=True") |
| 561 | |
| 562 | def tearDown(self): |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 563 | # Tear everything down. This is a decent use for bottom-up on |
| 564 | # Windows, which doesn't have a recursive delete command. The |
| 565 | # (not so) subtlety is that rmdir will fail unless the dir's |
| 566 | # kids are removed first, so bottom up is essential. |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 567 | for root, dirs, files in os.walk(support.TESTFN, topdown=False): |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 568 | for name in files: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 569 | os.remove(os.path.join(root, name)) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 570 | for name in dirs: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 571 | dirname = os.path.join(root, name) |
| 572 | if not os.path.islink(dirname): |
| 573 | os.rmdir(dirname) |
| 574 | else: |
| 575 | os.remove(dirname) |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 576 | os.rmdir(support.TESTFN) |
Tim Peters | c4e0940 | 2003-04-25 07:11:48 +0000 | [diff] [blame] | 577 | |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 578 | class MakedirTests(unittest.TestCase): |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 579 | def setUp(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 580 | os.mkdir(support.TESTFN) |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 581 | |
| 582 | def test_makedir(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 583 | base = support.TESTFN |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 584 | path = os.path.join(base, 'dir1', 'dir2', 'dir3') |
| 585 | os.makedirs(path) # Should work |
| 586 | path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4') |
| 587 | os.makedirs(path) |
| 588 | |
| 589 | # Try paths with a '.' in them |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 590 | self.assertRaises(OSError, os.makedirs, os.curdir) |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 591 | path = os.path.join(base, 'dir1', 'dir2', 'dir3', 'dir4', 'dir5', os.curdir) |
| 592 | os.makedirs(path) |
| 593 | path = os.path.join(base, 'dir1', os.curdir, 'dir2', 'dir3', 'dir4', |
| 594 | 'dir5', 'dir6') |
| 595 | os.makedirs(path) |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 596 | |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 597 | def tearDown(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 598 | path = os.path.join(support.TESTFN, 'dir1', 'dir2', 'dir3', |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 599 | 'dir4', 'dir5', 'dir6') |
| 600 | # If the tests failed, the bottom-most directory ('../dir6') |
| 601 | # may not have been created, so we look for the outermost directory |
| 602 | # that exists. |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 603 | while not os.path.exists(path) and path != support.TESTFN: |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 604 | path = os.path.dirname(path) |
| 605 | |
| 606 | os.removedirs(path) |
| 607 | |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 608 | class DevNullTests(unittest.TestCase): |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 609 | def test_devnull(self): |
Alex Martelli | 01c77c6 | 2006-08-24 02:58:11 +0000 | [diff] [blame] | 610 | f = open(os.devnull, 'w') |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 611 | f.write('hello') |
| 612 | f.close() |
Alex Martelli | 01c77c6 | 2006-08-24 02:58:11 +0000 | [diff] [blame] | 613 | f = open(os.devnull, 'r') |
Tim Peters | 4182cfd | 2004-06-08 20:34:34 +0000 | [diff] [blame] | 614 | self.assertEqual(f.read(), '') |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 615 | f.close() |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 616 | |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 617 | class URandomTests(unittest.TestCase): |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 618 | def test_urandom(self): |
| 619 | try: |
| 620 | self.assertEqual(len(os.urandom(1)), 1) |
| 621 | self.assertEqual(len(os.urandom(10)), 10) |
| 622 | self.assertEqual(len(os.urandom(100)), 100) |
| 623 | self.assertEqual(len(os.urandom(1000)), 1000) |
| 624 | except NotImplementedError: |
| 625 | pass |
| 626 | |
Victor Stinner | c2d095f | 2010-05-17 00:14:53 +0000 | [diff] [blame] | 627 | @contextlib.contextmanager |
| 628 | def _execvpe_mockup(defpath=None): |
| 629 | """ |
| 630 | Stubs out execv and execve functions when used as context manager. |
| 631 | Records exec calls. The mock execv and execve functions always raise an |
| 632 | exception as they would normally never return. |
| 633 | """ |
| 634 | # A list of tuples containing (function name, first arg, args) |
| 635 | # of calls to execv or execve that have been made. |
| 636 | calls = [] |
| 637 | |
| 638 | def mock_execv(name, *args): |
| 639 | calls.append(('execv', name, args)) |
| 640 | raise RuntimeError("execv called") |
| 641 | |
| 642 | def mock_execve(name, *args): |
| 643 | calls.append(('execve', name, args)) |
| 644 | raise OSError(errno.ENOTDIR, "execve called") |
| 645 | |
| 646 | try: |
| 647 | orig_execv = os.execv |
| 648 | orig_execve = os.execve |
| 649 | orig_defpath = os.defpath |
| 650 | os.execv = mock_execv |
| 651 | os.execve = mock_execve |
| 652 | if defpath is not None: |
| 653 | os.defpath = defpath |
| 654 | yield calls |
| 655 | finally: |
| 656 | os.execv = orig_execv |
| 657 | os.execve = orig_execve |
| 658 | os.defpath = orig_defpath |
| 659 | |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 660 | class ExecTests(unittest.TestCase): |
Mark Dickinson | 7cf0389 | 2010-04-16 13:45:35 +0000 | [diff] [blame] | 661 | @unittest.skipIf(USING_LINUXTHREADS, |
| 662 | "avoid triggering a linuxthreads bug: see issue #4970") |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 663 | def test_execvpe_with_bad_program(self): |
Mark Dickinson | 7cf0389 | 2010-04-16 13:45:35 +0000 | [diff] [blame] | 664 | self.assertRaises(OSError, os.execvpe, 'no such app-', |
| 665 | ['no such app-'], None) |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 666 | |
Thomas Heller | 6790d60 | 2007-08-30 17:15:14 +0000 | [diff] [blame] | 667 | def test_execvpe_with_bad_arglist(self): |
| 668 | self.assertRaises(ValueError, os.execvpe, 'notepad', [], None) |
| 669 | |
Gregory P. Smith | 4ae3777 | 2010-05-08 18:05:46 +0000 | [diff] [blame] | 670 | @unittest.skipUnless(hasattr(os, '_execvpe'), |
| 671 | "No internal os._execvpe function to test.") |
| 672 | def test_internal_execvpe(self): |
Victor Stinner | c2d095f | 2010-05-17 00:14:53 +0000 | [diff] [blame] | 673 | program_path = os.sep+'absolutepath' |
| 674 | program = 'executable' |
| 675 | fullpath = os.path.join(program_path, program) |
| 676 | arguments = ['progname', 'arg1', 'arg2'] |
| 677 | env = {'spam': 'beans'} |
| 678 | |
| 679 | with _execvpe_mockup() as calls: |
| 680 | self.assertRaises(RuntimeError, os._execvpe, fullpath, arguments) |
| 681 | self.assertEqual(len(calls), 1) |
| 682 | self.assertEqual(calls[0], ('execv', fullpath, (arguments,))) |
| 683 | |
| 684 | with _execvpe_mockup(defpath=program_path) as calls: |
| 685 | self.assertRaises(OSError, os._execvpe, program, arguments, env=env) |
| 686 | self.assertEqual(len(calls), 1) |
Victor Stinner | f155f1f | 2010-05-17 00:18:34 +0000 | [diff] [blame^] | 687 | self.assertEqual(calls[0], ('execve', fullpath, (arguments, env))) |
Victor Stinner | c2d095f | 2010-05-17 00:14:53 +0000 | [diff] [blame] | 688 | |
Gregory P. Smith | 4ae3777 | 2010-05-08 18:05:46 +0000 | [diff] [blame] | 689 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 690 | class Win32ErrorTests(unittest.TestCase): |
| 691 | def test_rename(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 692 | self.assertRaises(WindowsError, os.rename, support.TESTFN, support.TESTFN+".bak") |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 693 | |
| 694 | def test_remove(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 695 | self.assertRaises(WindowsError, os.remove, support.TESTFN) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 696 | |
| 697 | def test_chdir(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 698 | self.assertRaises(WindowsError, os.chdir, support.TESTFN) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 699 | |
| 700 | def test_mkdir(self): |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 701 | f = open(support.TESTFN, "w") |
Benjamin Peterson | f91df04 | 2009-02-13 02:50:59 +0000 | [diff] [blame] | 702 | try: |
| 703 | self.assertRaises(WindowsError, os.mkdir, support.TESTFN) |
| 704 | finally: |
| 705 | f.close() |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 706 | os.unlink(support.TESTFN) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 707 | |
| 708 | def test_utime(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 709 | self.assertRaises(WindowsError, os.utime, support.TESTFN, None) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 710 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 711 | def test_chmod(self): |
Benjamin Peterson | f91df04 | 2009-02-13 02:50:59 +0000 | [diff] [blame] | 712 | self.assertRaises(WindowsError, os.chmod, support.TESTFN, 0) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 713 | |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 714 | class TestInvalidFD(unittest.TestCase): |
Benjamin Peterson | 05e782f | 2009-01-19 15:15:02 +0000 | [diff] [blame] | 715 | singles = ["fchdir", "dup", "fdopen", "fdatasync", "fstat", |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 716 | "fstatvfs", "fsync", "tcgetpgrp", "ttyname"] |
| 717 | #singles.append("close") |
| 718 | #We omit close because it doesn'r raise an exception on some platforms |
| 719 | def get_single(f): |
| 720 | def helper(self): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 721 | if hasattr(os, f): |
| 722 | self.check(getattr(os, f)) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 723 | return helper |
| 724 | for f in singles: |
| 725 | locals()["test_"+f] = get_single(f) |
| 726 | |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 727 | def check(self, f, *args): |
Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 728 | try: |
| 729 | f(support.make_bad_fd(), *args) |
| 730 | except OSError as e: |
| 731 | self.assertEqual(e.errno, errno.EBADF) |
| 732 | else: |
| 733 | self.fail("%r didn't raise a OSError with a bad file descriptor" |
| 734 | % f) |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 735 | |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 736 | def test_isatty(self): |
| 737 | if hasattr(os, "isatty"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 738 | self.assertEqual(os.isatty(support.make_bad_fd()), False) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 739 | |
| 740 | def test_closerange(self): |
| 741 | if hasattr(os, "closerange"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 742 | fd = support.make_bad_fd() |
R. David Murray | 630cc48 | 2009-07-22 15:20:27 +0000 | [diff] [blame] | 743 | # Make sure none of the descriptors we are about to close are |
| 744 | # currently valid (issue 6542). |
| 745 | for i in range(10): |
| 746 | try: os.fstat(fd+i) |
| 747 | except OSError: |
| 748 | pass |
| 749 | else: |
| 750 | break |
| 751 | if i < 2: |
| 752 | raise unittest.SkipTest( |
| 753 | "Unable to acquire a range of invalid file descriptors") |
| 754 | self.assertEqual(os.closerange(fd, fd + i-1), None) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 755 | |
| 756 | def test_dup2(self): |
| 757 | if hasattr(os, "dup2"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 758 | self.check(os.dup2, 20) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 759 | |
| 760 | def test_fchmod(self): |
| 761 | if hasattr(os, "fchmod"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 762 | self.check(os.fchmod, 0) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 763 | |
| 764 | def test_fchown(self): |
| 765 | if hasattr(os, "fchown"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 766 | self.check(os.fchown, -1, -1) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 767 | |
| 768 | def test_fpathconf(self): |
| 769 | if hasattr(os, "fpathconf"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 770 | self.check(os.fpathconf, "PC_NAME_MAX") |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 771 | |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 772 | def test_ftruncate(self): |
| 773 | if hasattr(os, "ftruncate"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 774 | self.check(os.ftruncate, 0) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 775 | |
| 776 | def test_lseek(self): |
| 777 | if hasattr(os, "lseek"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 778 | self.check(os.lseek, 0, 0) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 779 | |
| 780 | def test_read(self): |
| 781 | if hasattr(os, "read"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 782 | self.check(os.read, 1) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 783 | |
| 784 | def test_tcsetpgrpt(self): |
| 785 | if hasattr(os, "tcsetpgrp"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 786 | self.check(os.tcsetpgrp, 0) |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 787 | |
| 788 | def test_write(self): |
| 789 | if hasattr(os, "write"): |
Benjamin Peterson | 7522c74 | 2009-01-19 21:00:09 +0000 | [diff] [blame] | 790 | self.check(os.write, b" ") |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 791 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 792 | if sys.platform != 'win32': |
| 793 | class Win32ErrorTests(unittest.TestCase): |
| 794 | pass |
| 795 | |
Benjamin Peterson | ef3e4c2 | 2009-04-11 19:48:14 +0000 | [diff] [blame] | 796 | class PosixUidGidTests(unittest.TestCase): |
| 797 | if hasattr(os, 'setuid'): |
| 798 | def test_setuid(self): |
| 799 | if os.getuid() != 0: |
| 800 | self.assertRaises(os.error, os.setuid, 0) |
| 801 | self.assertRaises(OverflowError, os.setuid, 1<<32) |
| 802 | |
| 803 | if hasattr(os, 'setgid'): |
| 804 | def test_setgid(self): |
| 805 | if os.getuid() != 0: |
| 806 | self.assertRaises(os.error, os.setgid, 0) |
| 807 | self.assertRaises(OverflowError, os.setgid, 1<<32) |
| 808 | |
| 809 | if hasattr(os, 'seteuid'): |
| 810 | def test_seteuid(self): |
| 811 | if os.getuid() != 0: |
| 812 | self.assertRaises(os.error, os.seteuid, 0) |
| 813 | self.assertRaises(OverflowError, os.seteuid, 1<<32) |
| 814 | |
| 815 | if hasattr(os, 'setegid'): |
| 816 | def test_setegid(self): |
| 817 | if os.getuid() != 0: |
| 818 | self.assertRaises(os.error, os.setegid, 0) |
| 819 | self.assertRaises(OverflowError, os.setegid, 1<<32) |
| 820 | |
| 821 | if hasattr(os, 'setreuid'): |
| 822 | def test_setreuid(self): |
| 823 | if os.getuid() != 0: |
| 824 | self.assertRaises(os.error, os.setreuid, 0, 0) |
| 825 | self.assertRaises(OverflowError, os.setreuid, 1<<32, 0) |
| 826 | self.assertRaises(OverflowError, os.setreuid, 0, 1<<32) |
Benjamin Peterson | ebe87ba | 2010-03-06 20:34:24 +0000 | [diff] [blame] | 827 | |
| 828 | def test_setreuid_neg1(self): |
| 829 | # Needs to accept -1. We run this in a subprocess to avoid |
| 830 | # altering the test runner's process state (issue8045). |
Benjamin Peterson | ebe87ba | 2010-03-06 20:34:24 +0000 | [diff] [blame] | 831 | subprocess.check_call([ |
| 832 | sys.executable, '-c', |
| 833 | 'import os,sys;os.setreuid(-1,-1);sys.exit(0)']) |
Benjamin Peterson | ef3e4c2 | 2009-04-11 19:48:14 +0000 | [diff] [blame] | 834 | |
| 835 | if hasattr(os, 'setregid'): |
| 836 | def test_setregid(self): |
| 837 | if os.getuid() != 0: |
| 838 | self.assertRaises(os.error, os.setregid, 0, 0) |
| 839 | self.assertRaises(OverflowError, os.setregid, 1<<32, 0) |
| 840 | self.assertRaises(OverflowError, os.setregid, 0, 1<<32) |
Benjamin Peterson | ebe87ba | 2010-03-06 20:34:24 +0000 | [diff] [blame] | 841 | |
| 842 | def test_setregid_neg1(self): |
| 843 | # Needs to accept -1. We run this in a subprocess to avoid |
| 844 | # altering the test runner's process state (issue8045). |
Benjamin Peterson | ebe87ba | 2010-03-06 20:34:24 +0000 | [diff] [blame] | 845 | subprocess.check_call([ |
| 846 | sys.executable, '-c', |
| 847 | 'import os,sys;os.setregid(-1,-1);sys.exit(0)']) |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 848 | |
Mark Dickinson | 7061368 | 2009-05-05 21:34:59 +0000 | [diff] [blame] | 849 | @unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X") |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 850 | class Pep383Tests(unittest.TestCase): |
| 851 | filenames = [b'foo\xf6bar', 'foo\xf6bar'.encode("utf-8")] |
| 852 | |
| 853 | def setUp(self): |
| 854 | self.fsencoding = sys.getfilesystemencoding() |
| 855 | sys.setfilesystemencoding("utf-8") |
| 856 | self.dir = support.TESTFN |
Martin v. Löwis | 43c5778 | 2009-05-10 08:15:24 +0000 | [diff] [blame] | 857 | self.bdir = self.dir.encode("utf-8", "surrogateescape") |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 858 | os.mkdir(self.dir) |
| 859 | self.unicodefn = [] |
| 860 | for fn in self.filenames: |
| 861 | f = open(os.path.join(self.bdir, fn), "w") |
| 862 | f.close() |
Martin v. Löwis | 43c5778 | 2009-05-10 08:15:24 +0000 | [diff] [blame] | 863 | self.unicodefn.append(fn.decode("utf-8", "surrogateescape")) |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 864 | |
| 865 | def tearDown(self): |
| 866 | shutil.rmtree(self.dir) |
| 867 | sys.setfilesystemencoding(self.fsencoding) |
| 868 | |
| 869 | def test_listdir(self): |
| 870 | expected = set(self.unicodefn) |
| 871 | found = set(os.listdir(support.TESTFN)) |
| 872 | self.assertEquals(found, expected) |
| 873 | |
| 874 | def test_open(self): |
| 875 | for fn in self.unicodefn: |
| 876 | f = open(os.path.join(self.dir, fn)) |
| 877 | f.close() |
| 878 | |
| 879 | def test_stat(self): |
| 880 | for fn in self.unicodefn: |
| 881 | os.stat(os.path.join(self.dir, fn)) |
Benjamin Peterson | ef3e4c2 | 2009-04-11 19:48:14 +0000 | [diff] [blame] | 882 | else: |
| 883 | class PosixUidGidTests(unittest.TestCase): |
| 884 | pass |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 885 | class Pep383Tests(unittest.TestCase): |
| 886 | pass |
Benjamin Peterson | ef3e4c2 | 2009-04-11 19:48:14 +0000 | [diff] [blame] | 887 | |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 888 | @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests") |
| 889 | class Win32KillTests(unittest.TestCase): |
| 890 | def _kill(self, sig, *args): |
| 891 | # Send a subprocess a signal (or in some cases, just an int to be |
| 892 | # the return value) |
| 893 | proc = subprocess.Popen(*args) |
| 894 | os.kill(proc.pid, sig) |
| 895 | self.assertEqual(proc.wait(), sig) |
| 896 | |
| 897 | def test_kill_sigterm(self): |
| 898 | # SIGTERM doesn't mean anything special, but make sure it works |
| 899 | self._kill(signal.SIGTERM, [sys.executable]) |
| 900 | |
| 901 | def test_kill_int(self): |
| 902 | # os.kill on Windows can take an int which gets set as the exit code |
| 903 | self._kill(100, [sys.executable]) |
| 904 | |
| 905 | def _kill_with_event(self, event, name): |
| 906 | # Run a script which has console control handling enabled. |
| 907 | proc = subprocess.Popen([sys.executable, |
| 908 | os.path.join(os.path.dirname(__file__), |
| 909 | "win_console_handler.py")], |
| 910 | creationflags=subprocess.CREATE_NEW_PROCESS_GROUP) |
| 911 | # Let the interpreter startup before we send signals. See #3137. |
| 912 | time.sleep(0.5) |
| 913 | os.kill(proc.pid, event) |
| 914 | # proc.send_signal(event) could also be done here. |
| 915 | # Allow time for the signal to be passed and the process to exit. |
| 916 | time.sleep(0.5) |
| 917 | if not proc.poll(): |
| 918 | # Forcefully kill the process if we weren't able to signal it. |
| 919 | os.kill(proc.pid, signal.SIGINT) |
| 920 | self.fail("subprocess did not stop on {}".format(name)) |
| 921 | |
| 922 | @unittest.skip("subprocesses aren't inheriting CTRL+C property") |
| 923 | def test_CTRL_C_EVENT(self): |
| 924 | from ctypes import wintypes |
| 925 | import ctypes |
| 926 | |
| 927 | # Make a NULL value by creating a pointer with no argument. |
| 928 | NULL = ctypes.POINTER(ctypes.c_int)() |
| 929 | SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler |
| 930 | SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int), |
| 931 | wintypes.BOOL) |
| 932 | SetConsoleCtrlHandler.restype = wintypes.BOOL |
| 933 | |
| 934 | # Calling this with NULL and FALSE causes the calling process to |
| 935 | # handle CTRL+C, rather than ignore it. This property is inherited |
| 936 | # by subprocesses. |
| 937 | SetConsoleCtrlHandler(NULL, 0) |
| 938 | |
| 939 | self._kill_with_event(signal.CTRL_C_EVENT, "CTRL_C_EVENT") |
| 940 | |
| 941 | def test_CTRL_BREAK_EVENT(self): |
| 942 | self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT") |
| 943 | |
| 944 | |
Victor Stinner | bf9bcab | 2010-05-09 03:15:33 +0000 | [diff] [blame] | 945 | class MiscTests(unittest.TestCase): |
Benjamin Peterson | 31191a9 | 2010-05-09 03:22:58 +0000 | [diff] [blame] | 946 | |
| 947 | @unittest.skipIf(os.name == "nt", "POSIX specific test") |
Victor Stinner | bf9bcab | 2010-05-09 03:15:33 +0000 | [diff] [blame] | 948 | def test_fsencode(self): |
| 949 | self.assertEquals(os.fsencode(b'ab\xff'), b'ab\xff') |
| 950 | self.assertEquals(os.fsencode('ab\uDCFF'), b'ab\xff') |
| 951 | |
| 952 | |
Fred Drake | 2e2be37 | 2001-09-20 21:33:42 +0000 | [diff] [blame] | 953 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 954 | support.run_unittest( |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 955 | FileTests, |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 956 | StatAttributeTests, |
| 957 | EnvironTests, |
Andrew M. Kuchling | b386f6a | 2003-12-23 16:36:11 +0000 | [diff] [blame] | 958 | WalkTests, |
| 959 | MakedirTests, |
Martin v. Löwis | bdec50f | 2004-06-08 08:29:33 +0000 | [diff] [blame] | 960 | DevNullTests, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 961 | URandomTests, |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 962 | ExecTests, |
Benjamin Peterson | e1cdfd7 | 2009-01-18 21:02:37 +0000 | [diff] [blame] | 963 | Win32ErrorTests, |
Benjamin Peterson | ef3e4c2 | 2009-04-11 19:48:14 +0000 | [diff] [blame] | 964 | TestInvalidFD, |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 965 | PosixUidGidTests, |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 966 | Pep383Tests, |
Victor Stinner | bf9bcab | 2010-05-09 03:15:33 +0000 | [diff] [blame] | 967 | Win32KillTests, |
| 968 | MiscTests, |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 969 | ) |
Fred Drake | 2e2be37 | 2001-09-20 21:33:42 +0000 | [diff] [blame] | 970 | |
| 971 | if __name__ == "__main__": |
| 972 | test_main() |