Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1 | import unittest |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 2 | from test import support |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3 | import subprocess |
| 4 | import sys |
| 5 | import signal |
| 6 | import os |
Gregory P. Smith | a59c59f | 2010-03-01 00:17:40 +0000 | [diff] [blame] | 7 | import errno |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 8 | import tempfile |
| 9 | import time |
Tim Peters | 3761e8d | 2004-10-13 04:07:12 +0000 | [diff] [blame] | 10 | import re |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 11 | import sysconfig |
Gregory P. Smith | 32ec9da | 2010-03-19 16:53:08 +0000 | [diff] [blame] | 12 | try: |
| 13 | import gc |
| 14 | except ImportError: |
| 15 | gc = None |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 16 | |
| 17 | mswindows = (sys.platform == "win32") |
| 18 | |
| 19 | # |
| 20 | # Depends on the following external programs: Python |
| 21 | # |
| 22 | |
| 23 | if mswindows: |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 24 | SETBINARY = ('import msvcrt; msvcrt.setmode(sys.stdout.fileno(), ' |
| 25 | 'os.O_BINARY);') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 26 | else: |
| 27 | SETBINARY = '' |
| 28 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 29 | |
| 30 | try: |
| 31 | mkstemp = tempfile.mkstemp |
| 32 | except AttributeError: |
| 33 | # tempfile.mkstemp is not available |
| 34 | def mkstemp(): |
| 35 | """Replacement for mkstemp, calling mktemp.""" |
| 36 | fname = tempfile.mktemp() |
| 37 | return os.open(fname, os.O_RDWR|os.O_CREAT), fname |
| 38 | |
Tim Peters | 3761e8d | 2004-10-13 04:07:12 +0000 | [diff] [blame] | 39 | |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 40 | class BaseTestCase(unittest.TestCase): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 41 | def setUp(self): |
| 42 | # Try to minimize the number of children we have so this test |
| 43 | # doesn't crash on some buildbots (Alphas in particular). |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 44 | support.reap_children() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 45 | |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 46 | def tearDown(self): |
| 47 | for inst in subprocess._active: |
| 48 | inst.wait() |
| 49 | subprocess._cleanup() |
| 50 | self.assertFalse(subprocess._active, "subprocess._active not empty") |
| 51 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 52 | def assertStderrEqual(self, stderr, expected, msg=None): |
| 53 | # In a debug build, stuff like "[6580 refs]" is printed to stderr at |
| 54 | # shutdown time. That frustrates tests trying to check stderr produced |
| 55 | # from a spawned Python process. |
Antoine Pitrou | 62f68ed | 2010-08-04 11:48:56 +0000 | [diff] [blame] | 56 | actual = support.strip_python_stderr(stderr) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 57 | self.assertEqual(actual, expected, msg) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 58 | |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 59 | |
| 60 | class ProcessTestCase(BaseTestCase): |
| 61 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 62 | def test_call_seq(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 63 | # call() function with sequence argument |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 64 | rc = subprocess.call([sys.executable, "-c", |
| 65 | "import sys; sys.exit(47)"]) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 66 | self.assertEqual(rc, 47) |
| 67 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 68 | def test_check_call_zero(self): |
| 69 | # check_call() function with zero return code |
| 70 | rc = subprocess.check_call([sys.executable, "-c", |
| 71 | "import sys; sys.exit(0)"]) |
| 72 | self.assertEqual(rc, 0) |
| 73 | |
| 74 | def test_check_call_nonzero(self): |
| 75 | # check_call() function with non-zero return code |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 76 | with self.assertRaises(subprocess.CalledProcessError) as c: |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 77 | subprocess.check_call([sys.executable, "-c", |
| 78 | "import sys; sys.exit(47)"]) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 79 | self.assertEqual(c.exception.returncode, 47) |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 80 | |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 81 | def test_check_output(self): |
| 82 | # check_output() function with zero return code |
| 83 | output = subprocess.check_output( |
| 84 | [sys.executable, "-c", "print('BDFL')"]) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 85 | self.assertIn(b'BDFL', output) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 86 | |
| 87 | def test_check_output_nonzero(self): |
| 88 | # check_call() function with non-zero return code |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 89 | with self.assertRaises(subprocess.CalledProcessError) as c: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 90 | subprocess.check_output( |
| 91 | [sys.executable, "-c", "import sys; sys.exit(5)"]) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 92 | self.assertEqual(c.exception.returncode, 5) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 93 | |
| 94 | def test_check_output_stderr(self): |
| 95 | # check_output() function stderr redirected to stdout |
| 96 | output = subprocess.check_output( |
| 97 | [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"], |
| 98 | stderr=subprocess.STDOUT) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 99 | self.assertIn(b'BDFL', output) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 100 | |
| 101 | def test_check_output_stdout_arg(self): |
| 102 | # check_output() function stderr redirected to stdout |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 103 | with self.assertRaises(ValueError) as c: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 104 | output = subprocess.check_output( |
| 105 | [sys.executable, "-c", "print('will not be run')"], |
| 106 | stdout=sys.stdout) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 107 | self.fail("Expected ValueError when stdout arg supplied.") |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 108 | self.assertIn('stdout', c.exception.args[0]) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 109 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 110 | def test_call_kwargs(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 111 | # call() function with keyword args |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 112 | newenv = os.environ.copy() |
| 113 | newenv["FRUIT"] = "banana" |
| 114 | rc = subprocess.call([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 115 | 'import sys, os;' |
| 116 | 'sys.exit(os.getenv("FRUIT")=="banana")'], |
| 117 | env=newenv) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 118 | self.assertEqual(rc, 1) |
| 119 | |
| 120 | def test_stdin_none(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 121 | # .stdin is None when not redirected |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 122 | p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 123 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 124 | p.wait() |
| 125 | self.assertEqual(p.stdin, None) |
| 126 | |
| 127 | def test_stdout_none(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 128 | # .stdout is None when not redirected |
Tim Peters | 29b6b4f | 2004-10-13 03:43:40 +0000 | [diff] [blame] | 129 | p = subprocess.Popen([sys.executable, "-c", |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 130 | 'print(" this bit of output is from a ' |
Tim Peters | 4052fe5 | 2004-10-13 03:29:54 +0000 | [diff] [blame] | 131 | 'test of stdout in a different ' |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 132 | 'process ...")'], |
Tim Peters | 4052fe5 | 2004-10-13 03:29:54 +0000 | [diff] [blame] | 133 | stdin=subprocess.PIPE, stderr=subprocess.PIPE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 134 | p.wait() |
| 135 | self.assertEqual(p.stdout, None) |
| 136 | |
| 137 | def test_stderr_none(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 138 | # .stderr is None when not redirected |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 139 | p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 140 | stdin=subprocess.PIPE, stdout=subprocess.PIPE) |
| 141 | p.wait() |
| 142 | self.assertEqual(p.stderr, None) |
| 143 | |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 144 | def test_executable_with_cwd(self): |
Florent Xicluna | 1d1ab97 | 2010-03-11 01:53:10 +0000 | [diff] [blame] | 145 | python_dir = os.path.dirname(os.path.realpath(sys.executable)) |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 146 | p = subprocess.Popen(["somethingyoudonthave", "-c", |
| 147 | "import sys; sys.exit(47)"], |
| 148 | executable=sys.executable, cwd=python_dir) |
| 149 | p.wait() |
| 150 | self.assertEqual(p.returncode, 47) |
| 151 | |
| 152 | @unittest.skipIf(sysconfig.is_python_build(), |
| 153 | "need an installed Python. See #7774") |
| 154 | def test_executable_without_cwd(self): |
| 155 | # For a normal installation, it should work without 'cwd' |
| 156 | # argument. For test runs in the build directory, see #7774. |
| 157 | p = subprocess.Popen(["somethingyoudonthave", "-c", |
| 158 | "import sys; sys.exit(47)"], |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 159 | executable=sys.executable) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 160 | p.wait() |
| 161 | self.assertEqual(p.returncode, 47) |
| 162 | |
| 163 | def test_stdin_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 164 | # stdin redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 165 | p = subprocess.Popen([sys.executable, "-c", |
| 166 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 167 | stdin=subprocess.PIPE) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 168 | p.stdin.write(b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 169 | p.stdin.close() |
| 170 | p.wait() |
| 171 | self.assertEqual(p.returncode, 1) |
| 172 | |
| 173 | def test_stdin_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 174 | # stdin is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 175 | tf = tempfile.TemporaryFile() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 176 | d = tf.fileno() |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 177 | os.write(d, b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 178 | os.lseek(d, 0, 0) |
| 179 | p = subprocess.Popen([sys.executable, "-c", |
| 180 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 181 | stdin=d) |
| 182 | p.wait() |
| 183 | self.assertEqual(p.returncode, 1) |
| 184 | |
| 185 | def test_stdin_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 186 | # stdin is set to open file object |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 187 | tf = tempfile.TemporaryFile() |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 188 | tf.write(b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 189 | tf.seek(0) |
| 190 | p = subprocess.Popen([sys.executable, "-c", |
| 191 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 192 | stdin=tf) |
| 193 | p.wait() |
| 194 | self.assertEqual(p.returncode, 1) |
| 195 | |
| 196 | def test_stdout_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 197 | # stdout redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 198 | p = subprocess.Popen([sys.executable, "-c", |
| 199 | 'import sys; sys.stdout.write("orange")'], |
| 200 | stdout=subprocess.PIPE) |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 201 | self.assertEqual(p.stdout.read(), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 202 | |
| 203 | def test_stdout_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 204 | # stdout is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 205 | tf = tempfile.TemporaryFile() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 206 | d = tf.fileno() |
| 207 | p = subprocess.Popen([sys.executable, "-c", |
| 208 | 'import sys; sys.stdout.write("orange")'], |
| 209 | stdout=d) |
| 210 | p.wait() |
| 211 | os.lseek(d, 0, 0) |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 212 | self.assertEqual(os.read(d, 1024), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 213 | |
| 214 | def test_stdout_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 215 | # stdout is set to open file object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 216 | tf = tempfile.TemporaryFile() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 217 | p = subprocess.Popen([sys.executable, "-c", |
| 218 | 'import sys; sys.stdout.write("orange")'], |
| 219 | stdout=tf) |
| 220 | p.wait() |
| 221 | tf.seek(0) |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 222 | self.assertEqual(tf.read(), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 223 | |
| 224 | def test_stderr_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 225 | # stderr redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 226 | p = subprocess.Popen([sys.executable, "-c", |
| 227 | 'import sys; sys.stderr.write("strawberry")'], |
| 228 | stderr=subprocess.PIPE) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 229 | self.assertStderrEqual(p.stderr.read(), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 230 | |
| 231 | def test_stderr_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 232 | # stderr is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 233 | tf = tempfile.TemporaryFile() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 234 | d = tf.fileno() |
| 235 | p = subprocess.Popen([sys.executable, "-c", |
| 236 | 'import sys; sys.stderr.write("strawberry")'], |
| 237 | stderr=d) |
| 238 | p.wait() |
| 239 | os.lseek(d, 0, 0) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 240 | self.assertStderrEqual(os.read(d, 1024), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 241 | |
| 242 | def test_stderr_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 243 | # stderr is set to open file object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 244 | tf = tempfile.TemporaryFile() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 245 | p = subprocess.Popen([sys.executable, "-c", |
| 246 | 'import sys; sys.stderr.write("strawberry")'], |
| 247 | stderr=tf) |
| 248 | p.wait() |
| 249 | tf.seek(0) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 250 | self.assertStderrEqual(tf.read(), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 251 | |
| 252 | def test_stdout_stderr_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 253 | # capture stdout and stderr to the same pipe |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 254 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 255 | 'import sys;' |
| 256 | 'sys.stdout.write("apple");' |
| 257 | 'sys.stdout.flush();' |
| 258 | 'sys.stderr.write("orange")'], |
| 259 | stdout=subprocess.PIPE, |
| 260 | stderr=subprocess.STDOUT) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 261 | self.assertStderrEqual(p.stdout.read(), b"appleorange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 262 | |
| 263 | def test_stdout_stderr_file(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 264 | # capture stdout and stderr to the same open file |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 265 | tf = tempfile.TemporaryFile() |
| 266 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 267 | 'import sys;' |
| 268 | 'sys.stdout.write("apple");' |
| 269 | 'sys.stdout.flush();' |
| 270 | 'sys.stderr.write("orange")'], |
| 271 | stdout=tf, |
| 272 | stderr=tf) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 273 | p.wait() |
| 274 | tf.seek(0) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 275 | self.assertStderrEqual(tf.read(), b"appleorange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 276 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 277 | def test_stdout_filedes_of_stdout(self): |
| 278 | # stdout is set to 1 (#1531862). |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 279 | cmd = r"import sys, os; sys.exit(os.write(sys.stdout.fileno(), b'.\n'))" |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 280 | rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 281 | self.assertEqual(rc, 2) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 282 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 283 | def test_cwd(self): |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 284 | tmpdir = tempfile.gettempdir() |
Peter Astrand | 195404f | 2004-11-12 15:51:48 +0000 | [diff] [blame] | 285 | # We cannot use os.path.realpath to canonicalize the path, |
| 286 | # since it doesn't expand Tru64 {memb} strings. See bug 1063571. |
| 287 | cwd = os.getcwd() |
| 288 | os.chdir(tmpdir) |
| 289 | tmpdir = os.getcwd() |
| 290 | os.chdir(cwd) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 291 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 292 | 'import sys,os;' |
| 293 | 'sys.stdout.write(os.getcwd())'], |
| 294 | stdout=subprocess.PIPE, |
| 295 | cwd=tmpdir) |
Fredrik Lundh | 59c0559 | 2004-10-13 06:55:40 +0000 | [diff] [blame] | 296 | normcase = os.path.normcase |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 297 | self.assertEqual(normcase(p.stdout.read().decode("utf-8")), |
| 298 | normcase(tmpdir)) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 299 | |
| 300 | def test_env(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 301 | newenv = os.environ.copy() |
| 302 | newenv["FRUIT"] = "orange" |
| 303 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 304 | 'import sys,os;' |
| 305 | 'sys.stdout.write(os.getenv("FRUIT"))'], |
| 306 | stdout=subprocess.PIPE, |
| 307 | env=newenv) |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 308 | self.assertEqual(p.stdout.read(), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 309 | |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 310 | def test_communicate_stdin(self): |
| 311 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 312 | 'import sys;' |
| 313 | 'sys.exit(sys.stdin.read() == "pear")'], |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 314 | stdin=subprocess.PIPE) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 315 | p.communicate(b"pear") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 316 | self.assertEqual(p.returncode, 1) |
| 317 | |
| 318 | def test_communicate_stdout(self): |
| 319 | p = subprocess.Popen([sys.executable, "-c", |
| 320 | 'import sys; sys.stdout.write("pineapple")'], |
| 321 | stdout=subprocess.PIPE) |
| 322 | (stdout, stderr) = p.communicate() |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 323 | self.assertEqual(stdout, b"pineapple") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 324 | self.assertEqual(stderr, None) |
| 325 | |
| 326 | def test_communicate_stderr(self): |
| 327 | p = subprocess.Popen([sys.executable, "-c", |
| 328 | 'import sys; sys.stderr.write("pineapple")'], |
| 329 | stderr=subprocess.PIPE) |
| 330 | (stdout, stderr) = p.communicate() |
| 331 | self.assertEqual(stdout, None) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 332 | self.assertStderrEqual(stderr, b"pineapple") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 333 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 334 | def test_communicate(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 335 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 336 | 'import sys,os;' |
| 337 | 'sys.stderr.write("pineapple");' |
| 338 | 'sys.stdout.write(sys.stdin.read())'], |
| 339 | stdin=subprocess.PIPE, |
| 340 | stdout=subprocess.PIPE, |
| 341 | stderr=subprocess.PIPE) |
Georg Brandl | 1abcbf8 | 2008-07-01 19:28:43 +0000 | [diff] [blame] | 342 | (stdout, stderr) = p.communicate(b"banana") |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 343 | self.assertEqual(stdout, b"banana") |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 344 | self.assertStderrEqual(stderr, b"pineapple") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 345 | |
Georg Brandl | f08a9dd | 2008-06-10 16:57:31 +0000 | [diff] [blame] | 346 | # This test is Linux specific for simplicity to at least have |
| 347 | # some coverage. It is not a platform specific bug. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 348 | @unittest.skipUnless(os.path.isdir('/proc/%d/fd' % os.getpid()), |
| 349 | "Linux specific") |
| 350 | # Test for the fd leak reported in http://bugs.python.org/issue2791. |
| 351 | def test_communicate_pipe_fd_leak(self): |
| 352 | fd_directory = '/proc/%d/fd' % os.getpid() |
| 353 | num_fds_before_popen = len(os.listdir(fd_directory)) |
| 354 | p = subprocess.Popen([sys.executable, "-c", "print()"], |
| 355 | stdout=subprocess.PIPE) |
| 356 | p.communicate() |
| 357 | num_fds_after_communicate = len(os.listdir(fd_directory)) |
| 358 | del p |
| 359 | num_fds_after_destruction = len(os.listdir(fd_directory)) |
| 360 | self.assertEqual(num_fds_before_popen, num_fds_after_destruction) |
| 361 | self.assertEqual(num_fds_before_popen, num_fds_after_communicate) |
Georg Brandl | f08a9dd | 2008-06-10 16:57:31 +0000 | [diff] [blame] | 362 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 363 | def test_communicate_returns(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 364 | # communicate() should return None if no redirection is active |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 365 | p = subprocess.Popen([sys.executable, "-c", |
| 366 | "import sys; sys.exit(47)"]) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 367 | (stdout, stderr) = p.communicate() |
| 368 | self.assertEqual(stdout, None) |
| 369 | self.assertEqual(stderr, None) |
| 370 | |
| 371 | def test_communicate_pipe_buf(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 372 | # communicate() with writes larger than pipe_buf |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 373 | # This test will probably deadlock rather than fail, if |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 374 | # communicate() does not work properly. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 375 | x, y = os.pipe() |
| 376 | if mswindows: |
| 377 | pipe_buf = 512 |
| 378 | else: |
| 379 | pipe_buf = os.fpathconf(x, "PC_PIPE_BUF") |
| 380 | os.close(x) |
| 381 | os.close(y) |
| 382 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 383 | 'import sys,os;' |
| 384 | 'sys.stdout.write(sys.stdin.read(47));' |
| 385 | 'sys.stderr.write("xyz"*%d);' |
| 386 | 'sys.stdout.write(sys.stdin.read())' % pipe_buf], |
| 387 | stdin=subprocess.PIPE, |
| 388 | stdout=subprocess.PIPE, |
| 389 | stderr=subprocess.PIPE) |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 390 | string_to_write = b"abc"*pipe_buf |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 391 | (stdout, stderr) = p.communicate(string_to_write) |
| 392 | self.assertEqual(stdout, string_to_write) |
| 393 | |
| 394 | def test_writes_before_communicate(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 395 | # stdin.write before communicate() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 396 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 397 | 'import sys,os;' |
| 398 | 'sys.stdout.write(sys.stdin.read())'], |
| 399 | stdin=subprocess.PIPE, |
| 400 | stdout=subprocess.PIPE, |
| 401 | stderr=subprocess.PIPE) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 402 | p.stdin.write(b"banana") |
| 403 | (stdout, stderr) = p.communicate(b"split") |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 404 | self.assertEqual(stdout, b"bananasplit") |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 405 | self.assertStderrEqual(stderr, b"") |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 406 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 407 | def test_universal_newlines(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 408 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 409 | 'import sys,os;' + SETBINARY + |
| 410 | 'sys.stdout.write("line1\\n");' |
| 411 | 'sys.stdout.flush();' |
| 412 | 'sys.stdout.write("line2\\n");' |
| 413 | 'sys.stdout.flush();' |
| 414 | 'sys.stdout.write("line3\\r\\n");' |
| 415 | 'sys.stdout.flush();' |
| 416 | 'sys.stdout.write("line4\\r");' |
| 417 | 'sys.stdout.flush();' |
| 418 | 'sys.stdout.write("\\nline5");' |
| 419 | 'sys.stdout.flush();' |
| 420 | 'sys.stdout.write("\\nline6");'], |
| 421 | stdout=subprocess.PIPE, |
| 422 | universal_newlines=1) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 423 | stdout = p.stdout.read() |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 424 | self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 425 | |
| 426 | def test_universal_newlines_communicate(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 427 | # universal newlines through communicate() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 428 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 429 | 'import sys,os;' + SETBINARY + |
| 430 | 'sys.stdout.write("line1\\n");' |
| 431 | 'sys.stdout.flush();' |
| 432 | 'sys.stdout.write("line2\\n");' |
| 433 | 'sys.stdout.flush();' |
| 434 | 'sys.stdout.write("line3\\r\\n");' |
| 435 | 'sys.stdout.flush();' |
| 436 | 'sys.stdout.write("line4\\r");' |
| 437 | 'sys.stdout.flush();' |
| 438 | 'sys.stdout.write("\\nline5");' |
| 439 | 'sys.stdout.flush();' |
| 440 | 'sys.stdout.write("\\nline6");'], |
| 441 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
| 442 | universal_newlines=1) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 443 | (stdout, stderr) = p.communicate() |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 444 | self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 445 | |
| 446 | def test_no_leaking(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 447 | # Make sure we leak no resources |
Antoine Pitrou | 8db3027 | 2010-09-18 22:38:48 +0000 | [diff] [blame] | 448 | if not mswindows: |
Peter Astrand | f7f1bb7 | 2005-03-03 20:47:37 +0000 | [diff] [blame] | 449 | max_handles = 1026 # too much for most UNIX systems |
| 450 | else: |
Antoine Pitrou | 8db3027 | 2010-09-18 22:38:48 +0000 | [diff] [blame] | 451 | max_handles = 2050 # too much for (at least some) Windows setups |
| 452 | handles = [] |
| 453 | try: |
| 454 | for i in range(max_handles): |
| 455 | try: |
| 456 | handles.append(os.open(support.TESTFN, |
| 457 | os.O_WRONLY | os.O_CREAT)) |
| 458 | except OSError as e: |
| 459 | if e.errno != errno.EMFILE: |
| 460 | raise |
| 461 | break |
| 462 | else: |
| 463 | self.skipTest("failed to reach the file descriptor limit " |
| 464 | "(tried %d)" % max_handles) |
| 465 | # Close a couple of them (should be enough for a subprocess) |
| 466 | for i in range(10): |
| 467 | os.close(handles.pop()) |
| 468 | # Loop creating some subprocesses. If one of them leaks some fds, |
| 469 | # the next loop iteration will fail by reaching the max fd limit. |
| 470 | for i in range(15): |
| 471 | p = subprocess.Popen([sys.executable, "-c", |
| 472 | "import sys;" |
| 473 | "sys.stdout.write(sys.stdin.read())"], |
| 474 | stdin=subprocess.PIPE, |
| 475 | stdout=subprocess.PIPE, |
| 476 | stderr=subprocess.PIPE) |
| 477 | data = p.communicate(b"lime")[0] |
| 478 | self.assertEqual(data, b"lime") |
| 479 | finally: |
| 480 | for h in handles: |
| 481 | os.close(h) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 482 | |
| 483 | def test_list2cmdline(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 484 | self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), |
| 485 | '"a b c" d e') |
| 486 | self.assertEqual(subprocess.list2cmdline(['ab"c', '\\', 'd']), |
| 487 | 'ab\\"c \\ d') |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 488 | self.assertEqual(subprocess.list2cmdline(['ab"c', ' \\', 'd']), |
| 489 | 'ab\\"c " \\\\" d') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 490 | self.assertEqual(subprocess.list2cmdline(['a\\\\\\b', 'de fg', 'h']), |
| 491 | 'a\\\\\\b "de fg" h') |
| 492 | self.assertEqual(subprocess.list2cmdline(['a\\"b', 'c', 'd']), |
| 493 | 'a\\\\\\"b c d') |
| 494 | self.assertEqual(subprocess.list2cmdline(['a\\\\b c', 'd', 'e']), |
| 495 | '"a\\\\b c" d e') |
| 496 | self.assertEqual(subprocess.list2cmdline(['a\\\\b\\ c', 'd', 'e']), |
| 497 | '"a\\\\b\\ c" d e') |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 498 | self.assertEqual(subprocess.list2cmdline(['ab', '']), |
| 499 | 'ab ""') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 500 | |
| 501 | |
| 502 | def test_poll(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 503 | p = subprocess.Popen([sys.executable, |
Tim Peters | 29b6b4f | 2004-10-13 03:43:40 +0000 | [diff] [blame] | 504 | "-c", "import time; time.sleep(1)"]) |
| 505 | count = 0 |
| 506 | while p.poll() is None: |
| 507 | time.sleep(0.1) |
| 508 | count += 1 |
| 509 | # We expect that the poll loop probably went around about 10 times, |
| 510 | # but, based on system scheduling we can't control, it's possible |
| 511 | # poll() never returned None. It "should be" very rare that it |
| 512 | # didn't go around at least twice. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 513 | self.assertGreaterEqual(count, 2) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 514 | # Subsequent invocations should just return the returncode |
| 515 | self.assertEqual(p.poll(), 0) |
| 516 | |
| 517 | |
| 518 | def test_wait(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 519 | p = subprocess.Popen([sys.executable, |
| 520 | "-c", "import time; time.sleep(2)"]) |
| 521 | self.assertEqual(p.wait(), 0) |
| 522 | # Subsequent invocations should just return the returncode |
| 523 | self.assertEqual(p.wait(), 0) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 524 | |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 525 | |
| 526 | def test_invalid_bufsize(self): |
| 527 | # an invalid type of the bufsize argument should raise |
| 528 | # TypeError. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 529 | with self.assertRaises(TypeError): |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 530 | subprocess.Popen([sys.executable, "-c", "pass"], "orange") |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 531 | |
Guido van Rossum | 46a05a7 | 2007-06-07 21:56:45 +0000 | [diff] [blame] | 532 | def test_bufsize_is_none(self): |
| 533 | # bufsize=None should be the same as bufsize=0. |
| 534 | p = subprocess.Popen([sys.executable, "-c", "pass"], None) |
| 535 | self.assertEqual(p.wait(), 0) |
| 536 | # Again with keyword arg |
| 537 | p = subprocess.Popen([sys.executable, "-c", "pass"], bufsize=None) |
| 538 | self.assertEqual(p.wait(), 0) |
| 539 | |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 540 | def test_leaking_fds_on_error(self): |
| 541 | # see bug #5179: Popen leaks file descriptors to PIPEs if |
| 542 | # the child fails to execute; this will eventually exhaust |
| 543 | # the maximum number of open fds. 1024 seems a very common |
| 544 | # value for that limit, but Windows has 2048, so we loop |
| 545 | # 1024 times (each call leaked two fds). |
| 546 | for i in range(1024): |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 547 | # Windows raises IOError. Others raise OSError. |
| 548 | with self.assertRaises(EnvironmentError) as c: |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 549 | subprocess.Popen(['nonexisting_i_hope'], |
| 550 | stdout=subprocess.PIPE, |
| 551 | stderr=subprocess.PIPE) |
Antoine Pitrou | 679e0f2 | 2010-09-18 17:56:02 +0000 | [diff] [blame] | 552 | if c.exception.errno != errno.ENOENT: # ignore "no such file" |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 553 | raise c.exception |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 554 | |
Victor Stinner | b369358 | 2010-05-21 20:13:12 +0000 | [diff] [blame] | 555 | def test_issue8780(self): |
| 556 | # Ensure that stdout is inherited from the parent |
| 557 | # if stdout=PIPE is not used |
| 558 | code = ';'.join(( |
| 559 | 'import subprocess, sys', |
| 560 | 'retcode = subprocess.call(' |
| 561 | "[sys.executable, '-c', 'print(\"Hello World!\")'])", |
| 562 | 'assert retcode == 0')) |
| 563 | output = subprocess.check_output([sys.executable, '-c', code]) |
| 564 | self.assert_(output.startswith(b'Hello World!'), ascii(output)) |
| 565 | |
Tim Golden | af5ac39 | 2010-08-06 13:03:56 +0000 | [diff] [blame] | 566 | def test_handles_closed_on_exception(self): |
| 567 | # If CreateProcess exits with an error, ensure the |
| 568 | # duplicate output handles are released |
| 569 | ifhandle, ifname = mkstemp() |
| 570 | ofhandle, ofname = mkstemp() |
| 571 | efhandle, efname = mkstemp() |
| 572 | try: |
| 573 | subprocess.Popen (["*"], stdin=ifhandle, stdout=ofhandle, |
| 574 | stderr=efhandle) |
| 575 | except OSError: |
| 576 | os.close(ifhandle) |
| 577 | os.remove(ifname) |
| 578 | os.close(ofhandle) |
| 579 | os.remove(ofname) |
| 580 | os.close(efhandle) |
| 581 | os.remove(efname) |
| 582 | self.assertFalse(os.path.exists(ifname)) |
| 583 | self.assertFalse(os.path.exists(ofname)) |
| 584 | self.assertFalse(os.path.exists(efname)) |
| 585 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 586 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 587 | # context manager |
| 588 | class _SuppressCoreFiles(object): |
| 589 | """Try to prevent core files from being created.""" |
| 590 | old_limit = None |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 591 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 592 | def __enter__(self): |
| 593 | """Try to save previous ulimit, then set it to (0, 0).""" |
| 594 | try: |
| 595 | import resource |
| 596 | self.old_limit = resource.getrlimit(resource.RLIMIT_CORE) |
| 597 | resource.setrlimit(resource.RLIMIT_CORE, (0, 0)) |
| 598 | except (ImportError, ValueError, resource.error): |
| 599 | pass |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 600 | |
Ronald Oussoren | 102d11a | 2010-07-23 09:50:05 +0000 | [diff] [blame] | 601 | if sys.platform == 'darwin': |
| 602 | # Check if the 'Crash Reporter' on OSX was configured |
| 603 | # in 'Developer' mode and warn that it will get triggered |
| 604 | # when it is. |
| 605 | # |
| 606 | # This assumes that this context manager is used in tests |
| 607 | # that might trigger the next manager. |
| 608 | value = subprocess.Popen(['/usr/bin/defaults', 'read', |
| 609 | 'com.apple.CrashReporter', 'DialogType'], |
| 610 | stdout=subprocess.PIPE).communicate()[0] |
| 611 | if value.strip() == b'developer': |
| 612 | print("this tests triggers the Crash Reporter, " |
| 613 | "that is intentional", end='') |
| 614 | sys.stdout.flush() |
| 615 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 616 | def __exit__(self, *args): |
| 617 | """Return core file behavior to default.""" |
| 618 | if self.old_limit is None: |
| 619 | return |
| 620 | try: |
| 621 | import resource |
| 622 | resource.setrlimit(resource.RLIMIT_CORE, self.old_limit) |
| 623 | except (ImportError, ValueError, resource.error): |
| 624 | pass |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 625 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 626 | |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 627 | @unittest.skipIf(mswindows, "POSIX specific tests") |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 628 | class POSIXProcessTestCase(BaseTestCase): |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 629 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 630 | def test_exceptions(self): |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 631 | nonexistent_dir = "/_this/pa.th/does/not/exist" |
| 632 | try: |
| 633 | os.chdir(nonexistent_dir) |
| 634 | except OSError as e: |
| 635 | # This avoids hard coding the errno value or the OS perror() |
| 636 | # string and instead capture the exception that we want to see |
| 637 | # below for comparison. |
| 638 | desired_exception = e |
| 639 | else: |
| 640 | self.fail("chdir to nonexistant directory %s succeeded." % |
| 641 | nonexistent_dir) |
| 642 | |
| 643 | # Error in the child re-raised in the parent. |
| 644 | try: |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 645 | p = subprocess.Popen([sys.executable, "-c", ""], |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 646 | cwd=nonexistent_dir) |
| 647 | except OSError as e: |
| 648 | # Test that the child process chdir failure actually makes |
| 649 | # it up to the parent process as the correct exception. |
| 650 | self.assertEqual(desired_exception.errno, e.errno) |
| 651 | self.assertEqual(desired_exception.strerror, e.strerror) |
| 652 | else: |
| 653 | self.fail("Expected OSError: %s" % desired_exception) |
| 654 | |
| 655 | def test_restore_signals(self): |
| 656 | # Code coverage for both values of restore_signals to make sure it |
| 657 | # at least does not blow up. |
| 658 | # A test for behavior would be complex. Contributions welcome. |
| 659 | subprocess.call([sys.executable, "-c", ""], restore_signals=True) |
| 660 | subprocess.call([sys.executable, "-c", ""], restore_signals=False) |
| 661 | |
| 662 | def test_start_new_session(self): |
| 663 | # For code coverage of calling setsid(). We don't care if we get an |
| 664 | # EPERM error from it depending on the test execution environment, that |
| 665 | # still indicates that it was called. |
| 666 | try: |
| 667 | output = subprocess.check_output( |
| 668 | [sys.executable, "-c", |
| 669 | "import os; print(os.getpgid(os.getpid()))"], |
| 670 | start_new_session=True) |
| 671 | except OSError as e: |
| 672 | if e.errno != errno.EPERM: |
| 673 | raise |
| 674 | else: |
| 675 | parent_pgid = os.getpgid(os.getpid()) |
| 676 | child_pgid = int(output) |
| 677 | self.assertNotEqual(parent_pgid, child_pgid) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 678 | |
| 679 | def test_run_abort(self): |
| 680 | # returncode handles signal termination |
| 681 | with _SuppressCoreFiles(): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 682 | p = subprocess.Popen([sys.executable, "-c", |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 683 | 'import os; os.abort()']) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 684 | p.wait() |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 685 | self.assertEqual(-p.returncode, signal.SIGABRT) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 686 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 687 | def test_preexec(self): |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 688 | # DISCLAIMER: Setting environment variables is *not* a good use |
| 689 | # of a preexec_fn. This is merely a test. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 690 | p = subprocess.Popen([sys.executable, "-c", |
| 691 | 'import sys,os;' |
| 692 | 'sys.stdout.write(os.getenv("FRUIT"))'], |
| 693 | stdout=subprocess.PIPE, |
| 694 | preexec_fn=lambda: os.putenv("FRUIT", "apple")) |
| 695 | self.assertEqual(p.stdout.read(), b"apple") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 696 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 697 | def test_preexec_exception(self): |
| 698 | def raise_it(): |
| 699 | raise ValueError("What if two swallows carried a coconut?") |
| 700 | try: |
| 701 | p = subprocess.Popen([sys.executable, "-c", ""], |
| 702 | preexec_fn=raise_it) |
| 703 | except RuntimeError as e: |
| 704 | self.assertTrue( |
| 705 | subprocess._posixsubprocess, |
| 706 | "Expected a ValueError from the preexec_fn") |
| 707 | except ValueError as e: |
| 708 | self.assertIn("coconut", e.args[0]) |
| 709 | else: |
| 710 | self.fail("Exception raised by preexec_fn did not make it " |
| 711 | "to the parent process.") |
| 712 | |
Gregory P. Smith | 32ec9da | 2010-03-19 16:53:08 +0000 | [diff] [blame] | 713 | @unittest.skipUnless(gc, "Requires a gc module.") |
| 714 | def test_preexec_gc_module_failure(self): |
| 715 | # This tests the code that disables garbage collection if the child |
| 716 | # process will execute any Python. |
| 717 | def raise_runtime_error(): |
| 718 | raise RuntimeError("this shouldn't escape") |
| 719 | enabled = gc.isenabled() |
| 720 | orig_gc_disable = gc.disable |
| 721 | orig_gc_isenabled = gc.isenabled |
| 722 | try: |
| 723 | gc.disable() |
| 724 | self.assertFalse(gc.isenabled()) |
| 725 | subprocess.call([sys.executable, '-c', ''], |
| 726 | preexec_fn=lambda: None) |
| 727 | self.assertFalse(gc.isenabled(), |
| 728 | "Popen enabled gc when it shouldn't.") |
| 729 | |
| 730 | gc.enable() |
| 731 | self.assertTrue(gc.isenabled()) |
| 732 | subprocess.call([sys.executable, '-c', ''], |
| 733 | preexec_fn=lambda: None) |
| 734 | self.assertTrue(gc.isenabled(), "Popen left gc disabled.") |
| 735 | |
| 736 | gc.disable = raise_runtime_error |
| 737 | self.assertRaises(RuntimeError, subprocess.Popen, |
| 738 | [sys.executable, '-c', ''], |
| 739 | preexec_fn=lambda: None) |
| 740 | |
| 741 | del gc.isenabled # force an AttributeError |
| 742 | self.assertRaises(AttributeError, subprocess.Popen, |
| 743 | [sys.executable, '-c', ''], |
| 744 | preexec_fn=lambda: None) |
| 745 | finally: |
| 746 | gc.disable = orig_gc_disable |
| 747 | gc.isenabled = orig_gc_isenabled |
| 748 | if not enabled: |
| 749 | gc.disable() |
| 750 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 751 | def test_args_string(self): |
| 752 | # args is a string |
| 753 | fd, fname = mkstemp() |
| 754 | # reopen in text mode |
| 755 | with open(fd, "w") as fobj: |
| 756 | fobj.write("#!/bin/sh\n") |
| 757 | fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" % |
| 758 | sys.executable) |
| 759 | os.chmod(fname, 0o700) |
| 760 | p = subprocess.Popen(fname) |
| 761 | p.wait() |
| 762 | os.remove(fname) |
| 763 | self.assertEqual(p.returncode, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 764 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 765 | def test_invalid_args(self): |
| 766 | # invalid arguments should raise ValueError |
| 767 | self.assertRaises(ValueError, subprocess.call, |
| 768 | [sys.executable, "-c", |
| 769 | "import sys; sys.exit(47)"], |
| 770 | startupinfo=47) |
| 771 | self.assertRaises(ValueError, subprocess.call, |
| 772 | [sys.executable, "-c", |
| 773 | "import sys; sys.exit(47)"], |
| 774 | creationflags=47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 775 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 776 | def test_shell_sequence(self): |
| 777 | # Run command through the shell (sequence) |
| 778 | newenv = os.environ.copy() |
| 779 | newenv["FRUIT"] = "apple" |
| 780 | p = subprocess.Popen(["echo $FRUIT"], shell=1, |
| 781 | stdout=subprocess.PIPE, |
| 782 | env=newenv) |
| 783 | self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 784 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 785 | def test_shell_string(self): |
| 786 | # Run command through the shell (string) |
| 787 | newenv = os.environ.copy() |
| 788 | newenv["FRUIT"] = "apple" |
| 789 | p = subprocess.Popen("echo $FRUIT", shell=1, |
| 790 | stdout=subprocess.PIPE, |
| 791 | env=newenv) |
| 792 | self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple") |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 793 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 794 | def test_call_string(self): |
| 795 | # call() function with string argument on UNIX |
| 796 | fd, fname = mkstemp() |
| 797 | # reopen in text mode |
| 798 | with open(fd, "w") as fobj: |
| 799 | fobj.write("#!/bin/sh\n") |
| 800 | fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" % |
| 801 | sys.executable) |
| 802 | os.chmod(fname, 0o700) |
| 803 | rc = subprocess.call(fname) |
| 804 | os.remove(fname) |
| 805 | self.assertEqual(rc, 47) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 806 | |
Stefan Krah | 9542cc6 | 2010-07-19 14:20:53 +0000 | [diff] [blame] | 807 | def test_specific_shell(self): |
| 808 | # Issue #9265: Incorrect name passed as arg[0]. |
| 809 | shells = [] |
| 810 | for prefix in ['/bin', '/usr/bin/', '/usr/local/bin']: |
| 811 | for name in ['bash', 'ksh']: |
| 812 | sh = os.path.join(prefix, name) |
| 813 | if os.path.isfile(sh): |
| 814 | shells.append(sh) |
| 815 | if not shells: # Will probably work for any shell but csh. |
| 816 | self.skipTest("bash or ksh required for this test") |
| 817 | sh = '/bin/sh' |
| 818 | if os.path.isfile(sh) and not os.path.islink(sh): |
| 819 | # Test will fail if /bin/sh is a symlink to csh. |
| 820 | shells.append(sh) |
| 821 | for sh in shells: |
| 822 | p = subprocess.Popen("echo $0", executable=sh, shell=True, |
| 823 | stdout=subprocess.PIPE) |
| 824 | self.assertEqual(p.stdout.read().strip(), bytes(sh, 'ascii')) |
| 825 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 826 | def _kill_process(self, method, *args): |
Florent Xicluna | 1d8ee3a | 2010-03-05 20:26:54 +0000 | [diff] [blame] | 827 | # Do not inherit file handles from the parent. |
| 828 | # It should fix failures on some platforms. |
Antoine Pitrou | 3d8580f | 2010-09-20 01:33:21 +0000 | [diff] [blame] | 829 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 830 | import sys, time |
| 831 | sys.stdout.write('x\\n') |
| 832 | sys.stdout.flush() |
| 833 | time.sleep(30) |
| 834 | """], |
| 835 | close_fds=True, |
| 836 | stdin=subprocess.PIPE, |
| 837 | stdout=subprocess.PIPE, |
| 838 | stderr=subprocess.PIPE) |
| 839 | # Wait for the interpreter to be completely initialized before |
| 840 | # sending any signal. |
| 841 | p.stdout.read(1) |
| 842 | getattr(p, method)(*args) |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 843 | return p |
| 844 | |
| 845 | def test_send_signal(self): |
| 846 | p = self._kill_process('send_signal', signal.SIGINT) |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 847 | _, stderr = p.communicate() |
| 848 | self.assertIn(b'KeyboardInterrupt', stderr) |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 849 | self.assertNotEqual(p.wait(), 0) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 850 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 851 | def test_kill(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 852 | p = self._kill_process('kill') |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 853 | _, stderr = p.communicate() |
| 854 | self.assertStderrEqual(stderr, b'') |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 855 | self.assertEqual(p.wait(), -signal.SIGKILL) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 856 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 857 | def test_terminate(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 858 | p = self._kill_process('terminate') |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 859 | _, stderr = p.communicate() |
| 860 | self.assertStderrEqual(stderr, b'') |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 861 | self.assertEqual(p.wait(), -signal.SIGTERM) |
| 862 | |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 863 | def test_surrogates_error_message(self): |
Victor Stinner | 4d07804 | 2010-04-23 19:28:32 +0000 | [diff] [blame] | 864 | def prepare(): |
| 865 | raise ValueError("surrogate:\uDCff") |
| 866 | |
| 867 | try: |
| 868 | subprocess.call( |
| 869 | [sys.executable, "-c", "pass"], |
| 870 | preexec_fn=prepare) |
| 871 | except ValueError as err: |
| 872 | # Pure Python implementations keeps the message |
| 873 | self.assertIsNone(subprocess._posixsubprocess) |
| 874 | self.assertEqual(str(err), "surrogate:\uDCff") |
| 875 | except RuntimeError as err: |
| 876 | # _posixsubprocess uses a default message |
| 877 | self.assertIsNotNone(subprocess._posixsubprocess) |
| 878 | self.assertEqual(str(err), "Exception occurred in preexec_fn.") |
| 879 | else: |
| 880 | self.fail("Expected ValueError or RuntimeError") |
| 881 | |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 882 | def test_undecodable_env(self): |
| 883 | for key, value in (('test', 'abc\uDCFF'), ('test\uDCFF', '42')): |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 884 | # test str with surrogates |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 885 | script = "import os; print(ascii(os.getenv(%s)))" % repr(key) |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 886 | env = os.environ.copy() |
| 887 | env[key] = value |
Antoine Pitrou | 84e751a | 2010-09-20 00:12:19 +0000 | [diff] [blame] | 888 | # Force surrogate-escaping of \xFF in the child process; |
| 889 | # otherwise it can be decoded as-is if the default locale |
| 890 | # is latin-1. |
| 891 | env['PYTHONFSENCODING'] = 'ascii' |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 892 | stdout = subprocess.check_output( |
| 893 | [sys.executable, "-c", script], |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 894 | env=env) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 895 | stdout = stdout.rstrip(b'\n\r') |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 896 | self.assertEquals(stdout.decode('ascii'), ascii(value)) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 897 | |
| 898 | # test bytes |
| 899 | key = key.encode("ascii", "surrogateescape") |
| 900 | value = value.encode("ascii", "surrogateescape") |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 901 | script = "import os; print(ascii(os.getenvb(%s)))" % repr(key) |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 902 | env = os.environ.copy() |
| 903 | env[key] = value |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 904 | stdout = subprocess.check_output( |
| 905 | [sys.executable, "-c", script], |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 906 | env=env) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 907 | stdout = stdout.rstrip(b'\n\r') |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 908 | self.assertEquals(stdout.decode('ascii'), ascii(value)) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 909 | |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 910 | def test_bytes_program(self): |
| 911 | abs_program = os.fsencode(sys.executable) |
| 912 | path, program = os.path.split(sys.executable) |
| 913 | program = os.fsencode(program) |
| 914 | |
| 915 | # absolute bytes path |
| 916 | exitcode = subprocess.call([abs_program, "-c", "pass"]) |
| 917 | self.assertEquals(exitcode, 0) |
| 918 | |
| 919 | # bytes program, unicode PATH |
| 920 | env = os.environ.copy() |
| 921 | env["PATH"] = path |
| 922 | exitcode = subprocess.call([program, "-c", "pass"], env=env) |
| 923 | self.assertEquals(exitcode, 0) |
| 924 | |
| 925 | # bytes program, bytes PATH |
| 926 | envb = os.environb.copy() |
| 927 | envb[b"PATH"] = os.fsencode(path) |
| 928 | exitcode = subprocess.call([program, "-c", "pass"], env=envb) |
| 929 | self.assertEquals(exitcode, 0) |
| 930 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 931 | |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 932 | @unittest.skipUnless(mswindows, "Windows specific tests") |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 933 | class Win32ProcessTestCase(BaseTestCase): |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 934 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 935 | def test_startupinfo(self): |
| 936 | # startupinfo argument |
| 937 | # We uses hardcoded constants, because we do not want to |
| 938 | # depend on win32all. |
| 939 | STARTF_USESHOWWINDOW = 1 |
| 940 | SW_MAXIMIZE = 3 |
| 941 | startupinfo = subprocess.STARTUPINFO() |
| 942 | startupinfo.dwFlags = STARTF_USESHOWWINDOW |
| 943 | startupinfo.wShowWindow = SW_MAXIMIZE |
| 944 | # Since Python is a console process, it won't be affected |
| 945 | # by wShowWindow, but the argument should be silently |
| 946 | # ignored |
| 947 | subprocess.call([sys.executable, "-c", "import sys; sys.exit(0)"], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 948 | startupinfo=startupinfo) |
| 949 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 950 | def test_creationflags(self): |
| 951 | # creationflags argument |
| 952 | CREATE_NEW_CONSOLE = 16 |
| 953 | sys.stderr.write(" a DOS box should flash briefly ...\n") |
| 954 | subprocess.call(sys.executable + |
| 955 | ' -c "import time; time.sleep(0.25)"', |
| 956 | creationflags=CREATE_NEW_CONSOLE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 957 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 958 | def test_invalid_args(self): |
| 959 | # invalid arguments should raise ValueError |
| 960 | self.assertRaises(ValueError, subprocess.call, |
| 961 | [sys.executable, "-c", |
| 962 | "import sys; sys.exit(47)"], |
| 963 | preexec_fn=lambda: 1) |
| 964 | self.assertRaises(ValueError, subprocess.call, |
| 965 | [sys.executable, "-c", |
| 966 | "import sys; sys.exit(47)"], |
| 967 | stdout=subprocess.PIPE, |
| 968 | close_fds=True) |
| 969 | |
| 970 | def test_close_fds(self): |
| 971 | # close file descriptors |
| 972 | rc = subprocess.call([sys.executable, "-c", |
| 973 | "import sys; sys.exit(47)"], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 974 | close_fds=True) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 975 | self.assertEqual(rc, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 976 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 977 | def test_shell_sequence(self): |
| 978 | # Run command through the shell (sequence) |
| 979 | newenv = os.environ.copy() |
| 980 | newenv["FRUIT"] = "physalis" |
| 981 | p = subprocess.Popen(["set"], shell=1, |
| 982 | stdout=subprocess.PIPE, |
| 983 | env=newenv) |
| 984 | self.assertIn(b"physalis", p.stdout.read()) |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 985 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 986 | def test_shell_string(self): |
| 987 | # Run command through the shell (string) |
| 988 | newenv = os.environ.copy() |
| 989 | newenv["FRUIT"] = "physalis" |
| 990 | p = subprocess.Popen("set", shell=1, |
| 991 | stdout=subprocess.PIPE, |
| 992 | env=newenv) |
| 993 | self.assertIn(b"physalis", p.stdout.read()) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 994 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 995 | def test_call_string(self): |
| 996 | # call() function with string argument on Windows |
| 997 | rc = subprocess.call(sys.executable + |
| 998 | ' -c "import sys; sys.exit(47)"') |
| 999 | self.assertEqual(rc, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1000 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 1001 | def _kill_process(self, method, *args): |
| 1002 | # Some win32 buildbot raises EOFError if stdin is inherited |
Antoine Pitrou | a4024e2 | 2010-09-24 18:57:01 +0000 | [diff] [blame^] | 1003 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 1004 | import sys, time |
| 1005 | sys.stdout.write('x\\n') |
| 1006 | sys.stdout.flush() |
| 1007 | time.sleep(30) |
| 1008 | """], |
| 1009 | stdin=subprocess.PIPE, |
| 1010 | stdout=subprocess.PIPE, |
| 1011 | stderr=subprocess.PIPE) |
| 1012 | # Wait for the interpreter to be completely initialized before |
| 1013 | # sending any signal. |
| 1014 | p.stdout.read(1) |
| 1015 | getattr(p, method)(*args) |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 1016 | _, stderr = p.communicate() |
| 1017 | self.assertStderrEqual(stderr, b'') |
Antoine Pitrou | a4024e2 | 2010-09-24 18:57:01 +0000 | [diff] [blame^] | 1018 | returncode = p.wait() |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 1019 | self.assertNotEqual(returncode, 0) |
| 1020 | |
| 1021 | def test_send_signal(self): |
| 1022 | self._kill_process('send_signal', signal.SIGTERM) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 1023 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1024 | def test_kill(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 1025 | self._kill_process('kill') |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 1026 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1027 | def test_terminate(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 1028 | self._kill_process('terminate') |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 1029 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1030 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1031 | # The module says: |
| 1032 | # "NB This only works (and is only relevant) for UNIX." |
| 1033 | # |
| 1034 | # Actually, getoutput should work on any platform with an os.popen, but |
| 1035 | # I'll take the comment as given, and skip this suite. |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 1036 | @unittest.skipUnless(os.name == 'posix', "only relevant for UNIX") |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1037 | class CommandTests(unittest.TestCase): |
| 1038 | def test_getoutput(self): |
| 1039 | self.assertEqual(subprocess.getoutput('echo xyzzy'), 'xyzzy') |
| 1040 | self.assertEqual(subprocess.getstatusoutput('echo xyzzy'), |
| 1041 | (0, 'xyzzy')) |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1042 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1043 | # we use mkdtemp in the next line to create an empty directory |
| 1044 | # under our exclusive control; from that, we can invent a pathname |
| 1045 | # that we _know_ won't exist. This is guaranteed to fail. |
| 1046 | dir = None |
| 1047 | try: |
| 1048 | dir = tempfile.mkdtemp() |
| 1049 | name = os.path.join(dir, "foo") |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1050 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1051 | status, output = subprocess.getstatusoutput('cat ' + name) |
| 1052 | self.assertNotEqual(status, 0) |
| 1053 | finally: |
| 1054 | if dir is not None: |
| 1055 | os.rmdir(dir) |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1056 | |
Gregory P. Smith | d06fa47 | 2009-07-04 02:46:54 +0000 | [diff] [blame] | 1057 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1058 | @unittest.skipUnless(getattr(subprocess, '_has_poll', False), |
| 1059 | "poll system call not supported") |
| 1060 | class ProcessTestCaseNoPoll(ProcessTestCase): |
| 1061 | def setUp(self): |
| 1062 | subprocess._has_poll = False |
| 1063 | ProcessTestCase.setUp(self) |
Gregory P. Smith | d06fa47 | 2009-07-04 02:46:54 +0000 | [diff] [blame] | 1064 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1065 | def tearDown(self): |
| 1066 | subprocess._has_poll = True |
| 1067 | ProcessTestCase.tearDown(self) |
Gregory P. Smith | d06fa47 | 2009-07-04 02:46:54 +0000 | [diff] [blame] | 1068 | |
| 1069 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1070 | @unittest.skipUnless(getattr(subprocess, '_posixsubprocess', False), |
| 1071 | "_posixsubprocess extension module not found.") |
| 1072 | class ProcessTestCasePOSIXPurePython(ProcessTestCase, POSIXProcessTestCase): |
| 1073 | def setUp(self): |
| 1074 | subprocess._posixsubprocess = None |
| 1075 | ProcessTestCase.setUp(self) |
| 1076 | POSIXProcessTestCase.setUp(self) |
| 1077 | |
| 1078 | def tearDown(self): |
| 1079 | subprocess._posixsubprocess = sys.modules['_posixsubprocess'] |
| 1080 | POSIXProcessTestCase.tearDown(self) |
| 1081 | ProcessTestCase.tearDown(self) |
| 1082 | |
| 1083 | |
Gregory P. Smith | a59c59f | 2010-03-01 00:17:40 +0000 | [diff] [blame] | 1084 | class HelperFunctionTests(unittest.TestCase): |
Gregory P. Smith | af6d3b8 | 2010-03-01 02:56:44 +0000 | [diff] [blame] | 1085 | @unittest.skipIf(mswindows, "errno and EINTR make no sense on windows") |
Gregory P. Smith | a59c59f | 2010-03-01 00:17:40 +0000 | [diff] [blame] | 1086 | def test_eintr_retry_call(self): |
| 1087 | record_calls = [] |
| 1088 | def fake_os_func(*args): |
| 1089 | record_calls.append(args) |
| 1090 | if len(record_calls) == 2: |
| 1091 | raise OSError(errno.EINTR, "fake interrupted system call") |
| 1092 | return tuple(reversed(args)) |
| 1093 | |
| 1094 | self.assertEqual((999, 256), |
| 1095 | subprocess._eintr_retry_call(fake_os_func, 256, 999)) |
| 1096 | self.assertEqual([(256, 999)], record_calls) |
| 1097 | # This time there will be an EINTR so it will loop once. |
| 1098 | self.assertEqual((666,), |
| 1099 | subprocess._eintr_retry_call(fake_os_func, 666)) |
| 1100 | self.assertEqual([(256, 999), (666,), (666,)], record_calls) |
| 1101 | |
| 1102 | |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 1103 | @unittest.skipUnless(mswindows, "Windows-specific tests") |
| 1104 | class CommandsWithSpaces (BaseTestCase): |
| 1105 | |
| 1106 | def setUp(self): |
| 1107 | super().setUp() |
| 1108 | f, fname = mkstemp(".py", "te st") |
| 1109 | self.fname = fname.lower () |
| 1110 | os.write(f, b"import sys;" |
| 1111 | b"sys.stdout.write('%d %s' % (len(sys.argv), [a.lower () for a in sys.argv]))" |
| 1112 | ) |
| 1113 | os.close(f) |
| 1114 | |
| 1115 | def tearDown(self): |
| 1116 | os.remove(self.fname) |
| 1117 | super().tearDown() |
| 1118 | |
| 1119 | def with_spaces(self, *args, **kwargs): |
| 1120 | kwargs['stdout'] = subprocess.PIPE |
| 1121 | p = subprocess.Popen(*args, **kwargs) |
| 1122 | self.assertEqual( |
| 1123 | p.stdout.read ().decode("mbcs"), |
| 1124 | "2 [%r, 'ab cd']" % self.fname |
| 1125 | ) |
| 1126 | |
| 1127 | def test_shell_string_with_spaces(self): |
| 1128 | # call() function with string argument with spaces on Windows |
Brian Curtin | d835cf1 | 2010-08-13 20:42:57 +0000 | [diff] [blame] | 1129 | self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname, |
| 1130 | "ab cd"), shell=1) |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 1131 | |
| 1132 | def test_shell_sequence_with_spaces(self): |
| 1133 | # call() function with sequence argument with spaces on Windows |
Brian Curtin | d835cf1 | 2010-08-13 20:42:57 +0000 | [diff] [blame] | 1134 | self.with_spaces([sys.executable, self.fname, "ab cd"], shell=1) |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 1135 | |
| 1136 | def test_noshell_string_with_spaces(self): |
| 1137 | # call() function with string argument with spaces on Windows |
| 1138 | self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname, |
| 1139 | "ab cd")) |
| 1140 | |
| 1141 | def test_noshell_sequence_with_spaces(self): |
| 1142 | # call() function with sequence argument with spaces on Windows |
| 1143 | self.with_spaces([sys.executable, self.fname, "ab cd"]) |
| 1144 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1145 | def test_main(): |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1146 | unit_tests = (ProcessTestCase, |
| 1147 | POSIXProcessTestCase, |
| 1148 | Win32ProcessTestCase, |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1149 | ProcessTestCasePOSIXPurePython, |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1150 | CommandTests, |
Gregory P. Smith | a59c59f | 2010-03-01 00:17:40 +0000 | [diff] [blame] | 1151 | ProcessTestCaseNoPoll, |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 1152 | HelperFunctionTests, |
| 1153 | CommandsWithSpaces) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1154 | |
Gregory P. Smith | d06fa47 | 2009-07-04 02:46:54 +0000 | [diff] [blame] | 1155 | support.run_unittest(*unit_tests) |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1156 | support.reap_children() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1157 | |
| 1158 | if __name__ == "__main__": |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 1159 | test_main() |