Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1 | import unittest |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 1ef8c7e | 2016-06-04 00:22:17 +0000 | [diff] [blame] | 2 | from unittest import mock |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 3 | from test import support |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 4 | import subprocess |
| 5 | import sys |
| 6 | import signal |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 7 | import io |
Alexey Izbyshev | 0e7144b | 2018-03-26 22:49:35 +0300 | [diff] [blame] | 8 | import itertools |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 9 | import os |
Gregory P. Smith | a59c59f | 2010-03-01 00:17:40 +0000 | [diff] [blame] | 10 | import errno |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 11 | import tempfile |
| 12 | import time |
Gregory P. Smith | 580d278 | 2019-09-11 04:23:05 -0500 | [diff] [blame] | 13 | import traceback |
Charles-François Natali | 3a4586a | 2013-11-08 19:56:59 +0100 | [diff] [blame] | 14 | import selectors |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 15 | import sysconfig |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 16 | import select |
Gregory P. Smith | 81ce685 | 2011-03-15 02:04:11 -0400 | [diff] [blame] | 17 | import shutil |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 18 | import threading |
Benjamin Peterson | b870aa1 | 2011-12-10 12:44:25 -0500 | [diff] [blame] | 19 | import gc |
Andrew Svetlov | 47ec25d | 2012-08-19 16:25:37 +0300 | [diff] [blame] | 20 | import textwrap |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 21 | import json |
Serhiy Storchaka | b21d155 | 2018-03-02 11:53:51 +0200 | [diff] [blame] | 22 | from test.support import FakePath |
Benjamin Peterson | 964561b | 2011-12-10 12:31:42 -0500 | [diff] [blame] | 23 | |
| 24 | try: |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 25 | import _testcapi |
| 26 | except ImportError: |
| 27 | _testcapi = None |
| 28 | |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 29 | try: |
| 30 | import pwd |
| 31 | except ImportError: |
| 32 | pwd = None |
| 33 | try: |
| 34 | import grp |
| 35 | except ImportError: |
| 36 | grp = None |
Victor Stinner | 8f4ef3b | 2019-07-01 18:28:25 +0200 | [diff] [blame] | 37 | |
Steve Dower | 22d0698 | 2016-09-06 19:38:15 -0700 | [diff] [blame] | 38 | if support.PGO: |
| 39 | raise unittest.SkipTest("test is not helpful for PGO") |
| 40 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 41 | mswindows = (sys.platform == "win32") |
| 42 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 43 | # |
| 44 | # Depends on the following external programs: Python |
| 45 | # |
| 46 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 47 | if mswindows: |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 48 | SETBINARY = ('import msvcrt; msvcrt.setmode(sys.stdout.fileno(), ' |
| 49 | 'os.O_BINARY);') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 50 | else: |
| 51 | SETBINARY = '' |
| 52 | |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 53 | NONEXISTING_CMD = ('nonexisting_i_hope',) |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 54 | # Ignore errors that indicate the command was not found |
| 55 | NONEXISTING_ERRORS = (FileNotFoundError, NotADirectoryError, PermissionError) |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 56 | |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 57 | ZERO_RETURN_CMD = (sys.executable, '-c', 'pass') |
| 58 | |
| 59 | |
| 60 | def setUpModule(): |
| 61 | shell_true = shutil.which('true') |
Pablo Galindo | 46113e0 | 2019-10-13 02:40:24 +0100 | [diff] [blame] | 62 | if shell_true is None: |
| 63 | return |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 64 | if (os.access(shell_true, os.X_OK) and |
| 65 | subprocess.run([shell_true]).returncode == 0): |
| 66 | global ZERO_RETURN_CMD |
| 67 | ZERO_RETURN_CMD = (shell_true,) # Faster than Python startup. |
| 68 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 69 | |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 70 | class BaseTestCase(unittest.TestCase): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 71 | def setUp(self): |
| 72 | # Try to minimize the number of children we have so this test |
| 73 | # doesn't crash on some buildbots (Alphas in particular). |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 74 | support.reap_children() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 75 | |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 76 | def tearDown(self): |
Ruslan Kuprieiev | 042821a | 2019-06-28 19:12:16 +0300 | [diff] [blame] | 77 | if not mswindows: |
| 78 | # subprocess._active is not used on Windows and is set to None. |
| 79 | for inst in subprocess._active: |
| 80 | inst.wait() |
| 81 | subprocess._cleanup() |
| 82 | self.assertFalse( |
| 83 | subprocess._active, "subprocess._active not empty" |
| 84 | ) |
Victor Stinner | cc42c12 | 2017-07-28 18:00:22 +0200 | [diff] [blame] | 85 | self.doCleanups() |
| 86 | support.reap_children() |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 87 | |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 88 | |
Gregory P. Smith | 3d8e776 | 2012-11-10 22:32:22 -0800 | [diff] [blame] | 89 | class PopenTestException(Exception): |
| 90 | pass |
| 91 | |
| 92 | |
| 93 | class PopenExecuteChildRaises(subprocess.Popen): |
| 94 | """Popen subclass for testing cleanup of subprocess.PIPE filehandles when |
| 95 | _execute_child fails. |
| 96 | """ |
| 97 | def _execute_child(self, *args, **kwargs): |
| 98 | raise PopenTestException("Forced Exception for Test") |
| 99 | |
| 100 | |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 101 | class ProcessTestCase(BaseTestCase): |
| 102 | |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 103 | def test_io_buffered_by_default(self): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 104 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 105 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, |
| 106 | stderr=subprocess.PIPE) |
| 107 | try: |
| 108 | self.assertIsInstance(p.stdin, io.BufferedIOBase) |
| 109 | self.assertIsInstance(p.stdout, io.BufferedIOBase) |
| 110 | self.assertIsInstance(p.stderr, io.BufferedIOBase) |
| 111 | finally: |
Gregory P. Smith | a1b9ed3 | 2013-03-23 11:54:22 -0700 | [diff] [blame] | 112 | p.stdin.close() |
| 113 | p.stdout.close() |
| 114 | p.stderr.close() |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 115 | p.wait() |
| 116 | |
| 117 | def test_io_unbuffered_works(self): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 118 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 119 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, |
| 120 | stderr=subprocess.PIPE, bufsize=0) |
| 121 | try: |
| 122 | self.assertIsInstance(p.stdin, io.RawIOBase) |
| 123 | self.assertIsInstance(p.stdout, io.RawIOBase) |
| 124 | self.assertIsInstance(p.stderr, io.RawIOBase) |
| 125 | finally: |
Gregory P. Smith | a1b9ed3 | 2013-03-23 11:54:22 -0700 | [diff] [blame] | 126 | p.stdin.close() |
| 127 | p.stdout.close() |
| 128 | p.stderr.close() |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 129 | p.wait() |
| 130 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 131 | def test_call_seq(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 132 | # call() function with sequence argument |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 133 | rc = subprocess.call([sys.executable, "-c", |
| 134 | "import sys; sys.exit(47)"]) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 135 | self.assertEqual(rc, 47) |
| 136 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 137 | def test_call_timeout(self): |
| 138 | # call() function with timeout argument; we want to test that the child |
| 139 | # process gets killed when the timeout expires. If the child isn't |
| 140 | # killed, this call will deadlock since subprocess.call waits for the |
| 141 | # child. |
| 142 | self.assertRaises(subprocess.TimeoutExpired, subprocess.call, |
| 143 | [sys.executable, "-c", "while True: pass"], |
| 144 | timeout=0.1) |
| 145 | |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 146 | def test_check_call_zero(self): |
| 147 | # check_call() function with zero return code |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 148 | rc = subprocess.check_call(ZERO_RETURN_CMD) |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 149 | self.assertEqual(rc, 0) |
| 150 | |
| 151 | def test_check_call_nonzero(self): |
| 152 | # check_call() function with non-zero return code |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 153 | with self.assertRaises(subprocess.CalledProcessError) as c: |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 154 | subprocess.check_call([sys.executable, "-c", |
| 155 | "import sys; sys.exit(47)"]) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 156 | self.assertEqual(c.exception.returncode, 47) |
Peter Astrand | 454f767 | 2005-01-01 09:36:35 +0000 | [diff] [blame] | 157 | |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 158 | def test_check_output(self): |
| 159 | # check_output() function with zero return code |
| 160 | output = subprocess.check_output( |
| 161 | [sys.executable, "-c", "print('BDFL')"]) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 162 | self.assertIn(b'BDFL', output) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 163 | |
| 164 | def test_check_output_nonzero(self): |
| 165 | # check_call() function with non-zero return code |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 166 | with self.assertRaises(subprocess.CalledProcessError) as c: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 167 | subprocess.check_output( |
| 168 | [sys.executable, "-c", "import sys; sys.exit(5)"]) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 169 | self.assertEqual(c.exception.returncode, 5) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 170 | |
| 171 | def test_check_output_stderr(self): |
| 172 | # check_output() function stderr redirected to stdout |
| 173 | output = subprocess.check_output( |
| 174 | [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"], |
| 175 | stderr=subprocess.STDOUT) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 176 | self.assertIn(b'BDFL', output) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 177 | |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 178 | def test_check_output_stdin_arg(self): |
| 179 | # check_output() can be called with stdin set to a file |
| 180 | tf = tempfile.TemporaryFile() |
| 181 | self.addCleanup(tf.close) |
| 182 | tf.write(b'pear') |
| 183 | tf.seek(0) |
| 184 | output = subprocess.check_output( |
| 185 | [sys.executable, "-c", |
| 186 | "import sys; sys.stdout.write(sys.stdin.read().upper())"], |
| 187 | stdin=tf) |
| 188 | self.assertIn(b'PEAR', output) |
| 189 | |
| 190 | def test_check_output_input_arg(self): |
| 191 | # check_output() can be called with input set to a string |
| 192 | output = subprocess.check_output( |
| 193 | [sys.executable, "-c", |
| 194 | "import sys; sys.stdout.write(sys.stdin.read().upper())"], |
| 195 | input=b'pear') |
| 196 | self.assertIn(b'PEAR', output) |
| 197 | |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 198 | def test_check_output_stdout_arg(self): |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 199 | # check_output() refuses to accept 'stdout' argument |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 200 | with self.assertRaises(ValueError) as c: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 201 | output = subprocess.check_output( |
| 202 | [sys.executable, "-c", "print('will not be run')"], |
| 203 | stdout=sys.stdout) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 204 | self.fail("Expected ValueError when stdout arg supplied.") |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 205 | self.assertIn('stdout', c.exception.args[0]) |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 206 | |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 207 | def test_check_output_stdin_with_input_arg(self): |
| 208 | # check_output() refuses to accept 'stdin' with 'input' |
| 209 | tf = tempfile.TemporaryFile() |
| 210 | self.addCleanup(tf.close) |
| 211 | tf.write(b'pear') |
| 212 | tf.seek(0) |
| 213 | with self.assertRaises(ValueError) as c: |
| 214 | output = subprocess.check_output( |
| 215 | [sys.executable, "-c", "print('will not be run')"], |
| 216 | stdin=tf, input=b'hare') |
| 217 | self.fail("Expected ValueError when stdin and input args supplied.") |
| 218 | self.assertIn('stdin', c.exception.args[0]) |
| 219 | self.assertIn('input', c.exception.args[0]) |
| 220 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 221 | def test_check_output_timeout(self): |
| 222 | # check_output() function with timeout arg |
| 223 | with self.assertRaises(subprocess.TimeoutExpired) as c: |
| 224 | output = subprocess.check_output( |
| 225 | [sys.executable, "-c", |
Victor Stinner | 149b1c7 | 2011-06-06 23:43:02 +0200 | [diff] [blame] | 226 | "import sys, time\n" |
| 227 | "sys.stdout.write('BDFL')\n" |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 228 | "sys.stdout.flush()\n" |
Victor Stinner | 149b1c7 | 2011-06-06 23:43:02 +0200 | [diff] [blame] | 229 | "time.sleep(3600)"], |
Reid Kleckner | da9ac72 | 2011-03-16 17:08:21 -0400 | [diff] [blame] | 230 | # Some heavily loaded buildbots (sparc Debian 3.x) require |
| 231 | # this much time to start and print. |
| 232 | timeout=3) |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 233 | self.fail("Expected TimeoutExpired.") |
| 234 | self.assertEqual(c.exception.output, b'BDFL') |
| 235 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 236 | def test_call_kwargs(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 237 | # call() function with keyword args |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 238 | newenv = os.environ.copy() |
| 239 | newenv["FRUIT"] = "banana" |
| 240 | rc = subprocess.call([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 241 | 'import sys, os;' |
| 242 | 'sys.exit(os.getenv("FRUIT")=="banana")'], |
| 243 | env=newenv) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 244 | self.assertEqual(rc, 1) |
| 245 | |
Victor Stinner | 87b9bc3 | 2011-06-01 00:57:47 +0200 | [diff] [blame] | 246 | def test_invalid_args(self): |
| 247 | # Popen() called with invalid arguments should raise TypeError |
| 248 | # but Popen.__del__ should not complain (issue #12085) |
| 249 | with support.captured_stderr() as s: |
| 250 | self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1) |
| 251 | argcount = subprocess.Popen.__init__.__code__.co_argcount |
| 252 | too_many_args = [0] * (argcount + 1) |
| 253 | self.assertRaises(TypeError, subprocess.Popen, *too_many_args) |
| 254 | self.assertEqual(s.getvalue(), '') |
| 255 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 256 | def test_stdin_none(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 257 | # .stdin is None when not redirected |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 258 | p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 259 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
Brian Curtin | 3c6a951 | 2010-11-05 03:58:52 +0000 | [diff] [blame] | 260 | self.addCleanup(p.stdout.close) |
| 261 | self.addCleanup(p.stderr.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 262 | p.wait() |
| 263 | self.assertEqual(p.stdin, None) |
| 264 | |
| 265 | def test_stdout_none(self): |
Ezio Melotti | 42a541b | 2013-03-11 05:53:34 +0200 | [diff] [blame] | 266 | # .stdout is None when not redirected, and the child's stdout will |
| 267 | # be inherited from the parent. In order to test this we run a |
| 268 | # subprocess in a subprocess: |
| 269 | # this_test |
| 270 | # \-- subprocess created by this test (parent) |
| 271 | # \-- subprocess created by the parent subprocess (child) |
| 272 | # The parent doesn't specify stdout, so the child will use the |
| 273 | # parent's stdout. This test checks that the message printed by the |
| 274 | # child goes to the parent stdout. The parent also checks that the |
| 275 | # child's stdout is None. See #11963. |
| 276 | code = ('import sys; from subprocess import Popen, PIPE;' |
| 277 | 'p = Popen([sys.executable, "-c", "print(\'test_stdout_none\')"],' |
| 278 | ' stdin=PIPE, stderr=PIPE);' |
| 279 | 'p.wait(); assert p.stdout is None;') |
| 280 | p = subprocess.Popen([sys.executable, "-c", code], |
| 281 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 282 | self.addCleanup(p.stdout.close) |
Brian Curtin | 3c6a951 | 2010-11-05 03:58:52 +0000 | [diff] [blame] | 283 | self.addCleanup(p.stderr.close) |
Ezio Melotti | 42a541b | 2013-03-11 05:53:34 +0200 | [diff] [blame] | 284 | out, err = p.communicate() |
| 285 | self.assertEqual(p.returncode, 0, err) |
| 286 | self.assertEqual(out.rstrip(), b'test_stdout_none') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 287 | |
| 288 | def test_stderr_none(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 289 | # .stderr is None when not redirected |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 290 | p = subprocess.Popen([sys.executable, "-c", 'print("banana")'], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 291 | stdin=subprocess.PIPE, stdout=subprocess.PIPE) |
Brian Curtin | 3c6a951 | 2010-11-05 03:58:52 +0000 | [diff] [blame] | 292 | self.addCleanup(p.stdout.close) |
| 293 | self.addCleanup(p.stdin.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 294 | p.wait() |
| 295 | self.assertEqual(p.stderr, None) |
| 296 | |
Chris Jerdonek | 776cb19 | 2012-10-08 15:56:43 -0700 | [diff] [blame] | 297 | def _assert_python(self, pre_args, **kwargs): |
| 298 | # We include sys.exit() to prevent the test runner from hanging |
| 299 | # whenever python is found. |
| 300 | args = pre_args + ["import sys; sys.exit(47)"] |
| 301 | p = subprocess.Popen(args, **kwargs) |
| 302 | p.wait() |
| 303 | self.assertEqual(47, p.returncode) |
| 304 | |
| 305 | def test_executable(self): |
| 306 | # Check that the executable argument works. |
Chris Jerdonek | 86b0fb2 | 2012-10-09 13:17:49 -0700 | [diff] [blame] | 307 | # |
| 308 | # On Unix (non-Mac and non-Windows), Python looks at args[0] to |
| 309 | # determine where its standard library is, so we need the directory |
| 310 | # of args[0] to be valid for the Popen() call to Python to succeed. |
| 311 | # See also issue #16170 and issue #7774. |
| 312 | doesnotexist = os.path.join(os.path.dirname(sys.executable), |
| 313 | "doesnotexist") |
| 314 | self._assert_python([doesnotexist, "-c"], executable=sys.executable) |
Chris Jerdonek | 776cb19 | 2012-10-08 15:56:43 -0700 | [diff] [blame] | 315 | |
Serhiy Storchaka | 9e3c452 | 2019-05-28 22:49:35 +0300 | [diff] [blame] | 316 | def test_bytes_executable(self): |
| 317 | doesnotexist = os.path.join(os.path.dirname(sys.executable), |
| 318 | "doesnotexist") |
| 319 | self._assert_python([doesnotexist, "-c"], |
| 320 | executable=os.fsencode(sys.executable)) |
| 321 | |
| 322 | def test_pathlike_executable(self): |
| 323 | doesnotexist = os.path.join(os.path.dirname(sys.executable), |
| 324 | "doesnotexist") |
| 325 | self._assert_python([doesnotexist, "-c"], |
| 326 | executable=FakePath(sys.executable)) |
| 327 | |
Chris Jerdonek | 776cb19 | 2012-10-08 15:56:43 -0700 | [diff] [blame] | 328 | def test_executable_takes_precedence(self): |
| 329 | # Check that the executable argument takes precedence over args[0]. |
| 330 | # |
| 331 | # Verify first that the call succeeds without the executable arg. |
| 332 | pre_args = [sys.executable, "-c"] |
| 333 | self._assert_python(pre_args) |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 334 | self.assertRaises(NONEXISTING_ERRORS, |
Xavier de Gaye | 38c8b7d | 2016-11-14 17:14:42 +0100 | [diff] [blame] | 335 | self._assert_python, pre_args, |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 336 | executable=NONEXISTING_CMD[0]) |
Chris Jerdonek | 776cb19 | 2012-10-08 15:56:43 -0700 | [diff] [blame] | 337 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 338 | @unittest.skipIf(mswindows, "executable argument replaces shell") |
Chris Jerdonek | 776cb19 | 2012-10-08 15:56:43 -0700 | [diff] [blame] | 339 | def test_executable_replaces_shell(self): |
| 340 | # Check that the executable argument replaces the default shell |
| 341 | # when shell=True. |
| 342 | self._assert_python([], executable=sys.executable, shell=True) |
| 343 | |
Serhiy Storchaka | 9e3c452 | 2019-05-28 22:49:35 +0300 | [diff] [blame] | 344 | @unittest.skipIf(mswindows, "executable argument replaces shell") |
| 345 | def test_bytes_executable_replaces_shell(self): |
| 346 | self._assert_python([], executable=os.fsencode(sys.executable), |
| 347 | shell=True) |
| 348 | |
| 349 | @unittest.skipIf(mswindows, "executable argument replaces shell") |
| 350 | def test_pathlike_executable_replaces_shell(self): |
| 351 | self._assert_python([], executable=FakePath(sys.executable), |
| 352 | shell=True) |
| 353 | |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 354 | # For use in the test_cwd* tests below. |
| 355 | def _normalize_cwd(self, cwd): |
| 356 | # Normalize an expected cwd (for Tru64 support). |
| 357 | # We can't use os.path.realpath since it doesn't expand Tru64 {memb} |
| 358 | # strings. See bug #1063571. |
Serhiy Storchaka | 2a23adf | 2015-09-06 14:13:25 +0300 | [diff] [blame] | 359 | with support.change_cwd(cwd): |
| 360 | return os.getcwd() |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 361 | |
| 362 | # For use in the test_cwd* tests below. |
| 363 | def _split_python_path(self): |
| 364 | # Return normalized (python_dir, python_base). |
| 365 | python_path = os.path.realpath(sys.executable) |
| 366 | return os.path.split(python_path) |
| 367 | |
| 368 | # For use in the test_cwd* tests below. |
| 369 | def _assert_cwd(self, expected_cwd, python_arg, **kwargs): |
| 370 | # Invoke Python via Popen, and assert that (1) the call succeeds, |
| 371 | # and that (2) the current working directory of the child process |
| 372 | # matches *expected_cwd*. |
| 373 | p = subprocess.Popen([python_arg, "-c", |
| 374 | "import os, sys; " |
| 375 | "sys.stdout.write(os.getcwd()); " |
| 376 | "sys.exit(47)"], |
| 377 | stdout=subprocess.PIPE, |
| 378 | **kwargs) |
| 379 | self.addCleanup(p.stdout.close) |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 380 | p.wait() |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 381 | self.assertEqual(47, p.returncode) |
| 382 | normcase = os.path.normcase |
| 383 | self.assertEqual(normcase(expected_cwd), |
| 384 | normcase(p.stdout.read().decode("utf-8"))) |
| 385 | |
| 386 | def test_cwd(self): |
| 387 | # Check that cwd changes the cwd for the child process. |
| 388 | temp_dir = tempfile.gettempdir() |
| 389 | temp_dir = self._normalize_cwd(temp_dir) |
| 390 | self._assert_cwd(temp_dir, sys.executable, cwd=temp_dir) |
| 391 | |
Serhiy Storchaka | 9e3c452 | 2019-05-28 22:49:35 +0300 | [diff] [blame] | 392 | def test_cwd_with_bytes(self): |
| 393 | temp_dir = tempfile.gettempdir() |
| 394 | temp_dir = self._normalize_cwd(temp_dir) |
| 395 | self._assert_cwd(temp_dir, sys.executable, cwd=os.fsencode(temp_dir)) |
| 396 | |
Sayan Chowdhury | d5c11f7 | 2017-02-26 22:36:10 +0530 | [diff] [blame] | 397 | def test_cwd_with_pathlike(self): |
| 398 | temp_dir = tempfile.gettempdir() |
| 399 | temp_dir = self._normalize_cwd(temp_dir) |
Serhiy Storchaka | b21d155 | 2018-03-02 11:53:51 +0200 | [diff] [blame] | 400 | self._assert_cwd(temp_dir, sys.executable, cwd=FakePath(temp_dir)) |
Sayan Chowdhury | d5c11f7 | 2017-02-26 22:36:10 +0530 | [diff] [blame] | 401 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 402 | @unittest.skipIf(mswindows, "pending resolution of issue #15533") |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 403 | def test_cwd_with_relative_arg(self): |
| 404 | # Check that Popen looks for args[0] relative to cwd if args[0] |
| 405 | # is relative. |
| 406 | python_dir, python_base = self._split_python_path() |
| 407 | rel_python = os.path.join(os.curdir, python_base) |
| 408 | with support.temp_cwd() as wrong_dir: |
| 409 | # Before calling with the correct cwd, confirm that the call fails |
| 410 | # without cwd and with the wrong cwd. |
Chris Jerdonek | 28714c8 | 2012-09-30 02:15:37 -0700 | [diff] [blame] | 411 | self.assertRaises(FileNotFoundError, subprocess.Popen, |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 412 | [rel_python]) |
Chris Jerdonek | 28714c8 | 2012-09-30 02:15:37 -0700 | [diff] [blame] | 413 | self.assertRaises(FileNotFoundError, subprocess.Popen, |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 414 | [rel_python], cwd=wrong_dir) |
| 415 | python_dir = self._normalize_cwd(python_dir) |
| 416 | self._assert_cwd(python_dir, rel_python, cwd=python_dir) |
| 417 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 418 | @unittest.skipIf(mswindows, "pending resolution of issue #15533") |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 419 | def test_cwd_with_relative_executable(self): |
| 420 | # Check that Popen looks for executable relative to cwd if executable |
| 421 | # is relative (and that executable takes precedence over args[0]). |
| 422 | python_dir, python_base = self._split_python_path() |
| 423 | rel_python = os.path.join(os.curdir, python_base) |
| 424 | doesntexist = "somethingyoudonthave" |
| 425 | with support.temp_cwd() as wrong_dir: |
| 426 | # Before calling with the correct cwd, confirm that the call fails |
| 427 | # without cwd and with the wrong cwd. |
Chris Jerdonek | 28714c8 | 2012-09-30 02:15:37 -0700 | [diff] [blame] | 428 | self.assertRaises(FileNotFoundError, subprocess.Popen, |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 429 | [doesntexist], executable=rel_python) |
Chris Jerdonek | 28714c8 | 2012-09-30 02:15:37 -0700 | [diff] [blame] | 430 | self.assertRaises(FileNotFoundError, subprocess.Popen, |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 431 | [doesntexist], executable=rel_python, |
| 432 | cwd=wrong_dir) |
| 433 | python_dir = self._normalize_cwd(python_dir) |
| 434 | self._assert_cwd(python_dir, doesntexist, executable=rel_python, |
| 435 | cwd=python_dir) |
| 436 | |
| 437 | def test_cwd_with_absolute_arg(self): |
| 438 | # Check that Popen can find the executable when the cwd is wrong |
| 439 | # if args[0] is an absolute path. |
| 440 | python_dir, python_base = self._split_python_path() |
| 441 | abs_python = os.path.join(python_dir, python_base) |
| 442 | rel_python = os.path.join(os.curdir, python_base) |
Berker Peksag | ce64391 | 2015-05-06 06:33:17 +0300 | [diff] [blame] | 443 | with support.temp_dir() as wrong_dir: |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 444 | # Before calling with an absolute path, confirm that using a |
| 445 | # relative path fails. |
Chris Jerdonek | 28714c8 | 2012-09-30 02:15:37 -0700 | [diff] [blame] | 446 | self.assertRaises(FileNotFoundError, subprocess.Popen, |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 447 | [rel_python], cwd=wrong_dir) |
| 448 | wrong_dir = self._normalize_cwd(wrong_dir) |
| 449 | self._assert_cwd(wrong_dir, abs_python, cwd=wrong_dir) |
| 450 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 451 | @unittest.skipIf(sys.base_prefix != sys.prefix, |
| 452 | 'Test is not venv-compatible') |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 453 | def test_executable_with_cwd(self): |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 454 | python_dir, python_base = self._split_python_path() |
| 455 | python_dir = self._normalize_cwd(python_dir) |
| 456 | self._assert_cwd(python_dir, "somethingyoudonthave", |
| 457 | executable=sys.executable, cwd=python_dir) |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 458 | |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 459 | @unittest.skipIf(sys.base_prefix != sys.prefix, |
| 460 | 'Test is not venv-compatible') |
Ezio Melotti | 184bdfb | 2010-02-18 09:37:05 +0000 | [diff] [blame] | 461 | @unittest.skipIf(sysconfig.is_python_build(), |
| 462 | "need an installed Python. See #7774") |
| 463 | def test_executable_without_cwd(self): |
| 464 | # For a normal installation, it should work without 'cwd' |
| 465 | # argument. For test runs in the build directory, see #7774. |
Ned Deily | e92dfbf | 2013-08-02 18:02:21 -0700 | [diff] [blame] | 466 | self._assert_cwd(os.getcwd(), "somethingyoudonthave", |
| 467 | executable=sys.executable) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 468 | |
| 469 | def test_stdin_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 470 | # stdin redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 471 | p = subprocess.Popen([sys.executable, "-c", |
| 472 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 473 | stdin=subprocess.PIPE) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 474 | p.stdin.write(b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 475 | p.stdin.close() |
| 476 | p.wait() |
| 477 | self.assertEqual(p.returncode, 1) |
| 478 | |
| 479 | def test_stdin_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 480 | # stdin is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 481 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 482 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 483 | d = tf.fileno() |
Antoine Pitrou | 9cadb1b | 2008-09-15 23:02:56 +0000 | [diff] [blame] | 484 | os.write(d, b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 485 | os.lseek(d, 0, 0) |
| 486 | p = subprocess.Popen([sys.executable, "-c", |
| 487 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 488 | stdin=d) |
| 489 | p.wait() |
| 490 | self.assertEqual(p.returncode, 1) |
| 491 | |
| 492 | def test_stdin_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 493 | # stdin is set to open file object |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 494 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 495 | self.addCleanup(tf.close) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 496 | tf.write(b"pear") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 497 | tf.seek(0) |
| 498 | p = subprocess.Popen([sys.executable, "-c", |
| 499 | 'import sys; sys.exit(sys.stdin.read() == "pear")'], |
| 500 | stdin=tf) |
| 501 | p.wait() |
| 502 | self.assertEqual(p.returncode, 1) |
| 503 | |
| 504 | def test_stdout_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 505 | # stdout redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 506 | p = subprocess.Popen([sys.executable, "-c", |
| 507 | 'import sys; sys.stdout.write("orange")'], |
| 508 | stdout=subprocess.PIPE) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 509 | with p: |
| 510 | self.assertEqual(p.stdout.read(), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 511 | |
| 512 | def test_stdout_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 513 | # stdout is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 514 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 515 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 516 | d = tf.fileno() |
| 517 | p = subprocess.Popen([sys.executable, "-c", |
| 518 | 'import sys; sys.stdout.write("orange")'], |
| 519 | stdout=d) |
| 520 | p.wait() |
| 521 | os.lseek(d, 0, 0) |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 522 | self.assertEqual(os.read(d, 1024), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 523 | |
| 524 | def test_stdout_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 525 | # stdout is set to open file object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 526 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 527 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 528 | p = subprocess.Popen([sys.executable, "-c", |
| 529 | 'import sys; sys.stdout.write("orange")'], |
| 530 | stdout=tf) |
| 531 | p.wait() |
| 532 | tf.seek(0) |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 533 | self.assertEqual(tf.read(), b"orange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 534 | |
| 535 | def test_stderr_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 536 | # stderr redirection |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 537 | p = subprocess.Popen([sys.executable, "-c", |
| 538 | 'import sys; sys.stderr.write("strawberry")'], |
| 539 | stderr=subprocess.PIPE) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 540 | with p: |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 541 | self.assertEqual(p.stderr.read(), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 542 | |
| 543 | def test_stderr_filedes(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 544 | # stderr is set to open file descriptor |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 545 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 546 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 547 | d = tf.fileno() |
| 548 | p = subprocess.Popen([sys.executable, "-c", |
| 549 | 'import sys; sys.stderr.write("strawberry")'], |
| 550 | stderr=d) |
| 551 | p.wait() |
| 552 | os.lseek(d, 0, 0) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 553 | self.assertEqual(os.read(d, 1024), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 554 | |
| 555 | def test_stderr_fileobj(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 556 | # stderr is set to open file object |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 557 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 558 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 559 | p = subprocess.Popen([sys.executable, "-c", |
| 560 | 'import sys; sys.stderr.write("strawberry")'], |
| 561 | stderr=tf) |
| 562 | p.wait() |
| 563 | tf.seek(0) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 564 | self.assertEqual(tf.read(), b"strawberry") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 565 | |
Martin Panter | c763589 | 2016-05-13 01:54:44 +0000 | [diff] [blame] | 566 | def test_stderr_redirect_with_no_stdout_redirect(self): |
| 567 | # test stderr=STDOUT while stdout=None (not set) |
| 568 | |
| 569 | # - grandchild prints to stderr |
| 570 | # - child redirects grandchild's stderr to its stdout |
| 571 | # - the parent should get grandchild's stderr in child's stdout |
| 572 | p = subprocess.Popen([sys.executable, "-c", |
| 573 | 'import sys, subprocess;' |
| 574 | 'rc = subprocess.call([sys.executable, "-c",' |
| 575 | ' "import sys;"' |
| 576 | ' "sys.stderr.write(\'42\')"],' |
| 577 | ' stderr=subprocess.STDOUT);' |
| 578 | 'sys.exit(rc)'], |
| 579 | stdout=subprocess.PIPE, |
| 580 | stderr=subprocess.PIPE) |
| 581 | stdout, stderr = p.communicate() |
| 582 | #NOTE: stdout should get stderr from grandchild |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 583 | self.assertEqual(stdout, b'42') |
| 584 | self.assertEqual(stderr, b'') # should be empty |
Martin Panter | c763589 | 2016-05-13 01:54:44 +0000 | [diff] [blame] | 585 | self.assertEqual(p.returncode, 0) |
| 586 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 587 | def test_stdout_stderr_pipe(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 588 | # capture stdout and stderr to the same pipe |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 589 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 590 | 'import sys;' |
| 591 | 'sys.stdout.write("apple");' |
| 592 | 'sys.stdout.flush();' |
| 593 | 'sys.stderr.write("orange")'], |
| 594 | stdout=subprocess.PIPE, |
| 595 | stderr=subprocess.STDOUT) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 596 | with p: |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 597 | self.assertEqual(p.stdout.read(), b"appleorange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 598 | |
| 599 | def test_stdout_stderr_file(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 600 | # capture stdout and stderr to the same open file |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 601 | tf = tempfile.TemporaryFile() |
Benjamin Peterson | cc221b2 | 2010-10-31 02:06:21 +0000 | [diff] [blame] | 602 | self.addCleanup(tf.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 603 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 604 | 'import sys;' |
| 605 | 'sys.stdout.write("apple");' |
| 606 | 'sys.stdout.flush();' |
| 607 | 'sys.stderr.write("orange")'], |
| 608 | stdout=tf, |
| 609 | stderr=tf) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 610 | p.wait() |
| 611 | tf.seek(0) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 612 | self.assertEqual(tf.read(), b"appleorange") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 613 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 614 | def test_stdout_filedes_of_stdout(self): |
| 615 | # stdout is set to 1 (#1531862). |
Ezio Melotti | 42a541b | 2013-03-11 05:53:34 +0200 | [diff] [blame] | 616 | # To avoid printing the text on stdout, we do something similar to |
| 617 | # test_stdout_none (see above). The parent subprocess calls the child |
| 618 | # subprocess passing stdout=1, and this test uses stdout=PIPE in |
| 619 | # order to capture and check the output of the parent. See #11963. |
| 620 | code = ('import sys, subprocess; ' |
| 621 | 'rc = subprocess.call([sys.executable, "-c", ' |
| 622 | ' "import os, sys; sys.exit(os.write(sys.stdout.fileno(), ' |
| 623 | 'b\'test with stdout=1\'))"], stdout=1); ' |
| 624 | 'assert rc == 18') |
| 625 | p = subprocess.Popen([sys.executable, "-c", code], |
| 626 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 627 | self.addCleanup(p.stdout.close) |
| 628 | self.addCleanup(p.stderr.close) |
| 629 | out, err = p.communicate() |
| 630 | self.assertEqual(p.returncode, 0, err) |
| 631 | self.assertEqual(out.rstrip(), b'test with stdout=1') |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 632 | |
Ross Lagerwall | ba102ec | 2011-03-16 18:40:25 +0200 | [diff] [blame] | 633 | def test_stdout_devnull(self): |
| 634 | p = subprocess.Popen([sys.executable, "-c", |
| 635 | 'for i in range(10240):' |
| 636 | 'print("x" * 1024)'], |
| 637 | stdout=subprocess.DEVNULL) |
| 638 | p.wait() |
| 639 | self.assertEqual(p.stdout, None) |
| 640 | |
| 641 | def test_stderr_devnull(self): |
| 642 | p = subprocess.Popen([sys.executable, "-c", |
| 643 | 'import sys\n' |
| 644 | 'for i in range(10240):' |
| 645 | 'sys.stderr.write("x" * 1024)'], |
| 646 | stderr=subprocess.DEVNULL) |
| 647 | p.wait() |
| 648 | self.assertEqual(p.stderr, None) |
| 649 | |
| 650 | def test_stdin_devnull(self): |
| 651 | p = subprocess.Popen([sys.executable, "-c", |
| 652 | 'import sys;' |
| 653 | 'sys.stdin.read(1)'], |
| 654 | stdin=subprocess.DEVNULL) |
| 655 | p.wait() |
| 656 | self.assertEqual(p.stdin, None) |
| 657 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 658 | def test_env(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 659 | newenv = os.environ.copy() |
| 660 | newenv["FRUIT"] = "orange" |
Victor Stinner | f1512a2 | 2011-06-21 17:18:38 +0200 | [diff] [blame] | 661 | with subprocess.Popen([sys.executable, "-c", |
| 662 | 'import sys,os;' |
| 663 | 'sys.stdout.write(os.getenv("FRUIT"))'], |
| 664 | stdout=subprocess.PIPE, |
| 665 | env=newenv) as p: |
| 666 | stdout, stderr = p.communicate() |
| 667 | self.assertEqual(stdout, b"orange") |
| 668 | |
Victor Stinner | 62d5118 | 2011-06-23 01:02:25 +0200 | [diff] [blame] | 669 | # Windows requires at least the SYSTEMROOT environment variable to start |
| 670 | # Python |
| 671 | @unittest.skipIf(sys.platform == 'win32', |
| 672 | 'cannot test an empty env on Windows') |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 673 | @unittest.skipIf(sysconfig.get_config_var('Py_ENABLE_SHARED') == 1, |
| 674 | 'The Python shared library cannot be loaded ' |
| 675 | 'with an empty environment.') |
Victor Stinner | f1512a2 | 2011-06-21 17:18:38 +0200 | [diff] [blame] | 676 | def test_empty_env(self): |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 677 | """Verify that env={} is as empty as possible.""" |
| 678 | |
Gregory P. Smith | 85aba23 | 2017-05-30 16:21:47 -0700 | [diff] [blame] | 679 | def is_env_var_to_ignore(n): |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 680 | """Determine if an environment variable is under our control.""" |
| 681 | # This excludes some __CF_* and VERSIONER_* keys MacOS insists |
| 682 | # on adding even when the environment in exec is empty. |
| 683 | # Gentoo sandboxes also force LD_PRELOAD and SANDBOX_* to exist. |
Gregory P. Smith | 85aba23 | 2017-05-30 16:21:47 -0700 | [diff] [blame] | 684 | return ('VERSIONER' in n or '__CF' in n or # MacOS |
Ned Deily | 918edc0 | 2017-09-04 00:00:21 -0400 | [diff] [blame] | 685 | '__PYVENV_LAUNCHER__' in n or # MacOS framework build |
Nick Coghlan | 6ea4186 | 2017-06-11 13:16:15 +1000 | [diff] [blame] | 686 | n == 'LD_PRELOAD' or n.startswith('SANDBOX') or # Gentoo |
| 687 | n == 'LC_CTYPE') # Locale coercion triggered |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 688 | |
Victor Stinner | f1512a2 | 2011-06-21 17:18:38 +0200 | [diff] [blame] | 689 | with subprocess.Popen([sys.executable, "-c", |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 690 | 'import os; print(list(os.environ.keys()))'], |
| 691 | stdout=subprocess.PIPE, env={}) as p: |
Victor Stinner | f1512a2 | 2011-06-21 17:18:38 +0200 | [diff] [blame] | 692 | stdout, stderr = p.communicate() |
Gregory P. Smith | b351248 | 2017-05-30 14:40:37 -0700 | [diff] [blame] | 693 | child_env_names = eval(stdout.strip()) |
| 694 | self.assertIsInstance(child_env_names, list) |
| 695 | child_env_names = [k for k in child_env_names |
| 696 | if not is_env_var_to_ignore(k)] |
| 697 | self.assertEqual(child_env_names, []) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 698 | |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 699 | def test_invalid_cmd(self): |
| 700 | # null character in the command name |
| 701 | cmd = sys.executable + '\0' |
| 702 | with self.assertRaises(ValueError): |
| 703 | subprocess.Popen([cmd, "-c", "pass"]) |
| 704 | |
| 705 | # null character in the command argument |
| 706 | with self.assertRaises(ValueError): |
| 707 | subprocess.Popen([sys.executable, "-c", "pass#\0"]) |
| 708 | |
| 709 | def test_invalid_env(self): |
Ville Skyttä | 49b2734 | 2017-08-03 09:00:59 +0300 | [diff] [blame] | 710 | # null character in the environment variable name |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 711 | newenv = os.environ.copy() |
| 712 | newenv["FRUIT\0VEGETABLE"] = "cabbage" |
| 713 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 714 | subprocess.Popen(ZERO_RETURN_CMD, env=newenv) |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 715 | |
Ville Skyttä | 49b2734 | 2017-08-03 09:00:59 +0300 | [diff] [blame] | 716 | # null character in the environment variable value |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 717 | newenv = os.environ.copy() |
| 718 | newenv["FRUIT"] = "orange\0VEGETABLE=cabbage" |
| 719 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 720 | subprocess.Popen(ZERO_RETURN_CMD, env=newenv) |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 721 | |
Ville Skyttä | 49b2734 | 2017-08-03 09:00:59 +0300 | [diff] [blame] | 722 | # equal character in the environment variable name |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 723 | newenv = os.environ.copy() |
| 724 | newenv["FRUIT=ORANGE"] = "lemon" |
| 725 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 726 | subprocess.Popen(ZERO_RETURN_CMD, env=newenv) |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 727 | |
Ville Skyttä | 49b2734 | 2017-08-03 09:00:59 +0300 | [diff] [blame] | 728 | # equal character in the environment variable value |
Serhiy Storchaka | d174d24 | 2017-06-23 19:39:27 +0300 | [diff] [blame] | 729 | newenv = os.environ.copy() |
| 730 | newenv["FRUIT"] = "orange=lemon" |
| 731 | with subprocess.Popen([sys.executable, "-c", |
| 732 | 'import sys, os;' |
| 733 | 'sys.stdout.write(os.getenv("FRUIT"))'], |
| 734 | stdout=subprocess.PIPE, |
| 735 | env=newenv) as p: |
| 736 | stdout, stderr = p.communicate() |
| 737 | self.assertEqual(stdout, b"orange=lemon") |
| 738 | |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 739 | def test_communicate_stdin(self): |
| 740 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 741 | 'import sys;' |
| 742 | 'sys.exit(sys.stdin.read() == "pear")'], |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 743 | stdin=subprocess.PIPE) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 744 | p.communicate(b"pear") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 745 | self.assertEqual(p.returncode, 1) |
| 746 | |
| 747 | def test_communicate_stdout(self): |
| 748 | p = subprocess.Popen([sys.executable, "-c", |
| 749 | 'import sys; sys.stdout.write("pineapple")'], |
| 750 | stdout=subprocess.PIPE) |
| 751 | (stdout, stderr) = p.communicate() |
Guido van Rossum | fa0054a | 2007-05-24 04:05:35 +0000 | [diff] [blame] | 752 | self.assertEqual(stdout, b"pineapple") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 753 | self.assertEqual(stderr, None) |
| 754 | |
| 755 | def test_communicate_stderr(self): |
| 756 | p = subprocess.Popen([sys.executable, "-c", |
| 757 | 'import sys; sys.stderr.write("pineapple")'], |
| 758 | stderr=subprocess.PIPE) |
| 759 | (stdout, stderr) = p.communicate() |
| 760 | self.assertEqual(stdout, None) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 761 | self.assertEqual(stderr, b"pineapple") |
Peter Astrand | cbac93c | 2005-03-03 20:24:28 +0000 | [diff] [blame] | 762 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 763 | def test_communicate(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 764 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 765 | 'import sys,os;' |
| 766 | 'sys.stderr.write("pineapple");' |
| 767 | 'sys.stdout.write(sys.stdin.read())'], |
| 768 | stdin=subprocess.PIPE, |
| 769 | stdout=subprocess.PIPE, |
| 770 | stderr=subprocess.PIPE) |
Brian Curtin | 19a5379 | 2010-11-05 17:09:05 +0000 | [diff] [blame] | 771 | self.addCleanup(p.stdout.close) |
| 772 | self.addCleanup(p.stderr.close) |
| 773 | self.addCleanup(p.stdin.close) |
Georg Brandl | 1abcbf8 | 2008-07-01 19:28:43 +0000 | [diff] [blame] | 774 | (stdout, stderr) = p.communicate(b"banana") |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 775 | self.assertEqual(stdout, b"banana") |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 776 | self.assertEqual(stderr, b"pineapple") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 777 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 778 | def test_communicate_timeout(self): |
| 779 | p = subprocess.Popen([sys.executable, "-c", |
| 780 | 'import sys,os,time;' |
| 781 | 'sys.stderr.write("pineapple\\n");' |
| 782 | 'time.sleep(1);' |
| 783 | 'sys.stderr.write("pear\\n");' |
| 784 | 'sys.stdout.write(sys.stdin.read())'], |
| 785 | universal_newlines=True, |
| 786 | stdin=subprocess.PIPE, |
| 787 | stdout=subprocess.PIPE, |
| 788 | stderr=subprocess.PIPE) |
| 789 | self.assertRaises(subprocess.TimeoutExpired, p.communicate, "banana", |
| 790 | timeout=0.3) |
| 791 | # Make sure we can keep waiting for it, and that we get the whole output |
| 792 | # after it completes. |
| 793 | (stdout, stderr) = p.communicate() |
| 794 | self.assertEqual(stdout, "banana") |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 795 | self.assertEqual(stderr.encode(), b"pineapple\npear\n") |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 796 | |
Raymond Hettinger | 15f44ab | 2016-08-30 10:47:49 -0700 | [diff] [blame] | 797 | def test_communicate_timeout_large_output(self): |
Ross Lagerwall | 003c7a3 | 2012-02-12 09:02:01 +0200 | [diff] [blame] | 798 | # Test an expiring timeout while the child is outputting lots of data. |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 799 | p = subprocess.Popen([sys.executable, "-c", |
| 800 | 'import sys,os,time;' |
| 801 | 'sys.stdout.write("a" * (64 * 1024));' |
| 802 | 'time.sleep(0.2);' |
| 803 | 'sys.stdout.write("a" * (64 * 1024));' |
| 804 | 'time.sleep(0.2);' |
| 805 | 'sys.stdout.write("a" * (64 * 1024));' |
| 806 | 'time.sleep(0.2);' |
| 807 | 'sys.stdout.write("a" * (64 * 1024));'], |
| 808 | stdout=subprocess.PIPE) |
| 809 | self.assertRaises(subprocess.TimeoutExpired, p.communicate, timeout=0.4) |
| 810 | (stdout, _) = p.communicate() |
| 811 | self.assertEqual(len(stdout), 4 * 64 * 1024) |
| 812 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 813 | # Test for the fd leak reported in http://bugs.python.org/issue2791. |
| 814 | def test_communicate_pipe_fd_leak(self): |
Victor Stinner | 667d4b5 | 2010-12-25 22:40:32 +0000 | [diff] [blame] | 815 | for stdin_pipe in (False, True): |
| 816 | for stdout_pipe in (False, True): |
| 817 | for stderr_pipe in (False, True): |
| 818 | options = {} |
| 819 | if stdin_pipe: |
| 820 | options['stdin'] = subprocess.PIPE |
| 821 | if stdout_pipe: |
| 822 | options['stdout'] = subprocess.PIPE |
| 823 | if stderr_pipe: |
| 824 | options['stderr'] = subprocess.PIPE |
| 825 | if not options: |
| 826 | continue |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 827 | p = subprocess.Popen(ZERO_RETURN_CMD, **options) |
Victor Stinner | 667d4b5 | 2010-12-25 22:40:32 +0000 | [diff] [blame] | 828 | p.communicate() |
| 829 | if p.stdin is not None: |
| 830 | self.assertTrue(p.stdin.closed) |
| 831 | if p.stdout is not None: |
| 832 | self.assertTrue(p.stdout.closed) |
| 833 | if p.stderr is not None: |
| 834 | self.assertTrue(p.stderr.closed) |
Georg Brandl | f08a9dd | 2008-06-10 16:57:31 +0000 | [diff] [blame] | 835 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 836 | def test_communicate_returns(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 837 | # communicate() should return None if no redirection is active |
Tim Peters | 3b01a70 | 2004-10-12 22:19:32 +0000 | [diff] [blame] | 838 | p = subprocess.Popen([sys.executable, "-c", |
| 839 | "import sys; sys.exit(47)"]) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 840 | (stdout, stderr) = p.communicate() |
| 841 | self.assertEqual(stdout, None) |
| 842 | self.assertEqual(stderr, None) |
| 843 | |
| 844 | def test_communicate_pipe_buf(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 845 | # communicate() with writes larger than pipe_buf |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 846 | # This test will probably deadlock rather than fail, if |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 847 | # communicate() does not work properly. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 848 | x, y = os.pipe() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 849 | os.close(x) |
| 850 | os.close(y) |
| 851 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 852 | 'import sys,os;' |
| 853 | 'sys.stdout.write(sys.stdin.read(47));' |
Charles-François Natali | 2d51721 | 2011-05-29 16:36:44 +0200 | [diff] [blame] | 854 | 'sys.stderr.write("x" * %d);' |
| 855 | 'sys.stdout.write(sys.stdin.read())' % |
| 856 | support.PIPE_MAX_SIZE], |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 857 | stdin=subprocess.PIPE, |
| 858 | stdout=subprocess.PIPE, |
| 859 | stderr=subprocess.PIPE) |
Brian Curtin | 19a5379 | 2010-11-05 17:09:05 +0000 | [diff] [blame] | 860 | self.addCleanup(p.stdout.close) |
| 861 | self.addCleanup(p.stderr.close) |
| 862 | self.addCleanup(p.stdin.close) |
Charles-François Natali | 2d51721 | 2011-05-29 16:36:44 +0200 | [diff] [blame] | 863 | string_to_write = b"a" * support.PIPE_MAX_SIZE |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 864 | (stdout, stderr) = p.communicate(string_to_write) |
| 865 | self.assertEqual(stdout, string_to_write) |
| 866 | |
| 867 | def test_writes_before_communicate(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 868 | # stdin.write before communicate() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 869 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 870 | 'import sys,os;' |
| 871 | 'sys.stdout.write(sys.stdin.read())'], |
| 872 | stdin=subprocess.PIPE, |
| 873 | stdout=subprocess.PIPE, |
| 874 | stderr=subprocess.PIPE) |
Brian Curtin | 19a5379 | 2010-11-05 17:09:05 +0000 | [diff] [blame] | 875 | self.addCleanup(p.stdout.close) |
| 876 | self.addCleanup(p.stderr.close) |
| 877 | self.addCleanup(p.stdin.close) |
Guido van Rossum | bb839ef | 2007-08-27 23:58:21 +0000 | [diff] [blame] | 878 | p.stdin.write(b"banana") |
| 879 | (stdout, stderr) = p.communicate(b"split") |
Guido van Rossum | c9e363c | 2007-05-15 23:18:55 +0000 | [diff] [blame] | 880 | self.assertEqual(stdout, b"bananasplit") |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 881 | self.assertEqual(stderr, b"") |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 882 | |
andyclegg | 7fed7bd | 2017-10-23 03:01:19 +0100 | [diff] [blame] | 883 | def test_universal_newlines_and_text(self): |
| 884 | args = [ |
| 885 | sys.executable, "-c", |
| 886 | 'import sys,os;' + SETBINARY + |
| 887 | 'buf = sys.stdout.buffer;' |
| 888 | 'buf.write(sys.stdin.readline().encode());' |
| 889 | 'buf.flush();' |
| 890 | 'buf.write(b"line2\\n");' |
| 891 | 'buf.flush();' |
| 892 | 'buf.write(sys.stdin.read().encode());' |
| 893 | 'buf.flush();' |
| 894 | 'buf.write(b"line4\\n");' |
| 895 | 'buf.flush();' |
| 896 | 'buf.write(b"line5\\r\\n");' |
| 897 | 'buf.flush();' |
| 898 | 'buf.write(b"line6\\r");' |
| 899 | 'buf.flush();' |
| 900 | 'buf.write(b"\\nline7");' |
| 901 | 'buf.flush();' |
| 902 | 'buf.write(b"\\nline8");'] |
| 903 | |
| 904 | for extra_kwarg in ('universal_newlines', 'text'): |
| 905 | p = subprocess.Popen(args, **{'stdin': subprocess.PIPE, |
| 906 | 'stdout': subprocess.PIPE, |
| 907 | extra_kwarg: True}) |
| 908 | with p: |
| 909 | p.stdin.write("line1\n") |
| 910 | p.stdin.flush() |
| 911 | self.assertEqual(p.stdout.readline(), "line1\n") |
| 912 | p.stdin.write("line3\n") |
| 913 | p.stdin.close() |
| 914 | self.addCleanup(p.stdout.close) |
| 915 | self.assertEqual(p.stdout.readline(), |
| 916 | "line2\n") |
| 917 | self.assertEqual(p.stdout.read(6), |
| 918 | "line3\n") |
| 919 | self.assertEqual(p.stdout.read(), |
| 920 | "line4\nline5\nline6\nline7\nline8") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 921 | |
| 922 | def test_universal_newlines_communicate(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 923 | # universal newlines through communicate() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 924 | p = subprocess.Popen([sys.executable, "-c", |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 925 | 'import sys,os;' + SETBINARY + |
Antoine Pitrou | ec2d269 | 2012-08-05 00:23:40 +0200 | [diff] [blame] | 926 | 'buf = sys.stdout.buffer;' |
| 927 | 'buf.write(b"line2\\n");' |
| 928 | 'buf.flush();' |
| 929 | 'buf.write(b"line4\\n");' |
| 930 | 'buf.flush();' |
| 931 | 'buf.write(b"line5\\r\\n");' |
| 932 | 'buf.flush();' |
| 933 | 'buf.write(b"line6\\r");' |
| 934 | 'buf.flush();' |
| 935 | 'buf.write(b"\\nline7");' |
| 936 | 'buf.flush();' |
| 937 | 'buf.write(b"\\nline8");'], |
Antoine Pitrou | ab85ff3 | 2011-07-23 22:03:45 +0200 | [diff] [blame] | 938 | stderr=subprocess.PIPE, |
| 939 | stdout=subprocess.PIPE, |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 940 | universal_newlines=1) |
Brian Curtin | 19a5379 | 2010-11-05 17:09:05 +0000 | [diff] [blame] | 941 | self.addCleanup(p.stdout.close) |
| 942 | self.addCleanup(p.stderr.close) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 943 | (stdout, stderr) = p.communicate() |
Antoine Pitrou | ab85ff3 | 2011-07-23 22:03:45 +0200 | [diff] [blame] | 944 | self.assertEqual(stdout, |
| 945 | "line2\nline4\nline5\nline6\nline7\nline8") |
| 946 | |
| 947 | def test_universal_newlines_communicate_stdin(self): |
| 948 | # universal newlines through communicate(), with only stdin |
| 949 | p = subprocess.Popen([sys.executable, "-c", |
Andrew Svetlov | 47ec25d | 2012-08-19 16:25:37 +0300 | [diff] [blame] | 950 | 'import sys,os;' + SETBINARY + textwrap.dedent(''' |
| 951 | s = sys.stdin.readline() |
| 952 | assert s == "line1\\n", repr(s) |
| 953 | s = sys.stdin.read() |
| 954 | assert s == "line3\\n", repr(s) |
| 955 | ''')], |
Antoine Pitrou | ab85ff3 | 2011-07-23 22:03:45 +0200 | [diff] [blame] | 956 | stdin=subprocess.PIPE, |
| 957 | universal_newlines=1) |
| 958 | (stdout, stderr) = p.communicate("line1\nline3\n") |
| 959 | self.assertEqual(p.returncode, 0) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 960 | |
Andrew Svetlov | f376507 | 2012-08-14 18:35:17 +0300 | [diff] [blame] | 961 | def test_universal_newlines_communicate_input_none(self): |
| 962 | # Test communicate(input=None) with universal newlines. |
| 963 | # |
| 964 | # We set stdout to PIPE because, as of this writing, a different |
| 965 | # code path is tested when the number of pipes is zero or one. |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 966 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Andrew Svetlov | f376507 | 2012-08-14 18:35:17 +0300 | [diff] [blame] | 967 | stdin=subprocess.PIPE, |
| 968 | stdout=subprocess.PIPE, |
| 969 | universal_newlines=True) |
| 970 | p.communicate() |
| 971 | self.assertEqual(p.returncode, 0) |
| 972 | |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 973 | def test_universal_newlines_communicate_stdin_stdout_stderr(self): |
Andrew Svetlov | 47ec25d | 2012-08-19 16:25:37 +0300 | [diff] [blame] | 974 | # universal newlines through communicate(), with stdin, stdout, stderr |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 975 | p = subprocess.Popen([sys.executable, "-c", |
Andrew Svetlov | 47ec25d | 2012-08-19 16:25:37 +0300 | [diff] [blame] | 976 | 'import sys,os;' + SETBINARY + textwrap.dedent(''' |
| 977 | s = sys.stdin.buffer.readline() |
| 978 | sys.stdout.buffer.write(s) |
| 979 | sys.stdout.buffer.write(b"line2\\r") |
| 980 | sys.stderr.buffer.write(b"eline2\\n") |
| 981 | s = sys.stdin.buffer.read() |
| 982 | sys.stdout.buffer.write(s) |
| 983 | sys.stdout.buffer.write(b"line4\\n") |
| 984 | sys.stdout.buffer.write(b"line5\\r\\n") |
| 985 | sys.stderr.buffer.write(b"eline6\\r") |
| 986 | sys.stderr.buffer.write(b"eline7\\r\\nz") |
| 987 | ''')], |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 988 | stdin=subprocess.PIPE, |
| 989 | stderr=subprocess.PIPE, |
| 990 | stdout=subprocess.PIPE, |
Andrew Svetlov | 47ec25d | 2012-08-19 16:25:37 +0300 | [diff] [blame] | 991 | universal_newlines=True) |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 992 | self.addCleanup(p.stdout.close) |
| 993 | self.addCleanup(p.stderr.close) |
| 994 | (stdout, stderr) = p.communicate("line1\nline3\n") |
| 995 | self.assertEqual(p.returncode, 0) |
Andrew Svetlov | 943c5b3 | 2012-08-16 20:17:47 +0300 | [diff] [blame] | 996 | self.assertEqual("line1\nline2\nline3\nline4\nline5\n", stdout) |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 997 | # Python debug build push something like "[42442 refs]\n" |
| 998 | # to stderr at exit of subprocess. |
Andrew Svetlov | 943c5b3 | 2012-08-16 20:17:47 +0300 | [diff] [blame] | 999 | self.assertTrue(stderr.startswith("eline2\neline6\neline7\n")) |
Andrew Svetlov | 5395d2f | 2012-08-15 22:46:43 +0300 | [diff] [blame] | 1000 | |
Andrew Svetlov | 8286071 | 2012-08-19 22:13:41 +0300 | [diff] [blame] | 1001 | def test_universal_newlines_communicate_encodings(self): |
| 1002 | # Check that universal newlines mode works for various encodings, |
| 1003 | # in particular for encodings in the UTF-16 and UTF-32 families. |
| 1004 | # See issue #15595. |
| 1005 | # |
| 1006 | # UTF-16 and UTF-32-BE are sufficient to check both with BOM and |
| 1007 | # without, and UTF-16 and UTF-32. |
| 1008 | for encoding in ['utf-16', 'utf-32-be']: |
Andrew Svetlov | 8286071 | 2012-08-19 22:13:41 +0300 | [diff] [blame] | 1009 | code = ("import sys; " |
| 1010 | r"sys.stdout.buffer.write('1\r\n2\r3\n4'.encode('%s'))" % |
| 1011 | encoding) |
| 1012 | args = [sys.executable, '-c', code] |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 1013 | # We set stdin to be non-None because, as of this writing, |
| 1014 | # a different code path is used when the number of pipes is |
| 1015 | # zero or one. |
| 1016 | popen = subprocess.Popen(args, |
| 1017 | stdin=subprocess.PIPE, |
| 1018 | stdout=subprocess.PIPE, |
| 1019 | encoding=encoding) |
| 1020 | stdout, stderr = popen.communicate(input='') |
Andrew Svetlov | 8286071 | 2012-08-19 22:13:41 +0300 | [diff] [blame] | 1021 | self.assertEqual(stdout, '1\n2\n3\n4') |
| 1022 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 1023 | def test_communicate_errors(self): |
| 1024 | for errors, expected in [ |
| 1025 | ('ignore', ''), |
| 1026 | ('replace', '\ufffd\ufffd'), |
| 1027 | ('surrogateescape', '\udc80\udc80'), |
| 1028 | ('backslashreplace', '\\x80\\x80'), |
| 1029 | ]: |
| 1030 | code = ("import sys; " |
| 1031 | r"sys.stdout.buffer.write(b'[\x80\x80]')") |
| 1032 | args = [sys.executable, '-c', code] |
| 1033 | # We set stdin to be non-None because, as of this writing, |
| 1034 | # a different code path is used when the number of pipes is |
| 1035 | # zero or one. |
| 1036 | popen = subprocess.Popen(args, |
| 1037 | stdin=subprocess.PIPE, |
| 1038 | stdout=subprocess.PIPE, |
| 1039 | encoding='utf-8', |
| 1040 | errors=errors) |
| 1041 | stdout, stderr = popen.communicate(input='') |
| 1042 | self.assertEqual(stdout, '[{}]'.format(expected)) |
| 1043 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1044 | def test_no_leaking(self): |
Tim Peters | 7b759da | 2004-10-12 22:29:54 +0000 | [diff] [blame] | 1045 | # Make sure we leak no resources |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 1046 | if not mswindows: |
Peter Astrand | f7f1bb7 | 2005-03-03 20:47:37 +0000 | [diff] [blame] | 1047 | max_handles = 1026 # too much for most UNIX systems |
| 1048 | else: |
Antoine Pitrou | 8db3027 | 2010-09-18 22:38:48 +0000 | [diff] [blame] | 1049 | max_handles = 2050 # too much for (at least some) Windows setups |
| 1050 | handles = [] |
Gregory P. Smith | 81ce685 | 2011-03-15 02:04:11 -0400 | [diff] [blame] | 1051 | tmpdir = tempfile.mkdtemp() |
Antoine Pitrou | 8db3027 | 2010-09-18 22:38:48 +0000 | [diff] [blame] | 1052 | try: |
| 1053 | for i in range(max_handles): |
| 1054 | try: |
Gregory P. Smith | 81ce685 | 2011-03-15 02:04:11 -0400 | [diff] [blame] | 1055 | tmpfile = os.path.join(tmpdir, support.TESTFN) |
| 1056 | handles.append(os.open(tmpfile, os.O_WRONLY|os.O_CREAT)) |
Antoine Pitrou | 8db3027 | 2010-09-18 22:38:48 +0000 | [diff] [blame] | 1057 | except OSError as e: |
| 1058 | if e.errno != errno.EMFILE: |
| 1059 | raise |
| 1060 | break |
| 1061 | else: |
| 1062 | self.skipTest("failed to reach the file descriptor limit " |
| 1063 | "(tried %d)" % max_handles) |
| 1064 | # Close a couple of them (should be enough for a subprocess) |
| 1065 | for i in range(10): |
| 1066 | os.close(handles.pop()) |
| 1067 | # Loop creating some subprocesses. If one of them leaks some fds, |
| 1068 | # the next loop iteration will fail by reaching the max fd limit. |
| 1069 | for i in range(15): |
| 1070 | p = subprocess.Popen([sys.executable, "-c", |
| 1071 | "import sys;" |
| 1072 | "sys.stdout.write(sys.stdin.read())"], |
| 1073 | stdin=subprocess.PIPE, |
| 1074 | stdout=subprocess.PIPE, |
| 1075 | stderr=subprocess.PIPE) |
| 1076 | data = p.communicate(b"lime")[0] |
| 1077 | self.assertEqual(data, b"lime") |
| 1078 | finally: |
| 1079 | for h in handles: |
| 1080 | os.close(h) |
Gregory P. Smith | 81ce685 | 2011-03-15 02:04:11 -0400 | [diff] [blame] | 1081 | shutil.rmtree(tmpdir) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1082 | |
| 1083 | def test_list2cmdline(self): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1084 | self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), |
| 1085 | '"a b c" d e') |
| 1086 | self.assertEqual(subprocess.list2cmdline(['ab"c', '\\', 'd']), |
| 1087 | 'ab\\"c \\ d') |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1088 | self.assertEqual(subprocess.list2cmdline(['ab"c', ' \\', 'd']), |
| 1089 | 'ab\\"c " \\\\" d') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1090 | self.assertEqual(subprocess.list2cmdline(['a\\\\\\b', 'de fg', 'h']), |
| 1091 | 'a\\\\\\b "de fg" h') |
| 1092 | self.assertEqual(subprocess.list2cmdline(['a\\"b', 'c', 'd']), |
| 1093 | 'a\\\\\\"b c d') |
| 1094 | self.assertEqual(subprocess.list2cmdline(['a\\\\b c', 'd', 'e']), |
| 1095 | '"a\\\\b c" d e') |
| 1096 | self.assertEqual(subprocess.list2cmdline(['a\\\\b\\ c', 'd', 'e']), |
| 1097 | '"a\\\\b\\ c" d e') |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 1098 | self.assertEqual(subprocess.list2cmdline(['ab', '']), |
| 1099 | 'ab ""') |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1100 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1101 | def test_poll(self): |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1102 | p = subprocess.Popen([sys.executable, "-c", |
Ross Lagerwall | e7ad419 | 2012-02-22 06:02:07 +0200 | [diff] [blame] | 1103 | "import os; os.read(0, 1)"], |
| 1104 | stdin=subprocess.PIPE) |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1105 | self.addCleanup(p.stdin.close) |
| 1106 | self.assertIsNone(p.poll()) |
| 1107 | os.write(p.stdin.fileno(), b'A') |
| 1108 | p.wait() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1109 | # Subsequent invocations should just return the returncode |
| 1110 | self.assertEqual(p.poll(), 0) |
| 1111 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1112 | def test_wait(self): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1113 | p = subprocess.Popen(ZERO_RETURN_CMD) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1114 | self.assertEqual(p.wait(), 0) |
| 1115 | # Subsequent invocations should just return the returncode |
| 1116 | self.assertEqual(p.wait(), 0) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1117 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 1118 | def test_wait_timeout(self): |
| 1119 | p = subprocess.Popen([sys.executable, |
Antoine Pitrou | dc49b2b | 2013-05-19 15:55:40 +0200 | [diff] [blame] | 1120 | "-c", "import time; time.sleep(0.3)"]) |
Reid Kleckner | 2b228f0 | 2011-03-16 16:57:54 -0400 | [diff] [blame] | 1121 | with self.assertRaises(subprocess.TimeoutExpired) as c: |
Antoine Pitrou | dc49b2b | 2013-05-19 15:55:40 +0200 | [diff] [blame] | 1122 | p.wait(timeout=0.0001) |
| 1123 | self.assertIn("0.0001", str(c.exception)) # For coverage of __str__. |
Victor Stinner | 0d63bac | 2019-12-11 11:30:03 +0100 | [diff] [blame] | 1124 | self.assertEqual(p.wait(timeout=support.SHORT_TIMEOUT), 0) |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 1125 | |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 1126 | def test_invalid_bufsize(self): |
| 1127 | # an invalid type of the bufsize argument should raise |
| 1128 | # TypeError. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1129 | with self.assertRaises(TypeError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1130 | subprocess.Popen(ZERO_RETURN_CMD, "orange") |
Peter Astrand | 738131d | 2004-11-30 21:04:45 +0000 | [diff] [blame] | 1131 | |
Guido van Rossum | 46a05a7 | 2007-06-07 21:56:45 +0000 | [diff] [blame] | 1132 | def test_bufsize_is_none(self): |
| 1133 | # bufsize=None should be the same as bufsize=0. |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1134 | p = subprocess.Popen(ZERO_RETURN_CMD, None) |
Guido van Rossum | 46a05a7 | 2007-06-07 21:56:45 +0000 | [diff] [blame] | 1135 | self.assertEqual(p.wait(), 0) |
| 1136 | # Again with keyword arg |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1137 | p = subprocess.Popen(ZERO_RETURN_CMD, bufsize=None) |
Guido van Rossum | 46a05a7 | 2007-06-07 21:56:45 +0000 | [diff] [blame] | 1138 | self.assertEqual(p.wait(), 0) |
| 1139 | |
Antoine Pitrou | afe8d06 | 2014-09-21 21:10:56 +0200 | [diff] [blame] | 1140 | def _test_bufsize_equal_one(self, line, expected, universal_newlines): |
| 1141 | # subprocess may deadlock with bufsize=1, see issue #21332 |
| 1142 | with subprocess.Popen([sys.executable, "-c", "import sys;" |
| 1143 | "sys.stdout.write(sys.stdin.readline());" |
| 1144 | "sys.stdout.flush()"], |
| 1145 | stdin=subprocess.PIPE, |
| 1146 | stdout=subprocess.PIPE, |
| 1147 | stderr=subprocess.DEVNULL, |
| 1148 | bufsize=1, |
| 1149 | universal_newlines=universal_newlines) as p: |
| 1150 | p.stdin.write(line) # expect that it flushes the line in text mode |
| 1151 | os.close(p.stdin.fileno()) # close it without flushing the buffer |
| 1152 | read_line = p.stdout.readline() |
Segev Finer | 4d38517 | 2017-08-18 16:18:13 +0300 | [diff] [blame] | 1153 | with support.SuppressCrashReport(): |
| 1154 | try: |
| 1155 | p.stdin.close() |
| 1156 | except OSError: |
| 1157 | pass |
Antoine Pitrou | afe8d06 | 2014-09-21 21:10:56 +0200 | [diff] [blame] | 1158 | p.stdin = None |
| 1159 | self.assertEqual(p.returncode, 0) |
| 1160 | self.assertEqual(read_line, expected) |
| 1161 | |
| 1162 | def test_bufsize_equal_one_text_mode(self): |
| 1163 | # line is flushed in text mode with bufsize=1. |
| 1164 | # we should get the full line in return |
| 1165 | line = "line\n" |
| 1166 | self._test_bufsize_equal_one(line, line, universal_newlines=True) |
| 1167 | |
| 1168 | def test_bufsize_equal_one_binary_mode(self): |
| 1169 | # line is not flushed in binary mode with bufsize=1. |
| 1170 | # we should get empty response |
| 1171 | line = b'line' + os.linesep.encode() # assume ascii-based locale |
Alexey Izbyshev | a267056 | 2018-10-20 03:22:31 +0300 | [diff] [blame] | 1172 | with self.assertWarnsRegex(RuntimeWarning, 'line buffering'): |
| 1173 | self._test_bufsize_equal_one(line, b'', universal_newlines=False) |
Antoine Pitrou | afe8d06 | 2014-09-21 21:10:56 +0200 | [diff] [blame] | 1174 | |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 1175 | def test_leaking_fds_on_error(self): |
| 1176 | # see bug #5179: Popen leaks file descriptors to PIPEs if |
| 1177 | # the child fails to execute; this will eventually exhaust |
| 1178 | # the maximum number of open fds. 1024 seems a very common |
| 1179 | # value for that limit, but Windows has 2048, so we loop |
| 1180 | # 1024 times (each call leaked two fds). |
| 1181 | for i in range(1024): |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 1182 | with self.assertRaises(NONEXISTING_ERRORS): |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 1183 | subprocess.Popen(NONEXISTING_CMD, |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 1184 | stdout=subprocess.PIPE, |
| 1185 | stderr=subprocess.PIPE) |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 1186 | |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 1187 | def test_nonexisting_with_pipes(self): |
| 1188 | # bpo-30121: Popen with pipes must close properly pipes on error. |
| 1189 | # Previously, os.close() was called with a Windows handle which is not |
| 1190 | # a valid file descriptor. |
| 1191 | # |
| 1192 | # Run the test in a subprocess to control how the CRT reports errors |
| 1193 | # and to get stderr content. |
| 1194 | try: |
| 1195 | import msvcrt |
| 1196 | msvcrt.CrtSetReportMode |
| 1197 | except (AttributeError, ImportError): |
| 1198 | self.skipTest("need msvcrt.CrtSetReportMode") |
| 1199 | |
| 1200 | code = textwrap.dedent(f""" |
| 1201 | import msvcrt |
| 1202 | import subprocess |
| 1203 | |
| 1204 | cmd = {NONEXISTING_CMD!r} |
| 1205 | |
| 1206 | for report_type in [msvcrt.CRT_WARN, |
| 1207 | msvcrt.CRT_ERROR, |
| 1208 | msvcrt.CRT_ASSERT]: |
| 1209 | msvcrt.CrtSetReportMode(report_type, msvcrt.CRTDBG_MODE_FILE) |
| 1210 | msvcrt.CrtSetReportFile(report_type, msvcrt.CRTDBG_FILE_STDERR) |
| 1211 | |
| 1212 | try: |
Zachary Ware | 5537646 | 2018-02-19 14:02:38 -0600 | [diff] [blame] | 1213 | subprocess.Popen(cmd, |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 1214 | stdout=subprocess.PIPE, |
| 1215 | stderr=subprocess.PIPE) |
| 1216 | except OSError: |
| 1217 | pass |
| 1218 | """) |
| 1219 | cmd = [sys.executable, "-c", code] |
| 1220 | proc = subprocess.Popen(cmd, |
| 1221 | stderr=subprocess.PIPE, |
| 1222 | universal_newlines=True) |
| 1223 | with proc: |
| 1224 | stderr = proc.communicate()[1] |
| 1225 | self.assertEqual(stderr, "") |
| 1226 | self.assertEqual(proc.returncode, 0) |
| 1227 | |
Antoine Pitrou | a839271 | 2013-08-30 23:38:13 +0200 | [diff] [blame] | 1228 | def test_double_close_on_error(self): |
| 1229 | # Issue #18851 |
| 1230 | fds = [] |
| 1231 | def open_fds(): |
| 1232 | for i in range(20): |
| 1233 | fds.extend(os.pipe()) |
| 1234 | time.sleep(0.001) |
| 1235 | t = threading.Thread(target=open_fds) |
| 1236 | t.start() |
| 1237 | try: |
| 1238 | with self.assertRaises(EnvironmentError): |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 1239 | subprocess.Popen(NONEXISTING_CMD, |
Antoine Pitrou | a839271 | 2013-08-30 23:38:13 +0200 | [diff] [blame] | 1240 | stdin=subprocess.PIPE, |
| 1241 | stdout=subprocess.PIPE, |
| 1242 | stderr=subprocess.PIPE) |
| 1243 | finally: |
| 1244 | t.join() |
| 1245 | exc = None |
| 1246 | for fd in fds: |
| 1247 | # If a double close occurred, some of those fds will |
| 1248 | # already have been closed by mistake, and os.close() |
| 1249 | # here will raise. |
| 1250 | try: |
| 1251 | os.close(fd) |
| 1252 | except OSError as e: |
| 1253 | exc = e |
| 1254 | if exc is not None: |
| 1255 | raise exc |
| 1256 | |
Gregory P. Smith | d65ba51 | 2014-04-23 00:27:17 -0700 | [diff] [blame] | 1257 | def test_threadsafe_wait(self): |
| 1258 | """Issue21291: Popen.wait() needs to be threadsafe for returncode.""" |
| 1259 | proc = subprocess.Popen([sys.executable, '-c', |
| 1260 | 'import time; time.sleep(12)']) |
| 1261 | self.assertEqual(proc.returncode, None) |
| 1262 | results = [] |
| 1263 | |
| 1264 | def kill_proc_timer_thread(): |
| 1265 | results.append(('thread-start-poll-result', proc.poll())) |
| 1266 | # terminate it from the thread and wait for the result. |
| 1267 | proc.kill() |
| 1268 | proc.wait() |
| 1269 | results.append(('thread-after-kill-and-wait', proc.returncode)) |
| 1270 | # this wait should be a no-op given the above. |
| 1271 | proc.wait() |
| 1272 | results.append(('thread-after-second-wait', proc.returncode)) |
| 1273 | |
| 1274 | # This is a timing sensitive test, the failure mode is |
| 1275 | # triggered when both the main thread and this thread are in |
| 1276 | # the wait() call at once. The delay here is to allow the |
| 1277 | # main thread to most likely be blocked in its wait() call. |
| 1278 | t = threading.Timer(0.2, kill_proc_timer_thread) |
| 1279 | t.start() |
| 1280 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 1281 | if mswindows: |
Gregory P. Smith | ab2719f | 2014-04-23 08:38:36 -0700 | [diff] [blame] | 1282 | expected_errorcode = 1 |
| 1283 | else: |
| 1284 | # Should be -9 because of the proc.kill() from the thread. |
| 1285 | expected_errorcode = -9 |
| 1286 | |
Gregory P. Smith | d65ba51 | 2014-04-23 00:27:17 -0700 | [diff] [blame] | 1287 | # Wait for the process to finish; the thread should kill it |
| 1288 | # long before it finishes on its own. Supplying a timeout |
| 1289 | # triggers a different code path for better coverage. |
Victor Stinner | 0d63bac | 2019-12-11 11:30:03 +0100 | [diff] [blame] | 1290 | proc.wait(timeout=support.SHORT_TIMEOUT) |
Gregory P. Smith | ab2719f | 2014-04-23 08:38:36 -0700 | [diff] [blame] | 1291 | self.assertEqual(proc.returncode, expected_errorcode, |
Gregory P. Smith | d65ba51 | 2014-04-23 00:27:17 -0700 | [diff] [blame] | 1292 | msg="unexpected result in wait from main thread") |
| 1293 | |
| 1294 | # This should be a no-op with no change in returncode. |
| 1295 | proc.wait() |
Gregory P. Smith | ab2719f | 2014-04-23 08:38:36 -0700 | [diff] [blame] | 1296 | self.assertEqual(proc.returncode, expected_errorcode, |
Gregory P. Smith | d65ba51 | 2014-04-23 00:27:17 -0700 | [diff] [blame] | 1297 | msg="unexpected result in second main wait.") |
| 1298 | |
| 1299 | t.join() |
| 1300 | # Ensure that all of the thread results are as expected. |
| 1301 | # When a race condition occurs in wait(), the returncode could |
| 1302 | # be set by the wrong thread that doesn't actually have it |
| 1303 | # leading to an incorrect value. |
| 1304 | self.assertEqual([('thread-start-poll-result', None), |
Gregory P. Smith | ab2719f | 2014-04-23 08:38:36 -0700 | [diff] [blame] | 1305 | ('thread-after-kill-and-wait', expected_errorcode), |
| 1306 | ('thread-after-second-wait', expected_errorcode)], |
Gregory P. Smith | d65ba51 | 2014-04-23 00:27:17 -0700 | [diff] [blame] | 1307 | results) |
| 1308 | |
Victor Stinner | b369358 | 2010-05-21 20:13:12 +0000 | [diff] [blame] | 1309 | def test_issue8780(self): |
| 1310 | # Ensure that stdout is inherited from the parent |
| 1311 | # if stdout=PIPE is not used |
| 1312 | code = ';'.join(( |
| 1313 | 'import subprocess, sys', |
| 1314 | 'retcode = subprocess.call(' |
| 1315 | "[sys.executable, '-c', 'print(\"Hello World!\")'])", |
| 1316 | 'assert retcode == 0')) |
| 1317 | output = subprocess.check_output([sys.executable, '-c', code]) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 1318 | self.assertTrue(output.startswith(b'Hello World!'), ascii(output)) |
Victor Stinner | b369358 | 2010-05-21 20:13:12 +0000 | [diff] [blame] | 1319 | |
Tim Golden | af5ac39 | 2010-08-06 13:03:56 +0000 | [diff] [blame] | 1320 | def test_handles_closed_on_exception(self): |
| 1321 | # If CreateProcess exits with an error, ensure the |
| 1322 | # duplicate output handles are released |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 1323 | ifhandle, ifname = tempfile.mkstemp() |
| 1324 | ofhandle, ofname = tempfile.mkstemp() |
| 1325 | efhandle, efname = tempfile.mkstemp() |
Tim Golden | af5ac39 | 2010-08-06 13:03:56 +0000 | [diff] [blame] | 1326 | try: |
| 1327 | subprocess.Popen (["*"], stdin=ifhandle, stdout=ofhandle, |
| 1328 | stderr=efhandle) |
| 1329 | except OSError: |
| 1330 | os.close(ifhandle) |
| 1331 | os.remove(ifname) |
| 1332 | os.close(ofhandle) |
| 1333 | os.remove(ofname) |
| 1334 | os.close(efhandle) |
| 1335 | os.remove(efname) |
| 1336 | self.assertFalse(os.path.exists(ifname)) |
| 1337 | self.assertFalse(os.path.exists(ofname)) |
| 1338 | self.assertFalse(os.path.exists(efname)) |
| 1339 | |
Ross Lagerwall | 4f61b02 | 2011-04-05 15:34:00 +0200 | [diff] [blame] | 1340 | def test_communicate_epipe(self): |
| 1341 | # Issue 10963: communicate() should hide EPIPE |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1342 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Ross Lagerwall | 4f61b02 | 2011-04-05 15:34:00 +0200 | [diff] [blame] | 1343 | stdin=subprocess.PIPE, |
| 1344 | stdout=subprocess.PIPE, |
| 1345 | stderr=subprocess.PIPE) |
| 1346 | self.addCleanup(p.stdout.close) |
| 1347 | self.addCleanup(p.stderr.close) |
| 1348 | self.addCleanup(p.stdin.close) |
| 1349 | p.communicate(b"x" * 2**20) |
| 1350 | |
Andrey Doroschenko | 645005e | 2019-11-17 17:08:31 +0300 | [diff] [blame] | 1351 | def test_repr(self): |
| 1352 | # Run a command that waits for user input, to check the repr() of |
| 1353 | # a Proc object while and after the sub-process runs. |
| 1354 | code = 'import sys; input(); sys.exit(57)' |
| 1355 | cmd = [sys.executable, '-c', code] |
| 1356 | result = "<Popen: returncode: {}" |
| 1357 | |
| 1358 | with subprocess.Popen( |
| 1359 | cmd, stdin=subprocess.PIPE, universal_newlines=True) as proc: |
| 1360 | self.assertIsNone(proc.returncode) |
| 1361 | self.assertTrue( |
| 1362 | repr(proc).startswith(result.format(proc.returncode)) and |
| 1363 | repr(proc).endswith('>') |
| 1364 | ) |
| 1365 | |
| 1366 | proc.communicate(input='exit...\n') |
| 1367 | proc.wait() |
| 1368 | |
| 1369 | self.assertIsNotNone(proc.returncode) |
| 1370 | self.assertTrue( |
| 1371 | repr(proc).startswith(result.format(proc.returncode)) and |
| 1372 | repr(proc).endswith('>') |
| 1373 | ) |
| 1374 | |
Ross Lagerwall | 4f61b02 | 2011-04-05 15:34:00 +0200 | [diff] [blame] | 1375 | def test_communicate_epipe_only_stdin(self): |
| 1376 | # Issue 10963: communicate() should hide EPIPE |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1377 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Ross Lagerwall | 4f61b02 | 2011-04-05 15:34:00 +0200 | [diff] [blame] | 1378 | stdin=subprocess.PIPE) |
| 1379 | self.addCleanup(p.stdin.close) |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1380 | p.wait() |
Ross Lagerwall | 4f61b02 | 2011-04-05 15:34:00 +0200 | [diff] [blame] | 1381 | p.communicate(b"x" * 2**20) |
| 1382 | |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1383 | @unittest.skipUnless(hasattr(signal, 'SIGUSR1'), |
| 1384 | "Requires signal.SIGUSR1") |
| 1385 | @unittest.skipUnless(hasattr(os, 'kill'), |
| 1386 | "Requires os.kill") |
| 1387 | @unittest.skipUnless(hasattr(os, 'getppid'), |
| 1388 | "Requires os.getppid") |
Victor Stinner | 2cfb6f3 | 2011-07-05 14:00:56 +0200 | [diff] [blame] | 1389 | def test_communicate_eintr(self): |
| 1390 | # Issue #12493: communicate() should handle EINTR |
| 1391 | def handler(signum, frame): |
| 1392 | pass |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1393 | old_handler = signal.signal(signal.SIGUSR1, handler) |
| 1394 | self.addCleanup(signal.signal, signal.SIGUSR1, old_handler) |
Victor Stinner | 2cfb6f3 | 2011-07-05 14:00:56 +0200 | [diff] [blame] | 1395 | |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1396 | args = [sys.executable, "-c", |
| 1397 | 'import os, signal;' |
| 1398 | 'os.kill(os.getppid(), signal.SIGUSR1)'] |
Victor Stinner | 2cfb6f3 | 2011-07-05 14:00:56 +0200 | [diff] [blame] | 1399 | for stream in ('stdout', 'stderr'): |
| 1400 | kw = {stream: subprocess.PIPE} |
| 1401 | with subprocess.Popen(args, **kw) as process: |
Ross Lagerwall | ab66d2a | 2012-02-12 09:01:30 +0200 | [diff] [blame] | 1402 | # communicate() will be interrupted by SIGUSR1 |
Victor Stinner | 2cfb6f3 | 2011-07-05 14:00:56 +0200 | [diff] [blame] | 1403 | process.communicate() |
| 1404 | |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 1405 | |
Gregory P. Smith | 3d8e776 | 2012-11-10 22:32:22 -0800 | [diff] [blame] | 1406 | # This test is Linux-ish specific for simplicity to at least have |
| 1407 | # some coverage. It is not a platform specific bug. |
| 1408 | @unittest.skipUnless(os.path.isdir('/proc/%d/fd' % os.getpid()), |
| 1409 | "Linux specific") |
| 1410 | def test_failed_child_execute_fd_leak(self): |
| 1411 | """Test for the fork() failure fd leak reported in issue16327.""" |
| 1412 | fd_directory = '/proc/%d/fd' % os.getpid() |
| 1413 | fds_before_popen = os.listdir(fd_directory) |
| 1414 | with self.assertRaises(PopenTestException): |
| 1415 | PopenExecuteChildRaises( |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1416 | ZERO_RETURN_CMD, stdin=subprocess.PIPE, |
Gregory P. Smith | 3d8e776 | 2012-11-10 22:32:22 -0800 | [diff] [blame] | 1417 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 1418 | |
| 1419 | # NOTE: This test doesn't verify that the real _execute_child |
| 1420 | # does not close the file descriptors itself on the way out |
| 1421 | # during an exception. Code inspection has confirmed that. |
| 1422 | |
| 1423 | fds_after_exception = os.listdir(fd_directory) |
| 1424 | self.assertEqual(fds_before_popen, fds_after_exception) |
| 1425 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 1426 | @unittest.skipIf(mswindows, "behavior currently not supported on Windows") |
Gregory P. Smith | 8621bb5 | 2017-08-24 14:58:25 -0700 | [diff] [blame] | 1427 | def test_file_not_found_includes_filename(self): |
| 1428 | with self.assertRaises(FileNotFoundError) as c: |
| 1429 | subprocess.call(['/opt/nonexistent_binary', 'with', 'some', 'args']) |
| 1430 | self.assertEqual(c.exception.filename, '/opt/nonexistent_binary') |
| 1431 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 1432 | @unittest.skipIf(mswindows, "behavior currently not supported on Windows") |
Gregory P. Smith | 8621bb5 | 2017-08-24 14:58:25 -0700 | [diff] [blame] | 1433 | def test_file_not_found_with_bad_cwd(self): |
| 1434 | with self.assertRaises(FileNotFoundError) as c: |
| 1435 | subprocess.Popen(['exit', '0'], cwd='/some/nonexistent/directory') |
| 1436 | self.assertEqual(c.exception.filename, '/some/nonexistent/directory') |
| 1437 | |
Batuhan Taşkaya | 4dc5a9d | 2019-12-30 19:02:04 +0300 | [diff] [blame] | 1438 | def test_class_getitems(self): |
| 1439 | self.assertIs(subprocess.Popen[bytes], subprocess.Popen) |
| 1440 | self.assertIs(subprocess.CompletedProcess[str], subprocess.CompletedProcess) |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 1441 | |
| 1442 | class RunFuncTestCase(BaseTestCase): |
| 1443 | def run_python(self, code, **kwargs): |
| 1444 | """Run Python code in a subprocess using subprocess.run""" |
| 1445 | argv = [sys.executable, "-c", code] |
| 1446 | return subprocess.run(argv, **kwargs) |
| 1447 | |
| 1448 | def test_returncode(self): |
| 1449 | # call() function with sequence argument |
| 1450 | cp = self.run_python("import sys; sys.exit(47)") |
| 1451 | self.assertEqual(cp.returncode, 47) |
| 1452 | with self.assertRaises(subprocess.CalledProcessError): |
| 1453 | cp.check_returncode() |
| 1454 | |
| 1455 | def test_check(self): |
| 1456 | with self.assertRaises(subprocess.CalledProcessError) as c: |
| 1457 | self.run_python("import sys; sys.exit(47)", check=True) |
| 1458 | self.assertEqual(c.exception.returncode, 47) |
| 1459 | |
| 1460 | def test_check_zero(self): |
| 1461 | # check_returncode shouldn't raise when returncode is zero |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1462 | cp = subprocess.run(ZERO_RETURN_CMD, check=True) |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 1463 | self.assertEqual(cp.returncode, 0) |
| 1464 | |
| 1465 | def test_timeout(self): |
| 1466 | # run() function with timeout argument; we want to test that the child |
| 1467 | # process gets killed when the timeout expires. If the child isn't |
| 1468 | # killed, this call will deadlock since subprocess.run waits for the |
| 1469 | # child. |
| 1470 | with self.assertRaises(subprocess.TimeoutExpired): |
| 1471 | self.run_python("while True: pass", timeout=0.0001) |
| 1472 | |
| 1473 | def test_capture_stdout(self): |
| 1474 | # capture stdout with zero return code |
| 1475 | cp = self.run_python("print('BDFL')", stdout=subprocess.PIPE) |
| 1476 | self.assertIn(b'BDFL', cp.stdout) |
| 1477 | |
| 1478 | def test_capture_stderr(self): |
| 1479 | cp = self.run_python("import sys; sys.stderr.write('BDFL')", |
| 1480 | stderr=subprocess.PIPE) |
| 1481 | self.assertIn(b'BDFL', cp.stderr) |
| 1482 | |
| 1483 | def test_check_output_stdin_arg(self): |
| 1484 | # run() can be called with stdin set to a file |
| 1485 | tf = tempfile.TemporaryFile() |
| 1486 | self.addCleanup(tf.close) |
| 1487 | tf.write(b'pear') |
| 1488 | tf.seek(0) |
| 1489 | cp = self.run_python( |
| 1490 | "import sys; sys.stdout.write(sys.stdin.read().upper())", |
| 1491 | stdin=tf, stdout=subprocess.PIPE) |
| 1492 | self.assertIn(b'PEAR', cp.stdout) |
| 1493 | |
| 1494 | def test_check_output_input_arg(self): |
| 1495 | # check_output() can be called with input set to a string |
| 1496 | cp = self.run_python( |
| 1497 | "import sys; sys.stdout.write(sys.stdin.read().upper())", |
| 1498 | input=b'pear', stdout=subprocess.PIPE) |
| 1499 | self.assertIn(b'PEAR', cp.stdout) |
| 1500 | |
| 1501 | def test_check_output_stdin_with_input_arg(self): |
| 1502 | # run() refuses to accept 'stdin' with 'input' |
| 1503 | tf = tempfile.TemporaryFile() |
| 1504 | self.addCleanup(tf.close) |
| 1505 | tf.write(b'pear') |
| 1506 | tf.seek(0) |
| 1507 | with self.assertRaises(ValueError, |
| 1508 | msg="Expected ValueError when stdin and input args supplied.") as c: |
| 1509 | output = self.run_python("print('will not be run')", |
| 1510 | stdin=tf, input=b'hare') |
| 1511 | self.assertIn('stdin', c.exception.args[0]) |
| 1512 | self.assertIn('input', c.exception.args[0]) |
| 1513 | |
| 1514 | def test_check_output_timeout(self): |
| 1515 | with self.assertRaises(subprocess.TimeoutExpired) as c: |
| 1516 | cp = self.run_python(( |
| 1517 | "import sys, time\n" |
| 1518 | "sys.stdout.write('BDFL')\n" |
| 1519 | "sys.stdout.flush()\n" |
| 1520 | "time.sleep(3600)"), |
| 1521 | # Some heavily loaded buildbots (sparc Debian 3.x) require |
| 1522 | # this much time to start and print. |
| 1523 | timeout=3, stdout=subprocess.PIPE) |
| 1524 | self.assertEqual(c.exception.output, b'BDFL') |
| 1525 | # output is aliased to stdout |
| 1526 | self.assertEqual(c.exception.stdout, b'BDFL') |
| 1527 | |
| 1528 | def test_run_kwargs(self): |
| 1529 | newenv = os.environ.copy() |
| 1530 | newenv["FRUIT"] = "banana" |
| 1531 | cp = self.run_python(('import sys, os;' |
| 1532 | 'sys.exit(33 if os.getenv("FRUIT")=="banana" else 31)'), |
| 1533 | env=newenv) |
| 1534 | self.assertEqual(cp.returncode, 33) |
| 1535 | |
Serhiy Storchaka | 9e3c452 | 2019-05-28 22:49:35 +0300 | [diff] [blame] | 1536 | def test_run_with_pathlike_path(self): |
| 1537 | # bpo-31961: test run(pathlike_object) |
| 1538 | # the name of a command that can be run without |
Min ho Kim | c4cacc8 | 2019-07-31 08:16:13 +1000 | [diff] [blame] | 1539 | # any arguments that exit fast |
Serhiy Storchaka | 9e3c452 | 2019-05-28 22:49:35 +0300 | [diff] [blame] | 1540 | prog = 'tree.com' if mswindows else 'ls' |
| 1541 | path = shutil.which(prog) |
| 1542 | if path is None: |
| 1543 | self.skipTest(f'{prog} required for this test') |
| 1544 | path = FakePath(path) |
| 1545 | res = subprocess.run(path, stdout=subprocess.DEVNULL) |
| 1546 | self.assertEqual(res.returncode, 0) |
| 1547 | with self.assertRaises(TypeError): |
| 1548 | subprocess.run(path, stdout=subprocess.DEVNULL, shell=True) |
| 1549 | |
| 1550 | def test_run_with_bytes_path_and_arguments(self): |
| 1551 | # bpo-31961: test run([bytes_object, b'additional arguments']) |
| 1552 | path = os.fsencode(sys.executable) |
| 1553 | args = [path, '-c', b'import sys; sys.exit(57)'] |
| 1554 | res = subprocess.run(args) |
| 1555 | self.assertEqual(res.returncode, 57) |
| 1556 | |
| 1557 | def test_run_with_pathlike_path_and_arguments(self): |
| 1558 | # bpo-31961: test run([pathlike_object, 'additional arguments']) |
| 1559 | path = FakePath(sys.executable) |
| 1560 | args = [path, '-c', 'import sys; sys.exit(57)'] |
| 1561 | res = subprocess.run(args) |
| 1562 | self.assertEqual(res.returncode, 57) |
| 1563 | |
Bo Bayles | ce0f33d | 2018-01-30 00:40:39 -0600 | [diff] [blame] | 1564 | def test_capture_output(self): |
| 1565 | cp = self.run_python(("import sys;" |
| 1566 | "sys.stdout.write('BDFL'); " |
| 1567 | "sys.stderr.write('FLUFL')"), |
| 1568 | capture_output=True) |
| 1569 | self.assertIn(b'BDFL', cp.stdout) |
| 1570 | self.assertIn(b'FLUFL', cp.stderr) |
| 1571 | |
| 1572 | def test_stdout_with_capture_output_arg(self): |
| 1573 | # run() refuses to accept 'stdout' with 'capture_output' |
| 1574 | tf = tempfile.TemporaryFile() |
| 1575 | self.addCleanup(tf.close) |
| 1576 | with self.assertRaises(ValueError, |
| 1577 | msg=("Expected ValueError when stdout and capture_output " |
| 1578 | "args supplied.")) as c: |
| 1579 | output = self.run_python("print('will not be run')", |
| 1580 | capture_output=True, stdout=tf) |
| 1581 | self.assertIn('stdout', c.exception.args[0]) |
| 1582 | self.assertIn('capture_output', c.exception.args[0]) |
| 1583 | |
| 1584 | def test_stderr_with_capture_output_arg(self): |
| 1585 | # run() refuses to accept 'stderr' with 'capture_output' |
| 1586 | tf = tempfile.TemporaryFile() |
| 1587 | self.addCleanup(tf.close) |
| 1588 | with self.assertRaises(ValueError, |
| 1589 | msg=("Expected ValueError when stderr and capture_output " |
| 1590 | "args supplied.")) as c: |
| 1591 | output = self.run_python("print('will not be run')", |
| 1592 | capture_output=True, stderr=tf) |
| 1593 | self.assertIn('stderr', c.exception.args[0]) |
| 1594 | self.assertIn('capture_output', c.exception.args[0]) |
| 1595 | |
Gregory P. Smith | 580d278 | 2019-09-11 04:23:05 -0500 | [diff] [blame] | 1596 | # This test _might_ wind up a bit fragile on loaded build+test machines |
| 1597 | # as it depends on the timing with wide enough margins for normal situations |
| 1598 | # but does assert that it happened "soon enough" to believe the right thing |
| 1599 | # happened. |
| 1600 | @unittest.skipIf(mswindows, "requires posix like 'sleep' shell command") |
| 1601 | def test_run_with_shell_timeout_and_capture_output(self): |
| 1602 | """Output capturing after a timeout mustn't hang forever on open filehandles.""" |
| 1603 | before_secs = time.monotonic() |
| 1604 | try: |
| 1605 | subprocess.run('sleep 3', shell=True, timeout=0.1, |
| 1606 | capture_output=True) # New session unspecified. |
| 1607 | except subprocess.TimeoutExpired as exc: |
| 1608 | after_secs = time.monotonic() |
| 1609 | stacks = traceback.format_exc() # assertRaises doesn't give this. |
| 1610 | else: |
| 1611 | self.fail("TimeoutExpired not raised.") |
| 1612 | self.assertLess(after_secs - before_secs, 1.5, |
| 1613 | msg="TimeoutExpired was delayed! Bad traceback:\n```\n" |
| 1614 | f"{stacks}```") |
| 1615 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 1616 | |
Gregory P. Smith | 693aa80 | 2019-09-13 14:43:35 +0100 | [diff] [blame] | 1617 | def _get_test_grp_name(): |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1618 | for name_group in ('staff', 'nogroup', 'grp', 'nobody', 'nfsnobody'): |
Gregory P. Smith | 693aa80 | 2019-09-13 14:43:35 +0100 | [diff] [blame] | 1619 | if grp: |
| 1620 | try: |
| 1621 | grp.getgrnam(name_group) |
| 1622 | except KeyError: |
| 1623 | continue |
| 1624 | return name_group |
| 1625 | else: |
| 1626 | raise unittest.SkipTest('No identified group name to use for this test on this platform.') |
| 1627 | |
| 1628 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 1629 | @unittest.skipIf(mswindows, "POSIX specific tests") |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 1630 | class POSIXProcessTestCase(BaseTestCase): |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 1631 | |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1632 | def setUp(self): |
| 1633 | super().setUp() |
| 1634 | self._nonexistent_dir = "/_this/pa.th/does/not/exist" |
| 1635 | |
| 1636 | def _get_chdir_exception(self): |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1637 | try: |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1638 | os.chdir(self._nonexistent_dir) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1639 | except OSError as e: |
| 1640 | # This avoids hard coding the errno value or the OS perror() |
| 1641 | # string and instead capture the exception that we want to see |
| 1642 | # below for comparison. |
| 1643 | desired_exception = e |
| 1644 | else: |
Martin Panter | eb99570 | 2016-07-28 01:11:04 +0000 | [diff] [blame] | 1645 | self.fail("chdir to nonexistent directory %s succeeded." % |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1646 | self._nonexistent_dir) |
| 1647 | return desired_exception |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1648 | |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1649 | def test_exception_cwd(self): |
| 1650 | """Test error in the child raised in the parent for a bad cwd.""" |
| 1651 | desired_exception = self._get_chdir_exception() |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1652 | try: |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1653 | p = subprocess.Popen([sys.executable, "-c", ""], |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1654 | cwd=self._nonexistent_dir) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1655 | except OSError as e: |
| 1656 | # Test that the child process chdir failure actually makes |
| 1657 | # it up to the parent process as the correct exception. |
| 1658 | self.assertEqual(desired_exception.errno, e.errno) |
| 1659 | self.assertEqual(desired_exception.strerror, e.strerror) |
Zackery Spytz | 73870bf | 2018-09-11 09:54:07 -0600 | [diff] [blame] | 1660 | self.assertEqual(desired_exception.filename, e.filename) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1661 | else: |
| 1662 | self.fail("Expected OSError: %s" % desired_exception) |
| 1663 | |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1664 | def test_exception_bad_executable(self): |
| 1665 | """Test error in the child raised in the parent for a bad executable.""" |
| 1666 | desired_exception = self._get_chdir_exception() |
| 1667 | try: |
| 1668 | p = subprocess.Popen([sys.executable, "-c", ""], |
| 1669 | executable=self._nonexistent_dir) |
| 1670 | except OSError as e: |
| 1671 | # Test that the child process exec failure actually makes |
| 1672 | # it up to the parent process as the correct exception. |
| 1673 | self.assertEqual(desired_exception.errno, e.errno) |
| 1674 | self.assertEqual(desired_exception.strerror, e.strerror) |
Zackery Spytz | 73870bf | 2018-09-11 09:54:07 -0600 | [diff] [blame] | 1675 | self.assertEqual(desired_exception.filename, e.filename) |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1676 | else: |
| 1677 | self.fail("Expected OSError: %s" % desired_exception) |
| 1678 | |
| 1679 | def test_exception_bad_args_0(self): |
| 1680 | """Test error in the child raised in the parent for a bad args[0].""" |
| 1681 | desired_exception = self._get_chdir_exception() |
| 1682 | try: |
| 1683 | p = subprocess.Popen([self._nonexistent_dir, "-c", ""]) |
| 1684 | except OSError as e: |
| 1685 | # Test that the child process exec failure actually makes |
| 1686 | # it up to the parent process as the correct exception. |
| 1687 | self.assertEqual(desired_exception.errno, e.errno) |
| 1688 | self.assertEqual(desired_exception.strerror, e.strerror) |
Zackery Spytz | 73870bf | 2018-09-11 09:54:07 -0600 | [diff] [blame] | 1689 | self.assertEqual(desired_exception.filename, e.filename) |
Gregory P. Smith | 5591b02 | 2012-10-10 03:34:47 -0700 | [diff] [blame] | 1690 | else: |
| 1691 | self.fail("Expected OSError: %s" % desired_exception) |
| 1692 | |
Ammar Askar | 3fc499b | 2017-09-06 02:41:30 -0400 | [diff] [blame] | 1693 | # We mock the __del__ method for Popen in the next two tests |
| 1694 | # because it does cleanup based on the pid returned by fork_exec |
| 1695 | # along with issuing a resource warning if it still exists. Since |
| 1696 | # we don't actually spawn a process in these tests we can forego |
| 1697 | # the destructor. An alternative would be to set _child_created to |
| 1698 | # False before the destructor is called but there is no easy way |
| 1699 | # to do that |
| 1700 | class PopenNoDestructor(subprocess.Popen): |
| 1701 | def __del__(self): |
| 1702 | pass |
| 1703 | |
| 1704 | @mock.patch("subprocess._posixsubprocess.fork_exec") |
| 1705 | def test_exception_errpipe_normal(self, fork_exec): |
| 1706 | """Test error passing done through errpipe_write in the good case""" |
| 1707 | def proper_error(*args): |
| 1708 | errpipe_write = args[13] |
| 1709 | # Write the hex for the error code EISDIR: 'is a directory' |
| 1710 | err_code = '{:x}'.format(errno.EISDIR).encode() |
| 1711 | os.write(errpipe_write, b"OSError:" + err_code + b":") |
| 1712 | return 0 |
| 1713 | |
| 1714 | fork_exec.side_effect = proper_error |
| 1715 | |
Victor Stinner | 11045c9 | 2017-10-05 06:32:53 -0700 | [diff] [blame] | 1716 | with mock.patch("subprocess.os.waitpid", |
| 1717 | side_effect=ChildProcessError): |
| 1718 | with self.assertRaises(IsADirectoryError): |
| 1719 | self.PopenNoDestructor(["non_existent_command"]) |
Ammar Askar | 3fc499b | 2017-09-06 02:41:30 -0400 | [diff] [blame] | 1720 | |
| 1721 | @mock.patch("subprocess._posixsubprocess.fork_exec") |
| 1722 | def test_exception_errpipe_bad_data(self, fork_exec): |
| 1723 | """Test error passing done through errpipe_write where its not |
| 1724 | in the expected format""" |
| 1725 | error_data = b"\xFF\x00\xDE\xAD" |
| 1726 | def bad_error(*args): |
| 1727 | errpipe_write = args[13] |
| 1728 | # Anything can be in the pipe, no assumptions should |
| 1729 | # be made about its encoding, so we'll write some |
| 1730 | # arbitrary hex bytes to test it out |
| 1731 | os.write(errpipe_write, error_data) |
| 1732 | return 0 |
| 1733 | |
| 1734 | fork_exec.side_effect = bad_error |
| 1735 | |
Victor Stinner | 11045c9 | 2017-10-05 06:32:53 -0700 | [diff] [blame] | 1736 | with mock.patch("subprocess.os.waitpid", |
| 1737 | side_effect=ChildProcessError): |
| 1738 | with self.assertRaises(subprocess.SubprocessError) as e: |
| 1739 | self.PopenNoDestructor(["non_existent_command"]) |
Ammar Askar | 3fc499b | 2017-09-06 02:41:30 -0400 | [diff] [blame] | 1740 | |
| 1741 | self.assertIn(repr(error_data), str(e.exception)) |
| 1742 | |
Gregory P. Smith | 5f3d04f | 2018-06-05 12:00:57 -0700 | [diff] [blame] | 1743 | @unittest.skipIf(not os.path.exists('/proc/self/status'), |
| 1744 | "need /proc/self/status") |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1745 | def test_restore_signals(self): |
Gregory P. Smith | 5f3d04f | 2018-06-05 12:00:57 -0700 | [diff] [blame] | 1746 | # Blindly assume that cat exists on systems with /proc/self/status... |
| 1747 | default_proc_status = subprocess.check_output( |
| 1748 | ['cat', '/proc/self/status'], |
| 1749 | restore_signals=False) |
| 1750 | for line in default_proc_status.splitlines(): |
| 1751 | if line.startswith(b'SigIgn'): |
| 1752 | default_sig_ign_mask = line |
| 1753 | break |
| 1754 | else: |
| 1755 | self.skipTest("SigIgn not found in /proc/self/status.") |
| 1756 | restored_proc_status = subprocess.check_output( |
| 1757 | ['cat', '/proc/self/status'], |
| 1758 | restore_signals=True) |
| 1759 | for line in restored_proc_status.splitlines(): |
| 1760 | if line.startswith(b'SigIgn'): |
| 1761 | restored_sig_ign_mask = line |
| 1762 | break |
| 1763 | self.assertNotEqual(default_sig_ign_mask, restored_sig_ign_mask, |
| 1764 | msg="restore_signals=True should've unblocked " |
| 1765 | "SIGPIPE and friends.") |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1766 | |
| 1767 | def test_start_new_session(self): |
| 1768 | # For code coverage of calling setsid(). We don't care if we get an |
| 1769 | # EPERM error from it depending on the test execution environment, that |
| 1770 | # still indicates that it was called. |
| 1771 | try: |
| 1772 | output = subprocess.check_output( |
Victor Stinner | 5884043 | 2019-06-14 19:31:43 +0200 | [diff] [blame] | 1773 | [sys.executable, "-c", "import os; print(os.getsid(0))"], |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1774 | start_new_session=True) |
| 1775 | except OSError as e: |
| 1776 | if e.errno != errno.EPERM: |
| 1777 | raise |
| 1778 | else: |
Victor Stinner | 5884043 | 2019-06-14 19:31:43 +0200 | [diff] [blame] | 1779 | parent_sid = os.getsid(0) |
| 1780 | child_sid = int(output) |
| 1781 | self.assertNotEqual(parent_sid, child_sid) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1782 | |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1783 | @unittest.skipUnless(hasattr(os, 'setreuid'), 'no setreuid on platform') |
| 1784 | def test_user(self): |
| 1785 | # For code coverage of the user parameter. We don't care if we get an |
| 1786 | # EPERM error from it depending on the test execution environment, that |
| 1787 | # still indicates that it was called. |
| 1788 | |
| 1789 | uid = os.geteuid() |
| 1790 | test_users = [65534 if uid != 65534 else 65533, uid] |
| 1791 | name_uid = "nobody" if sys.platform != 'darwin' else "unknown" |
| 1792 | |
| 1793 | if pwd is not None: |
| 1794 | test_users.append(name_uid) |
| 1795 | |
| 1796 | for user in test_users: |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1797 | # posix_spawn() may be used with close_fds=False |
| 1798 | for close_fds in (False, True): |
| 1799 | with self.subTest(user=user, close_fds=close_fds): |
| 1800 | try: |
| 1801 | output = subprocess.check_output( |
| 1802 | [sys.executable, "-c", |
| 1803 | "import os; print(os.getuid())"], |
| 1804 | user=user, |
| 1805 | close_fds=close_fds) |
| 1806 | except PermissionError: # (EACCES, EPERM) |
| 1807 | pass |
| 1808 | except OSError as e: |
| 1809 | if e.errno not in (errno.EACCES, errno.EPERM): |
| 1810 | raise |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1811 | else: |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1812 | if isinstance(user, str): |
| 1813 | user_uid = pwd.getpwnam(user).pw_uid |
| 1814 | else: |
| 1815 | user_uid = user |
| 1816 | child_user = int(output) |
| 1817 | self.assertEqual(child_user, user_uid) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1818 | |
| 1819 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1820 | subprocess.check_call(ZERO_RETURN_CMD, user=-1) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1821 | |
| 1822 | if pwd is None: |
| 1823 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1824 | subprocess.check_call(ZERO_RETURN_CMD, user=name_uid) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1825 | |
| 1826 | @unittest.skipIf(hasattr(os, 'setreuid'), 'setreuid() available on platform') |
| 1827 | def test_user_error(self): |
| 1828 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1829 | subprocess.check_call(ZERO_RETURN_CMD, user=65535) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1830 | |
| 1831 | @unittest.skipUnless(hasattr(os, 'setregid'), 'no setregid() on platform') |
| 1832 | def test_group(self): |
| 1833 | gid = os.getegid() |
| 1834 | group_list = [65534 if gid != 65534 else 65533] |
Gregory P. Smith | 693aa80 | 2019-09-13 14:43:35 +0100 | [diff] [blame] | 1835 | name_group = _get_test_grp_name() |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1836 | |
| 1837 | if grp is not None: |
| 1838 | group_list.append(name_group) |
| 1839 | |
| 1840 | for group in group_list + [gid]: |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1841 | # posix_spawn() may be used with close_fds=False |
| 1842 | for close_fds in (False, True): |
| 1843 | with self.subTest(group=group, close_fds=close_fds): |
| 1844 | try: |
| 1845 | output = subprocess.check_output( |
| 1846 | [sys.executable, "-c", |
| 1847 | "import os; print(os.getgid())"], |
| 1848 | group=group, |
| 1849 | close_fds=close_fds) |
| 1850 | except PermissionError: # (EACCES, EPERM) |
| 1851 | pass |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1852 | else: |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1853 | if isinstance(group, str): |
| 1854 | group_gid = grp.getgrnam(group).gr_gid |
| 1855 | else: |
| 1856 | group_gid = group |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1857 | |
Victor Stinner | faca855 | 2019-09-25 15:52:49 +0200 | [diff] [blame] | 1858 | child_group = int(output) |
| 1859 | self.assertEqual(child_group, group_gid) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1860 | |
| 1861 | # make sure we bomb on negative values |
| 1862 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1863 | subprocess.check_call(ZERO_RETURN_CMD, group=-1) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1864 | |
| 1865 | if grp is None: |
| 1866 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1867 | subprocess.check_call(ZERO_RETURN_CMD, group=name_group) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1868 | |
| 1869 | @unittest.skipIf(hasattr(os, 'setregid'), 'setregid() available on platform') |
| 1870 | def test_group_error(self): |
| 1871 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1872 | subprocess.check_call(ZERO_RETURN_CMD, group=65535) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1873 | |
| 1874 | @unittest.skipUnless(hasattr(os, 'setgroups'), 'no setgroups() on platform') |
| 1875 | def test_extra_groups(self): |
| 1876 | gid = os.getegid() |
| 1877 | group_list = [65534 if gid != 65534 else 65533] |
Gregory P. Smith | 693aa80 | 2019-09-13 14:43:35 +0100 | [diff] [blame] | 1878 | name_group = _get_test_grp_name() |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1879 | perm_error = False |
| 1880 | |
| 1881 | if grp is not None: |
| 1882 | group_list.append(name_group) |
| 1883 | |
| 1884 | try: |
| 1885 | output = subprocess.check_output( |
| 1886 | [sys.executable, "-c", |
| 1887 | "import os, sys, json; json.dump(os.getgroups(), sys.stdout)"], |
| 1888 | extra_groups=group_list) |
| 1889 | except OSError as ex: |
| 1890 | if ex.errno != errno.EPERM: |
| 1891 | raise |
| 1892 | perm_error = True |
| 1893 | |
| 1894 | else: |
| 1895 | parent_groups = os.getgroups() |
| 1896 | child_groups = json.loads(output) |
| 1897 | |
| 1898 | if grp is not None: |
| 1899 | desired_gids = [grp.getgrnam(g).gr_gid if isinstance(g, str) else g |
| 1900 | for g in group_list] |
| 1901 | else: |
| 1902 | desired_gids = group_list |
| 1903 | |
| 1904 | if perm_error: |
| 1905 | self.assertEqual(set(child_groups), set(parent_groups)) |
| 1906 | else: |
| 1907 | self.assertEqual(set(desired_gids), set(child_groups)) |
| 1908 | |
| 1909 | # make sure we bomb on negative values |
| 1910 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1911 | subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[-1]) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1912 | |
| 1913 | if grp is None: |
| 1914 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1915 | subprocess.check_call(ZERO_RETURN_CMD, |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1916 | extra_groups=[name_group]) |
| 1917 | |
| 1918 | @unittest.skipIf(hasattr(os, 'setgroups'), 'setgroups() available on platform') |
| 1919 | def test_extra_groups_error(self): |
| 1920 | with self.assertRaises(ValueError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1921 | subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[]) |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 1922 | |
Gregory P. Smith | f3751ef | 2019-10-12 13:24:56 -0700 | [diff] [blame] | 1923 | @unittest.skipIf(mswindows or not hasattr(os, 'umask'), |
| 1924 | 'POSIX umask() is not available.') |
| 1925 | def test_umask(self): |
| 1926 | tmpdir = None |
| 1927 | try: |
| 1928 | tmpdir = tempfile.mkdtemp() |
| 1929 | name = os.path.join(tmpdir, "beans") |
| 1930 | # We set an unusual umask in the child so as a unique mode |
| 1931 | # for us to test the child's touched file for. |
| 1932 | subprocess.check_call( |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 1933 | [sys.executable, "-c", f"open({name!r}, 'w').close()"], |
Gregory P. Smith | f3751ef | 2019-10-12 13:24:56 -0700 | [diff] [blame] | 1934 | umask=0o053) |
| 1935 | # Ignore execute permissions entirely in our test, |
| 1936 | # filesystems could be mounted to ignore or force that. |
| 1937 | st_mode = os.stat(name).st_mode & 0o666 |
| 1938 | expected_mode = 0o624 |
| 1939 | self.assertEqual(expected_mode, st_mode, |
| 1940 | msg=f'{oct(expected_mode)} != {oct(st_mode)}') |
| 1941 | finally: |
| 1942 | if tmpdir is not None: |
| 1943 | shutil.rmtree(tmpdir) |
| 1944 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1945 | def test_run_abort(self): |
| 1946 | # returncode handles signal termination |
Antoine Pitrou | 77e904e | 2013-10-08 23:04:32 +0200 | [diff] [blame] | 1947 | with support.SuppressCrashReport(): |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1948 | p = subprocess.Popen([sys.executable, "-c", |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1949 | 'import os; os.abort()']) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1950 | p.wait() |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1951 | self.assertEqual(-p.returncode, signal.SIGABRT) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1952 | |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | d6da760 | 2016-06-03 06:14:06 +0000 | [diff] [blame] | 1953 | def test_CalledProcessError_str_signal(self): |
| 1954 | err = subprocess.CalledProcessError(-int(signal.SIGABRT), "fake cmd") |
| 1955 | error_string = str(err) |
| 1956 | # We're relying on the repr() of the signal.Signals intenum to provide |
| 1957 | # the word signal, the signal name and the numeric value. |
| 1958 | self.assertIn("signal", error_string.lower()) |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | b414906 | 2016-06-03 06:19:35 +0000 | [diff] [blame] | 1959 | # We're not being specific about the signal name as some signals have |
| 1960 | # multiple names and which name is revealed can vary. |
| 1961 | self.assertIn("SIG", error_string) |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | d6da760 | 2016-06-03 06:14:06 +0000 | [diff] [blame] | 1962 | self.assertIn(str(signal.SIGABRT), error_string) |
| 1963 | |
| 1964 | def test_CalledProcessError_str_unknown_signal(self): |
| 1965 | err = subprocess.CalledProcessError(-9876543, "fake cmd") |
| 1966 | error_string = str(err) |
| 1967 | self.assertIn("unknown signal 9876543.", error_string) |
| 1968 | |
| 1969 | def test_CalledProcessError_str_non_zero(self): |
| 1970 | err = subprocess.CalledProcessError(2, "fake cmd") |
| 1971 | error_string = str(err) |
| 1972 | self.assertIn("non-zero exit status 2.", error_string) |
| 1973 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1974 | def test_preexec(self): |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1975 | # DISCLAIMER: Setting environment variables is *not* a good use |
| 1976 | # of a preexec_fn. This is merely a test. |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 1977 | p = subprocess.Popen([sys.executable, "-c", |
| 1978 | 'import sys,os;' |
| 1979 | 'sys.stdout.write(os.getenv("FRUIT"))'], |
| 1980 | stdout=subprocess.PIPE, |
| 1981 | preexec_fn=lambda: os.putenv("FRUIT", "apple")) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 1982 | with p: |
| 1983 | self.assertEqual(p.stdout.read(), b"apple") |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1984 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1985 | def test_preexec_exception(self): |
| 1986 | def raise_it(): |
| 1987 | raise ValueError("What if two swallows carried a coconut?") |
| 1988 | try: |
| 1989 | p = subprocess.Popen([sys.executable, "-c", ""], |
| 1990 | preexec_fn=raise_it) |
Gregory P. Smith | 8d07c26 | 2012-11-10 23:53:47 -0800 | [diff] [blame] | 1991 | except subprocess.SubprocessError as e: |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 1992 | self.assertTrue( |
| 1993 | subprocess._posixsubprocess, |
| 1994 | "Expected a ValueError from the preexec_fn") |
| 1995 | except ValueError as e: |
| 1996 | self.assertIn("coconut", e.args[0]) |
| 1997 | else: |
| 1998 | self.fail("Exception raised by preexec_fn did not make it " |
| 1999 | "to the parent process.") |
| 2000 | |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2001 | class _TestExecuteChildPopen(subprocess.Popen): |
| 2002 | """Used to test behavior at the end of _execute_child.""" |
| 2003 | def __init__(self, testcase, *args, **kwargs): |
| 2004 | self._testcase = testcase |
| 2005 | subprocess.Popen.__init__(self, *args, **kwargs) |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2006 | |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2007 | def _execute_child(self, *args, **kwargs): |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2008 | try: |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2009 | subprocess.Popen._execute_child(self, *args, **kwargs) |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2010 | finally: |
| 2011 | # Open a bunch of file descriptors and verify that |
| 2012 | # none of them are the same as the ones the Popen |
| 2013 | # instance is using for stdin/stdout/stderr. |
| 2014 | devzero_fds = [os.open("/dev/zero", os.O_RDONLY) |
| 2015 | for _ in range(8)] |
| 2016 | try: |
| 2017 | for fd in devzero_fds: |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2018 | self._testcase.assertNotIn( |
| 2019 | fd, (self.stdin.fileno(), self.stdout.fileno(), |
| 2020 | self.stderr.fileno()), |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2021 | msg="At least one fd was closed early.") |
| 2022 | finally: |
Richard Oudkerk | 0e547b6 | 2013-06-10 16:29:19 +0100 | [diff] [blame] | 2023 | for fd in devzero_fds: |
| 2024 | os.close(fd) |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2025 | |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2026 | @unittest.skipIf(not os.path.exists("/dev/zero"), "/dev/zero required.") |
| 2027 | def test_preexec_errpipe_does_not_double_close_pipes(self): |
| 2028 | """Issue16140: Don't double close pipes on preexec error.""" |
| 2029 | |
| 2030 | def raise_it(): |
Gregory P. Smith | 65ee6ec | 2012-11-11 10:12:40 -0800 | [diff] [blame] | 2031 | raise subprocess.SubprocessError( |
| 2032 | "force the _execute_child() errpipe_data path.") |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2033 | |
Gregory P. Smith | c2c4cb6 | 2012-11-11 01:41:49 -0800 | [diff] [blame] | 2034 | with self.assertRaises(subprocess.SubprocessError): |
Gregory P. Smith | e27faac | 2012-11-11 09:59:27 -0800 | [diff] [blame] | 2035 | self._TestExecuteChildPopen( |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2036 | self, ZERO_RETURN_CMD, |
Gregory P. Smith | 12489d9 | 2012-11-11 01:37:02 -0800 | [diff] [blame] | 2037 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, |
| 2038 | stderr=subprocess.PIPE, preexec_fn=raise_it) |
| 2039 | |
Gregory P. Smith | 32ec9da | 2010-03-19 16:53:08 +0000 | [diff] [blame] | 2040 | def test_preexec_gc_module_failure(self): |
| 2041 | # This tests the code that disables garbage collection if the child |
| 2042 | # process will execute any Python. |
| 2043 | def raise_runtime_error(): |
| 2044 | raise RuntimeError("this shouldn't escape") |
| 2045 | enabled = gc.isenabled() |
| 2046 | orig_gc_disable = gc.disable |
| 2047 | orig_gc_isenabled = gc.isenabled |
| 2048 | try: |
| 2049 | gc.disable() |
| 2050 | self.assertFalse(gc.isenabled()) |
| 2051 | subprocess.call([sys.executable, '-c', ''], |
| 2052 | preexec_fn=lambda: None) |
| 2053 | self.assertFalse(gc.isenabled(), |
| 2054 | "Popen enabled gc when it shouldn't.") |
| 2055 | |
| 2056 | gc.enable() |
| 2057 | self.assertTrue(gc.isenabled()) |
| 2058 | subprocess.call([sys.executable, '-c', ''], |
| 2059 | preexec_fn=lambda: None) |
| 2060 | self.assertTrue(gc.isenabled(), "Popen left gc disabled.") |
| 2061 | |
| 2062 | gc.disable = raise_runtime_error |
| 2063 | self.assertRaises(RuntimeError, subprocess.Popen, |
| 2064 | [sys.executable, '-c', ''], |
| 2065 | preexec_fn=lambda: None) |
| 2066 | |
| 2067 | del gc.isenabled # force an AttributeError |
| 2068 | self.assertRaises(AttributeError, subprocess.Popen, |
| 2069 | [sys.executable, '-c', ''], |
| 2070 | preexec_fn=lambda: None) |
| 2071 | finally: |
| 2072 | gc.disable = orig_gc_disable |
| 2073 | gc.isenabled = orig_gc_isenabled |
| 2074 | if not enabled: |
| 2075 | gc.disable() |
| 2076 | |
Martin Panter | f7fdbda | 2015-12-05 09:51:52 +0000 | [diff] [blame] | 2077 | @unittest.skipIf( |
| 2078 | sys.platform == 'darwin', 'setrlimit() seems to fail on OS X') |
Martin Panter | afdd513 | 2015-11-30 02:21:41 +0000 | [diff] [blame] | 2079 | def test_preexec_fork_failure(self): |
| 2080 | # The internal code did not preserve the previous exception when |
| 2081 | # re-enabling garbage collection |
| 2082 | try: |
| 2083 | from resource import getrlimit, setrlimit, RLIMIT_NPROC |
| 2084 | except ImportError as err: |
| 2085 | self.skipTest(err) # RLIMIT_NPROC is specific to Linux and BSD |
| 2086 | limits = getrlimit(RLIMIT_NPROC) |
| 2087 | [_, hard] = limits |
| 2088 | setrlimit(RLIMIT_NPROC, (0, hard)) |
| 2089 | self.addCleanup(setrlimit, RLIMIT_NPROC, limits) |
Martin Panter | 5cf791b | 2015-12-11 05:40:14 +0000 | [diff] [blame] | 2090 | try: |
Martin Panter | afdd513 | 2015-11-30 02:21:41 +0000 | [diff] [blame] | 2091 | subprocess.call([sys.executable, '-c', ''], |
| 2092 | preexec_fn=lambda: None) |
Martin Panter | 5cf791b | 2015-12-11 05:40:14 +0000 | [diff] [blame] | 2093 | except BlockingIOError: |
| 2094 | # Forking should raise EAGAIN, translated to BlockingIOError |
| 2095 | pass |
| 2096 | else: |
| 2097 | self.skipTest('RLIMIT_NPROC had no effect; probably superuser') |
Martin Panter | afdd513 | 2015-11-30 02:21:41 +0000 | [diff] [blame] | 2098 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2099 | def test_args_string(self): |
| 2100 | # args is a string |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 2101 | fd, fname = tempfile.mkstemp() |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2102 | # reopen in text mode |
Victor Stinner | f6782ac | 2010-10-16 23:46:43 +0000 | [diff] [blame] | 2103 | with open(fd, "w", errors="surrogateescape") as fobj: |
Xavier de Gaye | d141531 | 2016-07-22 12:15:29 +0200 | [diff] [blame] | 2104 | fobj.write("#!%s\n" % support.unix_shell) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2105 | fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" % |
| 2106 | sys.executable) |
| 2107 | os.chmod(fname, 0o700) |
| 2108 | p = subprocess.Popen(fname) |
| 2109 | p.wait() |
| 2110 | os.remove(fname) |
| 2111 | self.assertEqual(p.returncode, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 2112 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2113 | def test_invalid_args(self): |
| 2114 | # invalid arguments should raise ValueError |
| 2115 | self.assertRaises(ValueError, subprocess.call, |
| 2116 | [sys.executable, "-c", |
| 2117 | "import sys; sys.exit(47)"], |
| 2118 | startupinfo=47) |
| 2119 | self.assertRaises(ValueError, subprocess.call, |
| 2120 | [sys.executable, "-c", |
| 2121 | "import sys; sys.exit(47)"], |
| 2122 | creationflags=47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 2123 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2124 | def test_shell_sequence(self): |
| 2125 | # Run command through the shell (sequence) |
| 2126 | newenv = os.environ.copy() |
| 2127 | newenv["FRUIT"] = "apple" |
| 2128 | p = subprocess.Popen(["echo $FRUIT"], shell=1, |
| 2129 | stdout=subprocess.PIPE, |
| 2130 | env=newenv) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 2131 | with p: |
| 2132 | 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] | 2133 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2134 | def test_shell_string(self): |
| 2135 | # Run command through the shell (string) |
| 2136 | newenv = os.environ.copy() |
| 2137 | newenv["FRUIT"] = "apple" |
| 2138 | p = subprocess.Popen("echo $FRUIT", shell=1, |
| 2139 | stdout=subprocess.PIPE, |
| 2140 | env=newenv) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 2141 | with p: |
| 2142 | 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] | 2143 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2144 | def test_call_string(self): |
| 2145 | # call() function with string argument on UNIX |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 2146 | fd, fname = tempfile.mkstemp() |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2147 | # reopen in text mode |
Victor Stinner | f6782ac | 2010-10-16 23:46:43 +0000 | [diff] [blame] | 2148 | with open(fd, "w", errors="surrogateescape") as fobj: |
Xavier de Gaye | d141531 | 2016-07-22 12:15:29 +0200 | [diff] [blame] | 2149 | fobj.write("#!%s\n" % support.unix_shell) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2150 | fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" % |
| 2151 | sys.executable) |
| 2152 | os.chmod(fname, 0o700) |
| 2153 | rc = subprocess.call(fname) |
| 2154 | os.remove(fname) |
| 2155 | self.assertEqual(rc, 47) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 2156 | |
Stefan Krah | 9542cc6 | 2010-07-19 14:20:53 +0000 | [diff] [blame] | 2157 | def test_specific_shell(self): |
| 2158 | # Issue #9265: Incorrect name passed as arg[0]. |
| 2159 | shells = [] |
| 2160 | for prefix in ['/bin', '/usr/bin/', '/usr/local/bin']: |
| 2161 | for name in ['bash', 'ksh']: |
| 2162 | sh = os.path.join(prefix, name) |
| 2163 | if os.path.isfile(sh): |
| 2164 | shells.append(sh) |
| 2165 | if not shells: # Will probably work for any shell but csh. |
| 2166 | self.skipTest("bash or ksh required for this test") |
| 2167 | sh = '/bin/sh' |
| 2168 | if os.path.isfile(sh) and not os.path.islink(sh): |
| 2169 | # Test will fail if /bin/sh is a symlink to csh. |
| 2170 | shells.append(sh) |
| 2171 | for sh in shells: |
| 2172 | p = subprocess.Popen("echo $0", executable=sh, shell=True, |
| 2173 | stdout=subprocess.PIPE) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 2174 | with p: |
| 2175 | self.assertEqual(p.stdout.read().strip(), bytes(sh, 'ascii')) |
Stefan Krah | 9542cc6 | 2010-07-19 14:20:53 +0000 | [diff] [blame] | 2176 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 2177 | def _kill_process(self, method, *args): |
Florent Xicluna | 1d8ee3a | 2010-03-05 20:26:54 +0000 | [diff] [blame] | 2178 | # Do not inherit file handles from the parent. |
| 2179 | # It should fix failures on some platforms. |
Gregory P. Smith | dee0434 | 2013-08-29 13:35:27 -0700 | [diff] [blame] | 2180 | # Also set the SIGINT handler to the default to make sure it's not |
| 2181 | # being ignored (some tests rely on that.) |
| 2182 | old_handler = signal.signal(signal.SIGINT, signal.default_int_handler) |
| 2183 | try: |
| 2184 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 2185 | import sys, time |
| 2186 | sys.stdout.write('x\\n') |
| 2187 | sys.stdout.flush() |
| 2188 | time.sleep(30) |
| 2189 | """], |
| 2190 | close_fds=True, |
| 2191 | stdin=subprocess.PIPE, |
| 2192 | stdout=subprocess.PIPE, |
| 2193 | stderr=subprocess.PIPE) |
| 2194 | finally: |
| 2195 | signal.signal(signal.SIGINT, old_handler) |
Antoine Pitrou | 3d8580f | 2010-09-20 01:33:21 +0000 | [diff] [blame] | 2196 | # Wait for the interpreter to be completely initialized before |
| 2197 | # sending any signal. |
| 2198 | p.stdout.read(1) |
| 2199 | getattr(p, method)(*args) |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 2200 | return p |
| 2201 | |
Charles-François Natali | 53221e3 | 2013-01-12 16:52:20 +0100 | [diff] [blame] | 2202 | @unittest.skipIf(sys.platform.startswith(('netbsd', 'openbsd')), |
| 2203 | "Due to known OS bug (issue #16762)") |
Antoine Pitrou | 1f9a835 | 2012-03-11 19:29:12 +0100 | [diff] [blame] | 2204 | def _kill_dead_process(self, method, *args): |
| 2205 | # Do not inherit file handles from the parent. |
| 2206 | # It should fix failures on some platforms. |
| 2207 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 2208 | import sys, time |
| 2209 | sys.stdout.write('x\\n') |
| 2210 | sys.stdout.flush() |
| 2211 | """], |
| 2212 | close_fds=True, |
| 2213 | stdin=subprocess.PIPE, |
| 2214 | stdout=subprocess.PIPE, |
| 2215 | stderr=subprocess.PIPE) |
| 2216 | # Wait for the interpreter to be completely initialized before |
| 2217 | # sending any signal. |
| 2218 | p.stdout.read(1) |
| 2219 | # The process should end after this |
| 2220 | time.sleep(1) |
| 2221 | # This shouldn't raise even though the child is now dead |
| 2222 | getattr(p, method)(*args) |
| 2223 | p.communicate() |
| 2224 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 2225 | def test_send_signal(self): |
| 2226 | p = self._kill_process('send_signal', signal.SIGINT) |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 2227 | _, stderr = p.communicate() |
| 2228 | self.assertIn(b'KeyboardInterrupt', stderr) |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 2229 | self.assertNotEqual(p.wait(), 0) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 2230 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2231 | def test_kill(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 2232 | p = self._kill_process('kill') |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 2233 | _, stderr = p.communicate() |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 2234 | self.assertEqual(stderr, b'') |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2235 | self.assertEqual(p.wait(), -signal.SIGKILL) |
Tim Peters | e718f61 | 2004-10-12 21:51:32 +0000 | [diff] [blame] | 2236 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2237 | def test_terminate(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 2238 | p = self._kill_process('terminate') |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 2239 | _, stderr = p.communicate() |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 2240 | self.assertEqual(stderr, b'') |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 2241 | self.assertEqual(p.wait(), -signal.SIGTERM) |
| 2242 | |
Antoine Pitrou | 1f9a835 | 2012-03-11 19:29:12 +0100 | [diff] [blame] | 2243 | def test_send_signal_dead(self): |
| 2244 | # Sending a signal to a dead process |
| 2245 | self._kill_dead_process('send_signal', signal.SIGINT) |
| 2246 | |
| 2247 | def test_kill_dead(self): |
| 2248 | # Killing a dead process |
| 2249 | self._kill_dead_process('kill') |
| 2250 | |
| 2251 | def test_terminate_dead(self): |
| 2252 | # Terminating a dead process |
| 2253 | self._kill_dead_process('terminate') |
| 2254 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2255 | def _save_fds(self, save_fds): |
| 2256 | fds = [] |
| 2257 | for fd in save_fds: |
| 2258 | inheritable = os.get_inheritable(fd) |
| 2259 | saved = os.dup(fd) |
| 2260 | fds.append((fd, saved, inheritable)) |
| 2261 | return fds |
| 2262 | |
| 2263 | def _restore_fds(self, fds): |
| 2264 | for fd, saved, inheritable in fds: |
| 2265 | os.dup2(saved, fd, inheritable=inheritable) |
| 2266 | os.close(saved) |
| 2267 | |
Antoine Pitrou | c9c83ba | 2011-01-03 18:23:55 +0000 | [diff] [blame] | 2268 | def check_close_std_fds(self, fds): |
| 2269 | # Issue #9905: test that subprocess pipes still work properly with |
| 2270 | # some standard fds closed |
| 2271 | stdin = 0 |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2272 | saved_fds = self._save_fds(fds) |
| 2273 | for fd, saved, inheritable in saved_fds: |
| 2274 | if fd == 0: |
| 2275 | stdin = saved |
| 2276 | break |
Antoine Pitrou | c9c83ba | 2011-01-03 18:23:55 +0000 | [diff] [blame] | 2277 | try: |
| 2278 | for fd in fds: |
| 2279 | os.close(fd) |
| 2280 | out, err = subprocess.Popen([sys.executable, "-c", |
| 2281 | 'import sys;' |
| 2282 | 'sys.stdout.write("apple");' |
| 2283 | 'sys.stdout.flush();' |
| 2284 | 'sys.stderr.write("orange")'], |
| 2285 | stdin=stdin, |
| 2286 | stdout=subprocess.PIPE, |
| 2287 | stderr=subprocess.PIPE).communicate() |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 2288 | self.assertEqual(out, b'apple') |
| 2289 | self.assertEqual(err, b'orange') |
Antoine Pitrou | c9c83ba | 2011-01-03 18:23:55 +0000 | [diff] [blame] | 2290 | finally: |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2291 | self._restore_fds(saved_fds) |
Antoine Pitrou | c9c83ba | 2011-01-03 18:23:55 +0000 | [diff] [blame] | 2292 | |
| 2293 | def test_close_fd_0(self): |
| 2294 | self.check_close_std_fds([0]) |
| 2295 | |
| 2296 | def test_close_fd_1(self): |
| 2297 | self.check_close_std_fds([1]) |
| 2298 | |
| 2299 | def test_close_fd_2(self): |
| 2300 | self.check_close_std_fds([2]) |
| 2301 | |
| 2302 | def test_close_fds_0_1(self): |
| 2303 | self.check_close_std_fds([0, 1]) |
| 2304 | |
| 2305 | def test_close_fds_0_2(self): |
| 2306 | self.check_close_std_fds([0, 2]) |
| 2307 | |
| 2308 | def test_close_fds_1_2(self): |
| 2309 | self.check_close_std_fds([1, 2]) |
| 2310 | |
| 2311 | def test_close_fds_0_1_2(self): |
| 2312 | # Issue #10806: test that subprocess pipes still work properly with |
| 2313 | # all standard fds closed. |
| 2314 | self.check_close_std_fds([0, 1, 2]) |
| 2315 | |
Gregory P. Smith | 53dd816 | 2013-12-01 16:03:24 -0800 | [diff] [blame] | 2316 | def test_small_errpipe_write_fd(self): |
| 2317 | """Issue #15798: Popen should work when stdio fds are available.""" |
| 2318 | new_stdin = os.dup(0) |
| 2319 | new_stdout = os.dup(1) |
| 2320 | try: |
| 2321 | os.close(0) |
| 2322 | os.close(1) |
| 2323 | |
| 2324 | # Side test: if errpipe_write fails to have its CLOEXEC |
| 2325 | # flag set this should cause the parent to think the exec |
| 2326 | # failed. Extremely unlikely: everyone supports CLOEXEC. |
| 2327 | subprocess.Popen([ |
| 2328 | sys.executable, "-c", |
| 2329 | "print('AssertionError:0:CLOEXEC failure.')"]).wait() |
| 2330 | finally: |
| 2331 | # Restore original stdin and stdout |
| 2332 | os.dup2(new_stdin, 0) |
| 2333 | os.dup2(new_stdout, 1) |
| 2334 | os.close(new_stdin) |
| 2335 | os.close(new_stdout) |
| 2336 | |
Antoine Pitrou | 95aaeee | 2011-01-03 21:15:48 +0000 | [diff] [blame] | 2337 | def test_remapping_std_fds(self): |
| 2338 | # open up some temporary files |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 2339 | temps = [tempfile.mkstemp() for i in range(3)] |
Antoine Pitrou | 95aaeee | 2011-01-03 21:15:48 +0000 | [diff] [blame] | 2340 | try: |
| 2341 | temp_fds = [fd for fd, fname in temps] |
| 2342 | |
| 2343 | # unlink the files -- we won't need to reopen them |
| 2344 | for fd, fname in temps: |
| 2345 | os.unlink(fname) |
| 2346 | |
| 2347 | # write some data to what will become stdin, and rewind |
| 2348 | os.write(temp_fds[1], b"STDIN") |
| 2349 | os.lseek(temp_fds[1], 0, 0) |
| 2350 | |
| 2351 | # move the standard file descriptors out of the way |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2352 | saved_fds = self._save_fds(range(3)) |
Antoine Pitrou | 95aaeee | 2011-01-03 21:15:48 +0000 | [diff] [blame] | 2353 | try: |
| 2354 | # duplicate the file objects over the standard fd's |
| 2355 | for fd, temp_fd in enumerate(temp_fds): |
| 2356 | os.dup2(temp_fd, fd) |
| 2357 | |
| 2358 | # now use those files in the "wrong" order, so that subprocess |
| 2359 | # has to rearrange them in the child |
| 2360 | p = subprocess.Popen([sys.executable, "-c", |
| 2361 | 'import sys; got = sys.stdin.read();' |
| 2362 | 'sys.stdout.write("got %s"%got); sys.stderr.write("err")'], |
| 2363 | stdin=temp_fds[1], |
| 2364 | stdout=temp_fds[2], |
| 2365 | stderr=temp_fds[0]) |
| 2366 | p.wait() |
| 2367 | finally: |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2368 | self._restore_fds(saved_fds) |
Antoine Pitrou | 95aaeee | 2011-01-03 21:15:48 +0000 | [diff] [blame] | 2369 | |
| 2370 | for fd in temp_fds: |
| 2371 | os.lseek(fd, 0, 0) |
| 2372 | |
| 2373 | out = os.read(temp_fds[2], 1024) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 2374 | err = os.read(temp_fds[0], 1024).strip() |
Antoine Pitrou | 95aaeee | 2011-01-03 21:15:48 +0000 | [diff] [blame] | 2375 | self.assertEqual(out, b"got STDIN") |
| 2376 | self.assertEqual(err, b"err") |
| 2377 | |
| 2378 | finally: |
| 2379 | for fd in temp_fds: |
| 2380 | os.close(fd) |
| 2381 | |
Ross Lagerwall | d98646e | 2011-07-27 07:16:31 +0200 | [diff] [blame] | 2382 | def check_swap_fds(self, stdin_no, stdout_no, stderr_no): |
| 2383 | # open up some temporary files |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 2384 | temps = [tempfile.mkstemp() for i in range(3)] |
Ross Lagerwall | d98646e | 2011-07-27 07:16:31 +0200 | [diff] [blame] | 2385 | temp_fds = [fd for fd, fname in temps] |
| 2386 | try: |
| 2387 | # unlink the files -- we won't need to reopen them |
| 2388 | for fd, fname in temps: |
| 2389 | os.unlink(fname) |
| 2390 | |
| 2391 | # save a copy of the standard file descriptors |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2392 | saved_fds = self._save_fds(range(3)) |
Ross Lagerwall | d98646e | 2011-07-27 07:16:31 +0200 | [diff] [blame] | 2393 | try: |
| 2394 | # duplicate the temp files over the standard fd's 0, 1, 2 |
| 2395 | for fd, temp_fd in enumerate(temp_fds): |
| 2396 | os.dup2(temp_fd, fd) |
| 2397 | |
| 2398 | # write some data to what will become stdin, and rewind |
| 2399 | os.write(stdin_no, b"STDIN") |
| 2400 | os.lseek(stdin_no, 0, 0) |
| 2401 | |
| 2402 | # now use those files in the given order, so that subprocess |
| 2403 | # has to rearrange them in the child |
| 2404 | p = subprocess.Popen([sys.executable, "-c", |
| 2405 | 'import sys; got = sys.stdin.read();' |
| 2406 | 'sys.stdout.write("got %s"%got); sys.stderr.write("err")'], |
| 2407 | stdin=stdin_no, |
| 2408 | stdout=stdout_no, |
| 2409 | stderr=stderr_no) |
| 2410 | p.wait() |
| 2411 | |
| 2412 | for fd in temp_fds: |
| 2413 | os.lseek(fd, 0, 0) |
| 2414 | |
| 2415 | out = os.read(stdout_no, 1024) |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 2416 | err = os.read(stderr_no, 1024).strip() |
Ross Lagerwall | d98646e | 2011-07-27 07:16:31 +0200 | [diff] [blame] | 2417 | finally: |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2418 | self._restore_fds(saved_fds) |
Ross Lagerwall | d98646e | 2011-07-27 07:16:31 +0200 | [diff] [blame] | 2419 | |
| 2420 | self.assertEqual(out, b"got STDIN") |
| 2421 | self.assertEqual(err, b"err") |
| 2422 | |
| 2423 | finally: |
| 2424 | for fd in temp_fds: |
| 2425 | os.close(fd) |
| 2426 | |
| 2427 | # When duping fds, if there arises a situation where one of the fds is |
| 2428 | # either 0, 1 or 2, it is possible that it is overwritten (#12607). |
| 2429 | # This tests all combinations of this. |
| 2430 | def test_swap_fds(self): |
| 2431 | self.check_swap_fds(0, 1, 2) |
| 2432 | self.check_swap_fds(0, 2, 1) |
| 2433 | self.check_swap_fds(1, 0, 2) |
| 2434 | self.check_swap_fds(1, 2, 0) |
| 2435 | self.check_swap_fds(2, 0, 1) |
| 2436 | self.check_swap_fds(2, 1, 0) |
| 2437 | |
Alexey Izbyshev | 0e7144b | 2018-03-26 22:49:35 +0300 | [diff] [blame] | 2438 | def _check_swap_std_fds_with_one_closed(self, from_fds, to_fds): |
| 2439 | saved_fds = self._save_fds(range(3)) |
| 2440 | try: |
| 2441 | for from_fd in from_fds: |
| 2442 | with tempfile.TemporaryFile() as f: |
| 2443 | os.dup2(f.fileno(), from_fd) |
| 2444 | |
| 2445 | fd_to_close = (set(range(3)) - set(from_fds)).pop() |
| 2446 | os.close(fd_to_close) |
| 2447 | |
| 2448 | arg_names = ['stdin', 'stdout', 'stderr'] |
| 2449 | kwargs = {} |
| 2450 | for from_fd, to_fd in zip(from_fds, to_fds): |
| 2451 | kwargs[arg_names[to_fd]] = from_fd |
| 2452 | |
| 2453 | code = textwrap.dedent(r''' |
| 2454 | import os, sys |
| 2455 | skipped_fd = int(sys.argv[1]) |
| 2456 | for fd in range(3): |
| 2457 | if fd != skipped_fd: |
| 2458 | os.write(fd, str(fd).encode('ascii')) |
| 2459 | ''') |
| 2460 | |
| 2461 | skipped_fd = (set(range(3)) - set(to_fds)).pop() |
| 2462 | |
| 2463 | rc = subprocess.call([sys.executable, '-c', code, str(skipped_fd)], |
| 2464 | **kwargs) |
| 2465 | self.assertEqual(rc, 0) |
| 2466 | |
| 2467 | for from_fd, to_fd in zip(from_fds, to_fds): |
| 2468 | os.lseek(from_fd, 0, os.SEEK_SET) |
| 2469 | read_bytes = os.read(from_fd, 1024) |
| 2470 | read_fds = list(map(int, read_bytes.decode('ascii'))) |
| 2471 | msg = textwrap.dedent(f""" |
| 2472 | When testing {from_fds} to {to_fds} redirection, |
| 2473 | parent descriptor {from_fd} got redirected |
| 2474 | to descriptor(s) {read_fds} instead of descriptor {to_fd}. |
| 2475 | """) |
| 2476 | self.assertEqual([to_fd], read_fds, msg) |
| 2477 | finally: |
| 2478 | self._restore_fds(saved_fds) |
| 2479 | |
| 2480 | # Check that subprocess can remap std fds correctly even |
| 2481 | # if one of them is closed (#32844). |
| 2482 | def test_swap_std_fds_with_one_closed(self): |
| 2483 | for from_fds in itertools.combinations(range(3), 2): |
| 2484 | for to_fds in itertools.permutations(range(3), 2): |
| 2485 | self._check_swap_std_fds_with_one_closed(from_fds, to_fds) |
| 2486 | |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2487 | def test_surrogates_error_message(self): |
Victor Stinner | 4d07804 | 2010-04-23 19:28:32 +0000 | [diff] [blame] | 2488 | def prepare(): |
| 2489 | raise ValueError("surrogate:\uDCff") |
| 2490 | |
| 2491 | try: |
| 2492 | subprocess.call( |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2493 | ZERO_RETURN_CMD, |
Victor Stinner | 4d07804 | 2010-04-23 19:28:32 +0000 | [diff] [blame] | 2494 | preexec_fn=prepare) |
| 2495 | except ValueError as err: |
| 2496 | # Pure Python implementations keeps the message |
| 2497 | self.assertIsNone(subprocess._posixsubprocess) |
| 2498 | self.assertEqual(str(err), "surrogate:\uDCff") |
Gregory P. Smith | 8d07c26 | 2012-11-10 23:53:47 -0800 | [diff] [blame] | 2499 | except subprocess.SubprocessError as err: |
Victor Stinner | 4d07804 | 2010-04-23 19:28:32 +0000 | [diff] [blame] | 2500 | # _posixsubprocess uses a default message |
| 2501 | self.assertIsNotNone(subprocess._posixsubprocess) |
| 2502 | self.assertEqual(str(err), "Exception occurred in preexec_fn.") |
| 2503 | else: |
Gregory P. Smith | 8d07c26 | 2012-11-10 23:53:47 -0800 | [diff] [blame] | 2504 | self.fail("Expected ValueError or subprocess.SubprocessError") |
Victor Stinner | 4d07804 | 2010-04-23 19:28:32 +0000 | [diff] [blame] | 2505 | |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2506 | def test_undecodable_env(self): |
| 2507 | for key, value in (('test', 'abc\uDCFF'), ('test\uDCFF', '42')): |
Victor Stinner | 5323fb0 | 2013-11-19 23:46:06 +0100 | [diff] [blame] | 2508 | encoded_value = value.encode("ascii", "surrogateescape") |
| 2509 | |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2510 | # test str with surrogates |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 2511 | script = "import os; print(ascii(os.getenv(%s)))" % repr(key) |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 2512 | env = os.environ.copy() |
| 2513 | env[key] = value |
Victor Stinner | 5323fb0 | 2013-11-19 23:46:06 +0100 | [diff] [blame] | 2514 | # Use C locale to get ASCII for the locale encoding to force |
Michael Felt | 89d79b1 | 2018-08-26 19:29:36 +0200 | [diff] [blame] | 2515 | # surrogate-escaping of \xFF in the child process |
Victor Stinner | ebc78d2 | 2010-10-14 10:38:17 +0000 | [diff] [blame] | 2516 | env['LC_ALL'] = 'C' |
Michael Felt | 89d79b1 | 2018-08-26 19:29:36 +0200 | [diff] [blame] | 2517 | decoded_value = value |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2518 | stdout = subprocess.check_output( |
| 2519 | [sys.executable, "-c", script], |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 2520 | env=env) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2521 | stdout = stdout.rstrip(b'\n\r') |
Victor Stinner | 5323fb0 | 2013-11-19 23:46:06 +0100 | [diff] [blame] | 2522 | self.assertEqual(stdout.decode('ascii'), ascii(decoded_value)) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2523 | |
| 2524 | # test bytes |
| 2525 | key = key.encode("ascii", "surrogateescape") |
Antoine Pitrou | fb8db8f | 2010-09-19 22:46:05 +0000 | [diff] [blame] | 2526 | script = "import os; print(ascii(os.getenvb(%s)))" % repr(key) |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 2527 | env = os.environ.copy() |
Victor Stinner | 5323fb0 | 2013-11-19 23:46:06 +0100 | [diff] [blame] | 2528 | env[key] = encoded_value |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2529 | stdout = subprocess.check_output( |
| 2530 | [sys.executable, "-c", script], |
Victor Stinner | ce2d24d | 2010-04-23 22:55:39 +0000 | [diff] [blame] | 2531 | env=env) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2532 | stdout = stdout.rstrip(b'\n\r') |
Victor Stinner | 5323fb0 | 2013-11-19 23:46:06 +0100 | [diff] [blame] | 2533 | self.assertEqual(stdout.decode('ascii'), ascii(encoded_value)) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 2534 | |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2535 | def test_bytes_program(self): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2536 | abs_program = os.fsencode(ZERO_RETURN_CMD[0]) |
| 2537 | args = list(ZERO_RETURN_CMD[1:]) |
| 2538 | path, program = os.path.split(ZERO_RETURN_CMD[0]) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2539 | program = os.fsencode(program) |
| 2540 | |
| 2541 | # absolute bytes path |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2542 | exitcode = subprocess.call([abs_program]+args) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 2543 | self.assertEqual(exitcode, 0) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2544 | |
Victor Stinner | 7b3b20a | 2011-03-03 12:54:05 +0000 | [diff] [blame] | 2545 | # absolute bytes path as a string |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2546 | cmd = b"'%s' %s" % (abs_program, " ".join(args).encode("utf-8")) |
Victor Stinner | 7b3b20a | 2011-03-03 12:54:05 +0000 | [diff] [blame] | 2547 | exitcode = subprocess.call(cmd, shell=True) |
| 2548 | self.assertEqual(exitcode, 0) |
| 2549 | |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2550 | # bytes program, unicode PATH |
| 2551 | env = os.environ.copy() |
| 2552 | env["PATH"] = path |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2553 | exitcode = subprocess.call([program]+args, env=env) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 2554 | self.assertEqual(exitcode, 0) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2555 | |
| 2556 | # bytes program, bytes PATH |
| 2557 | envb = os.environb.copy() |
| 2558 | envb[b"PATH"] = os.fsencode(path) |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2559 | exitcode = subprocess.call([program]+args, env=envb) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 2560 | self.assertEqual(exitcode, 0) |
Victor Stinner | b745a74 | 2010-05-18 17:17:23 +0000 | [diff] [blame] | 2561 | |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 2562 | def test_pipe_cloexec(self): |
| 2563 | sleeper = support.findfile("input_reader.py", subdir="subprocessdata") |
| 2564 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2565 | |
| 2566 | p1 = subprocess.Popen([sys.executable, sleeper], |
| 2567 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, |
| 2568 | stderr=subprocess.PIPE, close_fds=False) |
| 2569 | |
| 2570 | self.addCleanup(p1.communicate, b'') |
| 2571 | |
| 2572 | p2 = subprocess.Popen([sys.executable, fd_status], |
| 2573 | stdout=subprocess.PIPE, close_fds=False) |
| 2574 | |
| 2575 | output, error = p2.communicate() |
| 2576 | result_fds = set(map(int, output.split(b','))) |
| 2577 | unwanted_fds = set([p1.stdin.fileno(), p1.stdout.fileno(), |
| 2578 | p1.stderr.fileno()]) |
| 2579 | |
| 2580 | self.assertFalse(result_fds & unwanted_fds, |
| 2581 | "Expected no fds from %r to be open in child, " |
| 2582 | "found %r" % |
| 2583 | (unwanted_fds, result_fds & unwanted_fds)) |
| 2584 | |
| 2585 | def test_pipe_cloexec_real_tools(self): |
| 2586 | qcat = support.findfile("qcat.py", subdir="subprocessdata") |
| 2587 | qgrep = support.findfile("qgrep.py", subdir="subprocessdata") |
| 2588 | |
| 2589 | subdata = b'zxcvbn' |
| 2590 | data = subdata * 4 + b'\n' |
| 2591 | |
| 2592 | p1 = subprocess.Popen([sys.executable, qcat], |
| 2593 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, |
| 2594 | close_fds=False) |
| 2595 | |
| 2596 | p2 = subprocess.Popen([sys.executable, qgrep, subdata], |
| 2597 | stdin=p1.stdout, stdout=subprocess.PIPE, |
| 2598 | close_fds=False) |
| 2599 | |
| 2600 | self.addCleanup(p1.wait) |
| 2601 | self.addCleanup(p2.wait) |
Gregory P. Smith | 886455c | 2012-01-21 22:05:10 -0800 | [diff] [blame] | 2602 | def kill_p1(): |
| 2603 | try: |
| 2604 | p1.terminate() |
| 2605 | except ProcessLookupError: |
| 2606 | pass |
| 2607 | def kill_p2(): |
| 2608 | try: |
| 2609 | p2.terminate() |
| 2610 | except ProcessLookupError: |
| 2611 | pass |
| 2612 | self.addCleanup(kill_p1) |
| 2613 | self.addCleanup(kill_p2) |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 2614 | |
| 2615 | p1.stdin.write(data) |
| 2616 | p1.stdin.close() |
| 2617 | |
| 2618 | readfiles, ignored1, ignored2 = select.select([p2.stdout], [], [], 10) |
| 2619 | |
| 2620 | self.assertTrue(readfiles, "The child hung") |
| 2621 | self.assertEqual(p2.stdout.read(), data) |
| 2622 | |
Victor Stinner | faa8c13 | 2011-01-03 16:36:00 +0000 | [diff] [blame] | 2623 | p1.stdout.close() |
| 2624 | p2.stdout.close() |
| 2625 | |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 2626 | def test_close_fds(self): |
| 2627 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2628 | |
| 2629 | fds = os.pipe() |
| 2630 | self.addCleanup(os.close, fds[0]) |
| 2631 | self.addCleanup(os.close, fds[1]) |
| 2632 | |
| 2633 | open_fds = set(fds) |
Gregory P. Smith | 8facece | 2012-01-21 14:01:08 -0800 | [diff] [blame] | 2634 | # add a bunch more fds |
| 2635 | for _ in range(9): |
Serhiy Storchaka | 85c3033 | 2015-02-15 13:58:23 +0200 | [diff] [blame] | 2636 | fd = os.open(os.devnull, os.O_RDONLY) |
Gregory P. Smith | 8facece | 2012-01-21 14:01:08 -0800 | [diff] [blame] | 2637 | self.addCleanup(os.close, fd) |
| 2638 | open_fds.add(fd) |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 2639 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2640 | for fd in open_fds: |
| 2641 | os.set_inheritable(fd, True) |
| 2642 | |
Gregory P. Smith | 51ee270 | 2010-12-13 07:59:39 +0000 | [diff] [blame] | 2643 | p = subprocess.Popen([sys.executable, fd_status], |
| 2644 | stdout=subprocess.PIPE, close_fds=False) |
| 2645 | output, ignored = p.communicate() |
| 2646 | remaining_fds = set(map(int, output.split(b','))) |
| 2647 | |
| 2648 | self.assertEqual(remaining_fds & open_fds, open_fds, |
| 2649 | "Some fds were closed") |
| 2650 | |
| 2651 | p = subprocess.Popen([sys.executable, fd_status], |
| 2652 | stdout=subprocess.PIPE, close_fds=True) |
| 2653 | output, ignored = p.communicate() |
| 2654 | remaining_fds = set(map(int, output.split(b','))) |
| 2655 | |
| 2656 | self.assertFalse(remaining_fds & open_fds, |
| 2657 | "Some fds were left open") |
| 2658 | self.assertIn(1, remaining_fds, "Subprocess failed") |
| 2659 | |
Gregory P. Smith | 8facece | 2012-01-21 14:01:08 -0800 | [diff] [blame] | 2660 | # Keep some of the fd's we opened open in the subprocess. |
| 2661 | # This tests _posixsubprocess.c's proper handling of fds_to_keep. |
| 2662 | fds_to_keep = set(open_fds.pop() for _ in range(8)) |
| 2663 | p = subprocess.Popen([sys.executable, fd_status], |
| 2664 | stdout=subprocess.PIPE, close_fds=True, |
izbyshev | 2d8f063 | 2017-12-19 03:26:49 +0700 | [diff] [blame] | 2665 | pass_fds=fds_to_keep) |
Gregory P. Smith | 8facece | 2012-01-21 14:01:08 -0800 | [diff] [blame] | 2666 | output, ignored = p.communicate() |
| 2667 | remaining_fds = set(map(int, output.split(b','))) |
| 2668 | |
izbyshev | 2d8f063 | 2017-12-19 03:26:49 +0700 | [diff] [blame] | 2669 | self.assertFalse((remaining_fds - fds_to_keep) & open_fds, |
Gregory P. Smith | 8facece | 2012-01-21 14:01:08 -0800 | [diff] [blame] | 2670 | "Some fds not in pass_fds were left open") |
| 2671 | self.assertIn(1, remaining_fds, "Subprocess failed") |
| 2672 | |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2673 | |
Gregory P. Smith | d04f699 | 2014-06-01 15:27:28 -0700 | [diff] [blame] | 2674 | @unittest.skipIf(sys.platform.startswith("freebsd") and |
| 2675 | os.stat("/dev").st_dev == os.stat("/dev/fd").st_dev, |
| 2676 | "Requires fdescfs mounted on /dev/fd on FreeBSD.") |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2677 | def test_close_fds_when_max_fd_is_lowered(self): |
| 2678 | """Confirm that issue21618 is fixed (may fail under valgrind).""" |
| 2679 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2680 | |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2681 | # This launches the meat of the test in a child process to |
| 2682 | # avoid messing with the larger unittest processes maximum |
| 2683 | # number of file descriptors. |
| 2684 | # This process launches: |
| 2685 | # +--> Process that lowers its RLIMIT_NOFILE aftr setting up |
| 2686 | # a bunch of high open fds above the new lower rlimit. |
| 2687 | # Those are reported via stdout before launching a new |
| 2688 | # process with close_fds=False to run the actual test: |
| 2689 | # +--> The TEST: This one launches a fd_status.py |
| 2690 | # subprocess with close_fds=True so we can find out if |
| 2691 | # any of the fds above the lowered rlimit are still open. |
| 2692 | p = subprocess.Popen([sys.executable, '-c', textwrap.dedent( |
| 2693 | ''' |
| 2694 | import os, resource, subprocess, sys, textwrap |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2695 | open_fds = set() |
| 2696 | # Add a bunch more fds to pass down. |
Gregory P. Smith | 8fed4de | 2014-06-01 15:15:44 -0700 | [diff] [blame] | 2697 | for _ in range(40): |
Serhiy Storchaka | 85c3033 | 2015-02-15 13:58:23 +0200 | [diff] [blame] | 2698 | fd = os.open(os.devnull, os.O_RDONLY) |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2699 | open_fds.add(fd) |
| 2700 | |
| 2701 | # Leave a two pairs of low ones available for use by the |
| 2702 | # internal child error pipe and the stdout pipe. |
Gregory P. Smith | 8fed4de | 2014-06-01 15:15:44 -0700 | [diff] [blame] | 2703 | # We also leave 10 more open as some Python buildbots run into |
| 2704 | # "too many open files" errors during the test if we do not. |
| 2705 | for fd in sorted(open_fds)[:14]: |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2706 | os.close(fd) |
| 2707 | open_fds.remove(fd) |
| 2708 | |
| 2709 | for fd in open_fds: |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2710 | #self.addCleanup(os.close, fd) |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2711 | os.set_inheritable(fd, True) |
| 2712 | |
| 2713 | max_fd_open = max(open_fds) |
| 2714 | |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2715 | # Communicate the open_fds to the parent unittest.TestCase process. |
| 2716 | print(','.join(map(str, sorted(open_fds)))) |
| 2717 | sys.stdout.flush() |
| 2718 | |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2719 | rlim_cur, rlim_max = resource.getrlimit(resource.RLIMIT_NOFILE) |
| 2720 | try: |
Gregory P. Smith | 8fed4de | 2014-06-01 15:15:44 -0700 | [diff] [blame] | 2721 | # 29 is lower than the highest fds we are leaving open. |
| 2722 | resource.setrlimit(resource.RLIMIT_NOFILE, (29, rlim_max)) |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2723 | # Launch a new Python interpreter with our low fd rlim_cur that |
| 2724 | # inherits open fds above that limit. It then uses subprocess |
| 2725 | # with close_fds=True to get a report of open fds in the child. |
| 2726 | # An explicit list of fds to check is passed to fd_status.py as |
| 2727 | # letting fd_status rely on its default logic would miss the |
| 2728 | # fds above rlim_cur as it normally only checks up to that limit. |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2729 | subprocess.Popen( |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2730 | [sys.executable, '-c', |
| 2731 | textwrap.dedent(""" |
| 2732 | import subprocess, sys |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2733 | subprocess.Popen([sys.executable, %r] + |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2734 | [str(x) for x in range({max_fd})], |
Gregory P. Smith | ffd529c | 2014-06-01 13:46:54 -0700 | [diff] [blame] | 2735 | close_fds=True).wait() |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2736 | """.format(max_fd=max_fd_open+1))], |
| 2737 | close_fds=False).wait() |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2738 | finally: |
| 2739 | resource.setrlimit(resource.RLIMIT_NOFILE, (rlim_cur, rlim_max)) |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2740 | ''' % fd_status)], stdout=subprocess.PIPE) |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2741 | |
| 2742 | output, unused_stderr = p.communicate() |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2743 | output_lines = output.splitlines() |
| 2744 | self.assertEqual(len(output_lines), 2, |
Gregory P. Smith | 9204e09 | 2014-06-15 20:16:01 -0700 | [diff] [blame] | 2745 | msg="expected exactly two lines of output:\n%r" % output) |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2746 | opened_fds = set(map(int, output_lines[0].strip().split(b','))) |
| 2747 | remaining_fds = set(map(int, output_lines[1].strip().split(b','))) |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2748 | |
Gregory P. Smith | 634aa68 | 2014-06-15 17:51:04 -0700 | [diff] [blame] | 2749 | self.assertFalse(remaining_fds & opened_fds, |
Gregory P. Smith | d4dcb70 | 2014-06-01 13:18:28 -0700 | [diff] [blame] | 2750 | msg="Some fds were left open.") |
| 2751 | |
| 2752 | |
Victor Stinner | 88701e2 | 2011-06-01 13:13:04 +0200 | [diff] [blame] | 2753 | # Mac OS X Tiger (10.4) has a kernel bug: sometimes, the file |
| 2754 | # descriptor of a pipe closed in the parent process is valid in the |
| 2755 | # child process according to fstat(), but the mode of the file |
| 2756 | # descriptor is invalid, and read or write raise an error. |
| 2757 | @support.requires_mac_ver(10, 5) |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 2758 | def test_pass_fds(self): |
| 2759 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2760 | |
| 2761 | open_fds = set() |
| 2762 | |
| 2763 | for x in range(5): |
| 2764 | fds = os.pipe() |
| 2765 | self.addCleanup(os.close, fds[0]) |
| 2766 | self.addCleanup(os.close, fds[1]) |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2767 | os.set_inheritable(fds[0], True) |
| 2768 | os.set_inheritable(fds[1], True) |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 2769 | open_fds.update(fds) |
| 2770 | |
| 2771 | for fd in open_fds: |
| 2772 | p = subprocess.Popen([sys.executable, fd_status], |
| 2773 | stdout=subprocess.PIPE, close_fds=True, |
| 2774 | pass_fds=(fd, )) |
| 2775 | output, ignored = p.communicate() |
| 2776 | |
| 2777 | remaining_fds = set(map(int, output.split(b','))) |
| 2778 | to_be_closed = open_fds - {fd} |
| 2779 | |
| 2780 | self.assertIn(fd, remaining_fds, "fd to be passed not passed") |
| 2781 | self.assertFalse(remaining_fds & to_be_closed, |
| 2782 | "fd to be closed passed") |
| 2783 | |
| 2784 | # pass_fds overrides close_fds with a warning. |
| 2785 | with self.assertWarns(RuntimeWarning) as context: |
| 2786 | self.assertFalse(subprocess.call( |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2787 | ZERO_RETURN_CMD, |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 2788 | close_fds=False, pass_fds=(fd, ))) |
| 2789 | self.assertIn('overriding close_fds', str(context.warning)) |
| 2790 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2791 | def test_pass_fds_inheritable(self): |
Victor Stinner | f6fa22e | 2013-09-01 10:22:41 +0200 | [diff] [blame] | 2792 | script = support.findfile("fd_status.py", subdir="subprocessdata") |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2793 | |
| 2794 | inheritable, non_inheritable = os.pipe() |
| 2795 | self.addCleanup(os.close, inheritable) |
| 2796 | self.addCleanup(os.close, non_inheritable) |
| 2797 | os.set_inheritable(inheritable, True) |
| 2798 | os.set_inheritable(non_inheritable, False) |
| 2799 | pass_fds = (inheritable, non_inheritable) |
| 2800 | args = [sys.executable, script] |
| 2801 | args += list(map(str, pass_fds)) |
| 2802 | |
| 2803 | p = subprocess.Popen(args, |
| 2804 | stdout=subprocess.PIPE, close_fds=True, |
| 2805 | pass_fds=pass_fds) |
| 2806 | output, ignored = p.communicate() |
| 2807 | fds = set(map(int, output.split(b','))) |
| 2808 | |
| 2809 | # the inheritable file descriptor must be inherited, so its inheritable |
| 2810 | # flag must be set in the child process after fork() and before exec() |
Victor Stinner | f6fa22e | 2013-09-01 10:22:41 +0200 | [diff] [blame] | 2811 | self.assertEqual(fds, set(pass_fds), "output=%a" % output) |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 2812 | |
| 2813 | # inheritable flag must not be changed in the parent process |
| 2814 | self.assertEqual(os.get_inheritable(inheritable), True) |
| 2815 | self.assertEqual(os.get_inheritable(non_inheritable), False) |
| 2816 | |
Gregory P. Smith | ce34410 | 2018-09-10 17:46:22 -0700 | [diff] [blame] | 2817 | |
| 2818 | # bpo-32270: Ensure that descriptors specified in pass_fds |
| 2819 | # are inherited even if they are used in redirections. |
| 2820 | # Contributed by @izbyshev. |
| 2821 | def test_pass_fds_redirected(self): |
| 2822 | """Regression test for https://bugs.python.org/issue32270.""" |
| 2823 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2824 | pass_fds = [] |
| 2825 | for _ in range(2): |
| 2826 | fd = os.open(os.devnull, os.O_RDWR) |
| 2827 | self.addCleanup(os.close, fd) |
| 2828 | pass_fds.append(fd) |
| 2829 | |
| 2830 | stdout_r, stdout_w = os.pipe() |
| 2831 | self.addCleanup(os.close, stdout_r) |
| 2832 | self.addCleanup(os.close, stdout_w) |
| 2833 | pass_fds.insert(1, stdout_w) |
| 2834 | |
| 2835 | with subprocess.Popen([sys.executable, fd_status], |
| 2836 | stdin=pass_fds[0], |
| 2837 | stdout=pass_fds[1], |
| 2838 | stderr=pass_fds[2], |
| 2839 | close_fds=True, |
| 2840 | pass_fds=pass_fds): |
| 2841 | output = os.read(stdout_r, 1024) |
| 2842 | fds = {int(num) for num in output.split(b',')} |
| 2843 | |
| 2844 | self.assertEqual(fds, {0, 1, 2} | frozenset(pass_fds), f"output={output!a}") |
| 2845 | |
| 2846 | |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 2847 | def test_stdout_stdin_are_single_inout_fd(self): |
| 2848 | with io.open(os.devnull, "r+") as inout: |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2849 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 2850 | stdout=inout, stdin=inout) |
| 2851 | p.wait() |
| 2852 | |
| 2853 | def test_stdout_stderr_are_single_inout_fd(self): |
| 2854 | with io.open(os.devnull, "r+") as inout: |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2855 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 2856 | stdout=inout, stderr=inout) |
| 2857 | p.wait() |
| 2858 | |
| 2859 | def test_stderr_stdin_are_single_inout_fd(self): |
| 2860 | with io.open(os.devnull, "r+") as inout: |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 2861 | p = subprocess.Popen(ZERO_RETURN_CMD, |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 2862 | stderr=inout, stdin=inout) |
| 2863 | p.wait() |
| 2864 | |
Gregory P. Smith | e85db2b | 2010-12-14 14:38:00 +0000 | [diff] [blame] | 2865 | def test_wait_when_sigchild_ignored(self): |
| 2866 | # NOTE: sigchild_ignore.py may not be an effective test on all OSes. |
| 2867 | sigchild_ignore = support.findfile("sigchild_ignore.py", |
| 2868 | subdir="subprocessdata") |
| 2869 | p = subprocess.Popen([sys.executable, sigchild_ignore], |
| 2870 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 2871 | stdout, stderr = p.communicate() |
| 2872 | self.assertEqual(0, p.returncode, "sigchild_ignore.py exited" |
Gregory P. Smith | a80f4fb | 2010-12-14 15:23:02 +0000 | [diff] [blame] | 2873 | " non-zero with this error:\n%s" % |
Marc-André Lemburg | 8f36af7 | 2011-02-25 15:42:01 +0000 | [diff] [blame] | 2874 | stderr.decode('utf-8')) |
Gregory P. Smith | e85db2b | 2010-12-14 14:38:00 +0000 | [diff] [blame] | 2875 | |
Antoine Pitrou | 7b98d02 | 2011-03-19 17:04:13 +0100 | [diff] [blame] | 2876 | def test_select_unbuffered(self): |
| 2877 | # Issue #11459: bufsize=0 should really set the pipes as |
| 2878 | # unbuffered (and therefore let select() work properly). |
| 2879 | select = support.import_module("select") |
| 2880 | p = subprocess.Popen([sys.executable, "-c", |
| 2881 | 'import sys;' |
| 2882 | 'sys.stdout.write("apple")'], |
| 2883 | stdout=subprocess.PIPE, |
| 2884 | bufsize=0) |
| 2885 | f = p.stdout |
Ross Lagerwall | 17ace7a | 2011-03-26 21:21:46 +0200 | [diff] [blame] | 2886 | self.addCleanup(f.close) |
Antoine Pitrou | 7b98d02 | 2011-03-19 17:04:13 +0100 | [diff] [blame] | 2887 | try: |
| 2888 | self.assertEqual(f.read(4), b"appl") |
| 2889 | self.assertIn(f, select.select([f], [], [], 0.0)[0]) |
| 2890 | finally: |
| 2891 | p.wait() |
| 2892 | |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2893 | def test_zombie_fast_process_del(self): |
| 2894 | # Issue #12650: on Unix, if Popen.__del__() was called before the |
| 2895 | # process exited, it wouldn't be added to subprocess._active, and would |
| 2896 | # remain a zombie. |
| 2897 | # spawn a Popen, and delete its reference before it exits |
| 2898 | p = subprocess.Popen([sys.executable, "-c", |
| 2899 | 'import sys, time;' |
| 2900 | 'time.sleep(0.2)'], |
| 2901 | stdout=subprocess.PIPE, |
| 2902 | stderr=subprocess.PIPE) |
Nadeem Vawda | 0d7cda3 | 2011-08-19 05:12:01 +0200 | [diff] [blame] | 2903 | self.addCleanup(p.stdout.close) |
| 2904 | self.addCleanup(p.stderr.close) |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2905 | ident = id(p) |
| 2906 | pid = p.pid |
Victor Stinner | 5a48e21 | 2016-05-20 12:11:15 +0200 | [diff] [blame] | 2907 | with support.check_warnings(('', ResourceWarning)): |
| 2908 | p = None |
| 2909 | |
Ruslan Kuprieiev | 042821a | 2019-06-28 19:12:16 +0300 | [diff] [blame] | 2910 | if mswindows: |
| 2911 | # subprocess._active is not used on Windows and is set to None. |
| 2912 | self.assertIsNone(subprocess._active) |
| 2913 | else: |
| 2914 | # check that p is in the active processes list |
| 2915 | self.assertIn(ident, [id(o) for o in subprocess._active]) |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2916 | |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2917 | def test_leak_fast_process_del_killed(self): |
| 2918 | # Issue #12650: on Unix, if Popen.__del__() was called before the |
| 2919 | # process exited, and the process got killed by a signal, it would never |
| 2920 | # be removed from subprocess._active, which triggered a FD and memory |
| 2921 | # leak. |
| 2922 | # spawn a Popen, delete its reference and kill it |
| 2923 | p = subprocess.Popen([sys.executable, "-c", |
| 2924 | 'import time;' |
| 2925 | 'time.sleep(3)'], |
| 2926 | stdout=subprocess.PIPE, |
| 2927 | stderr=subprocess.PIPE) |
Nadeem Vawda | 0d7cda3 | 2011-08-19 05:12:01 +0200 | [diff] [blame] | 2928 | self.addCleanup(p.stdout.close) |
| 2929 | self.addCleanup(p.stderr.close) |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2930 | ident = id(p) |
| 2931 | pid = p.pid |
Victor Stinner | 5a48e21 | 2016-05-20 12:11:15 +0200 | [diff] [blame] | 2932 | with support.check_warnings(('', ResourceWarning)): |
| 2933 | p = None |
| 2934 | |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2935 | os.kill(pid, signal.SIGKILL) |
Ruslan Kuprieiev | 042821a | 2019-06-28 19:12:16 +0300 | [diff] [blame] | 2936 | if mswindows: |
| 2937 | # subprocess._active is not used on Windows and is set to None. |
| 2938 | self.assertIsNone(subprocess._active) |
| 2939 | else: |
| 2940 | # check that p is in the active processes list |
| 2941 | self.assertIn(ident, [id(o) for o in subprocess._active]) |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2942 | |
| 2943 | # let some time for the process to exit, and create a new Popen: this |
| 2944 | # should trigger the wait() of p |
| 2945 | time.sleep(0.2) |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 2946 | with self.assertRaises(OSError): |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 2947 | with subprocess.Popen(NONEXISTING_CMD, |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2948 | stdout=subprocess.PIPE, |
| 2949 | stderr=subprocess.PIPE) as proc: |
| 2950 | pass |
| 2951 | # p should have been wait()ed on, and removed from the _active list |
| 2952 | self.assertRaises(OSError, os.waitpid, pid, 0) |
Ruslan Kuprieiev | 042821a | 2019-06-28 19:12:16 +0300 | [diff] [blame] | 2953 | if mswindows: |
| 2954 | # subprocess._active is not used on Windows and is set to None. |
| 2955 | self.assertIsNone(subprocess._active) |
| 2956 | else: |
| 2957 | self.assertNotIn(ident, [id(o) for o in subprocess._active]) |
Charles-François Natali | 134a8ba | 2011-08-18 18:49:39 +0200 | [diff] [blame] | 2958 | |
Charles-François Natali | 249cdc3 | 2013-08-25 18:24:45 +0200 | [diff] [blame] | 2959 | def test_close_fds_after_preexec(self): |
| 2960 | fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |
| 2961 | |
| 2962 | # this FD is used as dup2() target by preexec_fn, and should be closed |
| 2963 | # in the child process |
| 2964 | fd = os.dup(1) |
| 2965 | self.addCleanup(os.close, fd) |
| 2966 | |
| 2967 | p = subprocess.Popen([sys.executable, fd_status], |
| 2968 | stdout=subprocess.PIPE, close_fds=True, |
| 2969 | preexec_fn=lambda: os.dup2(1, fd)) |
| 2970 | output, ignored = p.communicate() |
| 2971 | |
| 2972 | remaining_fds = set(map(int, output.split(b','))) |
| 2973 | |
| 2974 | self.assertNotIn(fd, remaining_fds) |
| 2975 | |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 2976 | @support.cpython_only |
| 2977 | def test_fork_exec(self): |
| 2978 | # Issue #22290: fork_exec() must not crash on memory allocation failure |
| 2979 | # or other errors |
| 2980 | import _posixsubprocess |
| 2981 | gc_enabled = gc.isenabled() |
| 2982 | try: |
| 2983 | # Use a preexec function and enable the garbage collector |
| 2984 | # to force fork_exec() to re-enable the garbage collector |
| 2985 | # on error. |
| 2986 | func = lambda: None |
| 2987 | gc.enable() |
| 2988 | |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 2989 | for args, exe_list, cwd, env_list in ( |
| 2990 | (123, [b"exe"], None, [b"env"]), |
| 2991 | ([b"arg"], 123, None, [b"env"]), |
| 2992 | ([b"arg"], [b"exe"], 123, [b"env"]), |
| 2993 | ([b"arg"], [b"exe"], None, 123), |
| 2994 | ): |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 2995 | with self.assertRaises(TypeError) as err: |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 2996 | _posixsubprocess.fork_exec( |
| 2997 | args, exe_list, |
Serhiy Storchaka | 66bffd1 | 2017-04-19 21:12:46 +0300 | [diff] [blame] | 2998 | True, (), cwd, env_list, |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 2999 | -1, -1, -1, -1, |
| 3000 | 1, 2, 3, 4, |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 3001 | True, True, |
Gregory P. Smith | f3751ef | 2019-10-12 13:24:56 -0700 | [diff] [blame] | 3002 | False, [], 0, -1, |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 3003 | func) |
| 3004 | # Attempt to prevent |
| 3005 | # "TypeError: fork_exec() takes exactly N arguments (M given)" |
| 3006 | # from passing the test. More refactoring to have us start |
| 3007 | # with a valid *args list, confirm a good call with that works |
| 3008 | # before mutating it in various ways to ensure that bad calls |
| 3009 | # with individual arg type errors raise a typeerror would be |
| 3010 | # ideal. Saving that for a future PR... |
| 3011 | self.assertNotIn('takes exactly', str(err.exception)) |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 3012 | finally: |
| 3013 | if not gc_enabled: |
| 3014 | gc.disable() |
| 3015 | |
Gregory P. Smith | d0a5b1c | 2015-11-15 21:15:26 -0800 | [diff] [blame] | 3016 | @support.cpython_only |
| 3017 | def test_fork_exec_sorted_fd_sanity_check(self): |
| 3018 | # Issue #23564: sanity check the fork_exec() fds_to_keep sanity check. |
| 3019 | import _posixsubprocess |
Serhiy Storchaka | 66bffd1 | 2017-04-19 21:12:46 +0300 | [diff] [blame] | 3020 | class BadInt: |
| 3021 | first = True |
| 3022 | def __init__(self, value): |
| 3023 | self.value = value |
| 3024 | def __int__(self): |
| 3025 | if self.first: |
| 3026 | self.first = False |
| 3027 | return self.value |
| 3028 | raise ValueError |
| 3029 | |
Gregory P. Smith | d0a5b1c | 2015-11-15 21:15:26 -0800 | [diff] [blame] | 3030 | gc_enabled = gc.isenabled() |
| 3031 | try: |
| 3032 | gc.enable() |
| 3033 | |
| 3034 | for fds_to_keep in ( |
| 3035 | (-1, 2, 3, 4, 5), # Negative number. |
| 3036 | ('str', 4), # Not an int. |
| 3037 | (18, 23, 42, 2**63), # Out of range. |
| 3038 | (5, 4), # Not sorted. |
| 3039 | (6, 7, 7, 8), # Duplicate. |
Serhiy Storchaka | 66bffd1 | 2017-04-19 21:12:46 +0300 | [diff] [blame] | 3040 | (BadInt(1), BadInt(2)), |
Gregory P. Smith | d0a5b1c | 2015-11-15 21:15:26 -0800 | [diff] [blame] | 3041 | ): |
| 3042 | with self.assertRaises( |
| 3043 | ValueError, |
| 3044 | msg='fds_to_keep={}'.format(fds_to_keep)) as c: |
| 3045 | _posixsubprocess.fork_exec( |
| 3046 | [b"false"], [b"false"], |
| 3047 | True, fds_to_keep, None, [b"env"], |
| 3048 | -1, -1, -1, -1, |
| 3049 | 1, 2, 3, 4, |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 3050 | True, True, |
Gregory P. Smith | f3751ef | 2019-10-12 13:24:56 -0700 | [diff] [blame] | 3051 | None, None, None, -1, |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 3052 | None) |
Gregory P. Smith | d0a5b1c | 2015-11-15 21:15:26 -0800 | [diff] [blame] | 3053 | self.assertIn('fds_to_keep', str(c.exception)) |
| 3054 | finally: |
| 3055 | if not gc_enabled: |
| 3056 | gc.disable() |
Victor Stinner | 8f437aa | 2014-10-05 17:25:19 +0200 | [diff] [blame] | 3057 | |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2daf8e7 | 2016-06-05 02:57:47 +0000 | [diff] [blame] | 3058 | def test_communicate_BrokenPipeError_stdin_close(self): |
| 3059 | # By not setting stdout or stderr or a timeout we force the fast path |
| 3060 | # that just calls _stdin_write() internally due to our mock. |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3061 | proc = subprocess.Popen(ZERO_RETURN_CMD) |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2daf8e7 | 2016-06-05 02:57:47 +0000 | [diff] [blame] | 3062 | with proc, mock.patch.object(proc, 'stdin') as mock_proc_stdin: |
| 3063 | mock_proc_stdin.close.side_effect = BrokenPipeError |
| 3064 | proc.communicate() # Should swallow BrokenPipeError from close. |
| 3065 | mock_proc_stdin.close.assert_called_with() |
| 3066 | |
| 3067 | def test_communicate_BrokenPipeError_stdin_write(self): |
| 3068 | # By not setting stdout or stderr or a timeout we force the fast path |
| 3069 | # that just calls _stdin_write() internally due to our mock. |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3070 | proc = subprocess.Popen(ZERO_RETURN_CMD) |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2daf8e7 | 2016-06-05 02:57:47 +0000 | [diff] [blame] | 3071 | with proc, mock.patch.object(proc, 'stdin') as mock_proc_stdin: |
| 3072 | mock_proc_stdin.write.side_effect = BrokenPipeError |
| 3073 | proc.communicate(b'stuff') # Should swallow the BrokenPipeError. |
| 3074 | mock_proc_stdin.write.assert_called_once_with(b'stuff') |
| 3075 | mock_proc_stdin.close.assert_called_once_with() |
| 3076 | |
| 3077 | def test_communicate_BrokenPipeError_stdin_flush(self): |
| 3078 | # Setting stdin and stdout forces the ._communicate() code path. |
| 3079 | # python -h exits faster than python -c pass (but spams stdout). |
| 3080 | proc = subprocess.Popen([sys.executable, '-h'], |
| 3081 | stdin=subprocess.PIPE, |
| 3082 | stdout=subprocess.PIPE) |
| 3083 | with proc, mock.patch.object(proc, 'stdin') as mock_proc_stdin, \ |
| 3084 | open(os.devnull, 'wb') as dev_null: |
| 3085 | mock_proc_stdin.flush.side_effect = BrokenPipeError |
| 3086 | # because _communicate registers a selector using proc.stdin... |
| 3087 | mock_proc_stdin.fileno.return_value = dev_null.fileno() |
| 3088 | # _communicate() should swallow BrokenPipeError from flush. |
| 3089 | proc.communicate(b'stuff') |
| 3090 | mock_proc_stdin.flush.assert_called_once_with() |
| 3091 | |
| 3092 | def test_communicate_BrokenPipeError_stdin_close_with_timeout(self): |
| 3093 | # Setting stdin and stdout forces the ._communicate() code path. |
| 3094 | # python -h exits faster than python -c pass (but spams stdout). |
| 3095 | proc = subprocess.Popen([sys.executable, '-h'], |
| 3096 | stdin=subprocess.PIPE, |
| 3097 | stdout=subprocess.PIPE) |
| 3098 | with proc, mock.patch.object(proc, 'stdin') as mock_proc_stdin: |
| 3099 | mock_proc_stdin.close.side_effect = BrokenPipeError |
| 3100 | # _communicate() should swallow BrokenPipeError from close. |
| 3101 | proc.communicate(timeout=999) |
| 3102 | mock_proc_stdin.close.assert_called_once_with() |
| 3103 | |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 3104 | @unittest.skipUnless(_testcapi is not None |
| 3105 | and hasattr(_testcapi, 'W_STOPCODE'), |
| 3106 | 'need _testcapi.W_STOPCODE') |
| 3107 | def test_stopped(self): |
Gregory P. Smith | 50e16e3 | 2017-01-22 17:28:38 -0800 | [diff] [blame] | 3108 | """Test wait() behavior when waitpid returns WIFSTOPPED; issue29335.""" |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3109 | args = ZERO_RETURN_CMD |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 3110 | proc = subprocess.Popen(args) |
Victor Stinner | cdee3f1 | 2017-06-26 17:23:03 +0200 | [diff] [blame] | 3111 | |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 3112 | # Wait until the real process completes to avoid zombie process |
| 3113 | pid = proc.pid |
| 3114 | pid, status = os.waitpid(pid, 0) |
| 3115 | self.assertEqual(status, 0) |
Victor Stinner | cdee3f1 | 2017-06-26 17:23:03 +0200 | [diff] [blame] | 3116 | |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 3117 | status = _testcapi.W_STOPCODE(3) |
| 3118 | with mock.patch('subprocess.os.waitpid', return_value=(pid, status)): |
| 3119 | returncode = proc.wait() |
Victor Stinner | cdee3f1 | 2017-06-26 17:23:03 +0200 | [diff] [blame] | 3120 | |
Victor Stinner | 7b7c6dc | 2017-08-10 12:37:39 +0200 | [diff] [blame] | 3121 | self.assertEqual(returncode, -3) |
Gregory P. Smith | 50e16e3 | 2017-01-22 17:28:38 -0800 | [diff] [blame] | 3122 | |
Victor Stinner | e85a305 | 2020-01-15 17:38:55 +0100 | [diff] [blame] | 3123 | def test_send_signal_race(self): |
| 3124 | # bpo-38630: send_signal() must poll the process exit status to reduce |
| 3125 | # the risk of sending the signal to the wrong process. |
| 3126 | proc = subprocess.Popen(ZERO_RETURN_CMD) |
| 3127 | |
| 3128 | # wait until the process completes without using the Popen APIs. |
| 3129 | pid, status = os.waitpid(proc.pid, 0) |
| 3130 | self.assertEqual(pid, proc.pid) |
| 3131 | self.assertTrue(os.WIFEXITED(status), status) |
| 3132 | self.assertEqual(os.WEXITSTATUS(status), 0) |
| 3133 | |
| 3134 | # returncode is still None but the process completed. |
| 3135 | self.assertIsNone(proc.returncode) |
| 3136 | |
| 3137 | with mock.patch("os.kill") as mock_kill: |
| 3138 | proc.send_signal(signal.SIGTERM) |
| 3139 | |
| 3140 | # send_signal() didn't call os.kill() since the process already |
| 3141 | # completed. |
| 3142 | mock_kill.assert_not_called() |
| 3143 | |
| 3144 | # Don't check the returncode value: the test reads the exit status, |
| 3145 | # so Popen failed to read it and uses a default returncode instead. |
| 3146 | self.assertIsNotNone(proc.returncode) |
| 3147 | |
Alex Rebert | d3ae95e | 2020-01-22 18:28:31 -0500 | [diff] [blame^] | 3148 | def test_communicate_repeated_call_after_stdout_close(self): |
| 3149 | proc = subprocess.Popen([sys.executable, '-c', |
| 3150 | 'import os, time; os.close(1), time.sleep(2)'], |
| 3151 | stdout=subprocess.PIPE) |
| 3152 | while True: |
| 3153 | try: |
| 3154 | proc.communicate(timeout=0.1) |
| 3155 | return |
| 3156 | except subprocess.TimeoutExpired: |
| 3157 | pass |
| 3158 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3159 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 3160 | @unittest.skipUnless(mswindows, "Windows specific tests") |
Florent Xicluna | c049d87 | 2010-03-27 22:47:23 +0000 | [diff] [blame] | 3161 | class Win32ProcessTestCase(BaseTestCase): |
Florent Xicluna | f0cbd82 | 2010-03-04 21:50:56 +0000 | [diff] [blame] | 3162 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3163 | def test_startupinfo(self): |
| 3164 | # startupinfo argument |
| 3165 | # We uses hardcoded constants, because we do not want to |
| 3166 | # depend on win32all. |
| 3167 | STARTF_USESHOWWINDOW = 1 |
| 3168 | SW_MAXIMIZE = 3 |
| 3169 | startupinfo = subprocess.STARTUPINFO() |
| 3170 | startupinfo.dwFlags = STARTF_USESHOWWINDOW |
| 3171 | startupinfo.wShowWindow = SW_MAXIMIZE |
| 3172 | # Since Python is a console process, it won't be affected |
| 3173 | # by wShowWindow, but the argument should be silently |
| 3174 | # ignored |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3175 | subprocess.call(ZERO_RETURN_CMD, |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3176 | startupinfo=startupinfo) |
| 3177 | |
Subhendu Ghosh | ae160bb | 2017-02-25 20:29:05 +0530 | [diff] [blame] | 3178 | def test_startupinfo_keywords(self): |
| 3179 | # startupinfo argument |
| 3180 | # We use hardcoded constants, because we do not want to |
| 3181 | # depend on win32all. |
| 3182 | STARTF_USERSHOWWINDOW = 1 |
| 3183 | SW_MAXIMIZE = 3 |
| 3184 | startupinfo = subprocess.STARTUPINFO( |
| 3185 | dwFlags=STARTF_USERSHOWWINDOW, |
| 3186 | wShowWindow=SW_MAXIMIZE |
| 3187 | ) |
| 3188 | # Since Python is a console process, it won't be affected |
| 3189 | # by wShowWindow, but the argument should be silently |
| 3190 | # ignored |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3191 | subprocess.call(ZERO_RETURN_CMD, |
Subhendu Ghosh | ae160bb | 2017-02-25 20:29:05 +0530 | [diff] [blame] | 3192 | startupinfo=startupinfo) |
| 3193 | |
Victor Stinner | 483422f | 2018-07-05 22:54:17 +0200 | [diff] [blame] | 3194 | def test_startupinfo_copy(self): |
| 3195 | # bpo-34044: Popen must not modify input STARTUPINFO structure |
| 3196 | startupinfo = subprocess.STARTUPINFO() |
| 3197 | startupinfo.dwFlags = subprocess.STARTF_USESHOWWINDOW |
| 3198 | startupinfo.wShowWindow = subprocess.SW_HIDE |
| 3199 | |
| 3200 | # Call Popen() twice with the same startupinfo object to make sure |
| 3201 | # that it's not modified |
| 3202 | for _ in range(2): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3203 | cmd = ZERO_RETURN_CMD |
Victor Stinner | 483422f | 2018-07-05 22:54:17 +0200 | [diff] [blame] | 3204 | with open(os.devnull, 'w') as null: |
| 3205 | proc = subprocess.Popen(cmd, |
| 3206 | stdout=null, |
| 3207 | stderr=subprocess.STDOUT, |
| 3208 | startupinfo=startupinfo) |
| 3209 | with proc: |
| 3210 | proc.communicate() |
| 3211 | self.assertEqual(proc.returncode, 0) |
| 3212 | |
| 3213 | self.assertEqual(startupinfo.dwFlags, |
| 3214 | subprocess.STARTF_USESHOWWINDOW) |
| 3215 | self.assertIsNone(startupinfo.hStdInput) |
| 3216 | self.assertIsNone(startupinfo.hStdOutput) |
| 3217 | self.assertIsNone(startupinfo.hStdError) |
| 3218 | self.assertEqual(startupinfo.wShowWindow, subprocess.SW_HIDE) |
| 3219 | self.assertEqual(startupinfo.lpAttributeList, {"handle_list": []}) |
| 3220 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3221 | def test_creationflags(self): |
| 3222 | # creationflags argument |
| 3223 | CREATE_NEW_CONSOLE = 16 |
| 3224 | sys.stderr.write(" a DOS box should flash briefly ...\n") |
| 3225 | subprocess.call(sys.executable + |
| 3226 | ' -c "import time; time.sleep(0.25)"', |
| 3227 | creationflags=CREATE_NEW_CONSOLE) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3228 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3229 | def test_invalid_args(self): |
| 3230 | # invalid arguments should raise ValueError |
| 3231 | self.assertRaises(ValueError, subprocess.call, |
| 3232 | [sys.executable, "-c", |
| 3233 | "import sys; sys.exit(47)"], |
| 3234 | preexec_fn=lambda: 1) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3235 | |
Oren Milman | 0b3a87e | 2017-09-14 22:30:28 +0300 | [diff] [blame] | 3236 | @support.cpython_only |
| 3237 | def test_issue31471(self): |
| 3238 | # There shouldn't be an assertion failure in Popen() in case the env |
| 3239 | # argument has a bad keys() method. |
| 3240 | class BadEnv(dict): |
| 3241 | keys = None |
| 3242 | with self.assertRaises(TypeError): |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3243 | subprocess.Popen(ZERO_RETURN_CMD, env=BadEnv()) |
Oren Milman | 0b3a87e | 2017-09-14 22:30:28 +0300 | [diff] [blame] | 3244 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3245 | def test_close_fds(self): |
| 3246 | # close file descriptors |
| 3247 | rc = subprocess.call([sys.executable, "-c", |
| 3248 | "import sys; sys.exit(47)"], |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3249 | close_fds=True) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3250 | self.assertEqual(rc, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3251 | |
Segev Finer | b2a6083 | 2017-12-18 11:28:19 +0200 | [diff] [blame] | 3252 | def test_close_fds_with_stdio(self): |
| 3253 | import msvcrt |
| 3254 | |
| 3255 | fds = os.pipe() |
| 3256 | self.addCleanup(os.close, fds[0]) |
| 3257 | self.addCleanup(os.close, fds[1]) |
| 3258 | |
| 3259 | handles = [] |
| 3260 | for fd in fds: |
| 3261 | os.set_inheritable(fd, True) |
| 3262 | handles.append(msvcrt.get_osfhandle(fd)) |
| 3263 | |
| 3264 | p = subprocess.Popen([sys.executable, "-c", |
| 3265 | "import msvcrt; print(msvcrt.open_osfhandle({}, 0))".format(handles[0])], |
| 3266 | stdout=subprocess.PIPE, close_fds=False) |
| 3267 | stdout, stderr = p.communicate() |
| 3268 | self.assertEqual(p.returncode, 0) |
| 3269 | int(stdout.strip()) # Check that stdout is an integer |
| 3270 | |
| 3271 | p = subprocess.Popen([sys.executable, "-c", |
| 3272 | "import msvcrt; print(msvcrt.open_osfhandle({}, 0))".format(handles[0])], |
| 3273 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True) |
| 3274 | stdout, stderr = p.communicate() |
| 3275 | self.assertEqual(p.returncode, 1) |
| 3276 | self.assertIn(b"OSError", stderr) |
| 3277 | |
| 3278 | # The same as the previous call, but with an empty handle_list |
| 3279 | handle_list = [] |
| 3280 | startupinfo = subprocess.STARTUPINFO() |
| 3281 | startupinfo.lpAttributeList = {"handle_list": handle_list} |
| 3282 | p = subprocess.Popen([sys.executable, "-c", |
| 3283 | "import msvcrt; print(msvcrt.open_osfhandle({}, 0))".format(handles[0])], |
| 3284 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
| 3285 | startupinfo=startupinfo, close_fds=True) |
| 3286 | stdout, stderr = p.communicate() |
| 3287 | self.assertEqual(p.returncode, 1) |
| 3288 | self.assertIn(b"OSError", stderr) |
| 3289 | |
| 3290 | # Check for a warning due to using handle_list and close_fds=False |
| 3291 | with support.check_warnings((".*overriding close_fds", RuntimeWarning)): |
| 3292 | startupinfo = subprocess.STARTUPINFO() |
| 3293 | startupinfo.lpAttributeList = {"handle_list": handles[:]} |
| 3294 | p = subprocess.Popen([sys.executable, "-c", |
| 3295 | "import msvcrt; print(msvcrt.open_osfhandle({}, 0))".format(handles[0])], |
| 3296 | stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
| 3297 | startupinfo=startupinfo, close_fds=False) |
| 3298 | stdout, stderr = p.communicate() |
| 3299 | self.assertEqual(p.returncode, 0) |
| 3300 | |
| 3301 | def test_empty_attribute_list(self): |
| 3302 | startupinfo = subprocess.STARTUPINFO() |
| 3303 | startupinfo.lpAttributeList = {} |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3304 | subprocess.call(ZERO_RETURN_CMD, |
Segev Finer | b2a6083 | 2017-12-18 11:28:19 +0200 | [diff] [blame] | 3305 | startupinfo=startupinfo) |
| 3306 | |
| 3307 | def test_empty_handle_list(self): |
| 3308 | startupinfo = subprocess.STARTUPINFO() |
| 3309 | startupinfo.lpAttributeList = {"handle_list": []} |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3310 | subprocess.call(ZERO_RETURN_CMD, |
Segev Finer | b2a6083 | 2017-12-18 11:28:19 +0200 | [diff] [blame] | 3311 | startupinfo=startupinfo) |
| 3312 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3313 | def test_shell_sequence(self): |
| 3314 | # Run command through the shell (sequence) |
| 3315 | newenv = os.environ.copy() |
| 3316 | newenv["FRUIT"] = "physalis" |
| 3317 | p = subprocess.Popen(["set"], shell=1, |
| 3318 | stdout=subprocess.PIPE, |
| 3319 | env=newenv) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3320 | with p: |
| 3321 | self.assertIn(b"physalis", p.stdout.read()) |
Guido van Rossum | e7ba495 | 2007-06-06 23:52:48 +0000 | [diff] [blame] | 3322 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3323 | def test_shell_string(self): |
| 3324 | # Run command through the shell (string) |
| 3325 | newenv = os.environ.copy() |
| 3326 | newenv["FRUIT"] = "physalis" |
| 3327 | p = subprocess.Popen("set", shell=1, |
| 3328 | stdout=subprocess.PIPE, |
| 3329 | env=newenv) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3330 | with p: |
| 3331 | self.assertIn(b"physalis", p.stdout.read()) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3332 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 3333 | def test_shell_encodings(self): |
| 3334 | # Run command through the shell (string) |
| 3335 | for enc in ['ansi', 'oem']: |
| 3336 | newenv = os.environ.copy() |
| 3337 | newenv["FRUIT"] = "physalis" |
| 3338 | p = subprocess.Popen("set", shell=1, |
| 3339 | stdout=subprocess.PIPE, |
| 3340 | env=newenv, |
| 3341 | encoding=enc) |
| 3342 | with p: |
| 3343 | self.assertIn("physalis", p.stdout.read(), enc) |
| 3344 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3345 | def test_call_string(self): |
| 3346 | # call() function with string argument on Windows |
| 3347 | rc = subprocess.call(sys.executable + |
| 3348 | ' -c "import sys; sys.exit(47)"') |
| 3349 | self.assertEqual(rc, 47) |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3350 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 3351 | def _kill_process(self, method, *args): |
| 3352 | # Some win32 buildbot raises EOFError if stdin is inherited |
Antoine Pitrou | a4024e2 | 2010-09-24 18:57:01 +0000 | [diff] [blame] | 3353 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 3354 | import sys, time |
| 3355 | sys.stdout.write('x\\n') |
| 3356 | sys.stdout.flush() |
| 3357 | time.sleep(30) |
| 3358 | """], |
| 3359 | stdin=subprocess.PIPE, |
| 3360 | stdout=subprocess.PIPE, |
| 3361 | stderr=subprocess.PIPE) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3362 | with p: |
| 3363 | # Wait for the interpreter to be completely initialized before |
| 3364 | # sending any signal. |
| 3365 | p.stdout.read(1) |
| 3366 | getattr(p, method)(*args) |
| 3367 | _, stderr = p.communicate() |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 3368 | self.assertEqual(stderr, b'') |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3369 | returncode = p.wait() |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 3370 | self.assertNotEqual(returncode, 0) |
| 3371 | |
Antoine Pitrou | 1f9a835 | 2012-03-11 19:29:12 +0100 | [diff] [blame] | 3372 | def _kill_dead_process(self, method, *args): |
| 3373 | p = subprocess.Popen([sys.executable, "-c", """if 1: |
| 3374 | import sys, time |
| 3375 | sys.stdout.write('x\\n') |
| 3376 | sys.stdout.flush() |
| 3377 | sys.exit(42) |
| 3378 | """], |
| 3379 | stdin=subprocess.PIPE, |
| 3380 | stdout=subprocess.PIPE, |
| 3381 | stderr=subprocess.PIPE) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3382 | with p: |
| 3383 | # Wait for the interpreter to be completely initialized before |
| 3384 | # sending any signal. |
| 3385 | p.stdout.read(1) |
| 3386 | # The process should end after this |
| 3387 | time.sleep(1) |
| 3388 | # This shouldn't raise even though the child is now dead |
| 3389 | getattr(p, method)(*args) |
| 3390 | _, stderr = p.communicate() |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 3391 | self.assertEqual(stderr, b'') |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3392 | rc = p.wait() |
Antoine Pitrou | 1f9a835 | 2012-03-11 19:29:12 +0100 | [diff] [blame] | 3393 | self.assertEqual(rc, 42) |
| 3394 | |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 3395 | def test_send_signal(self): |
| 3396 | self._kill_process('send_signal', signal.SIGTERM) |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 3397 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3398 | def test_kill(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 3399 | self._kill_process('kill') |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 3400 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3401 | def test_terminate(self): |
Florent Xicluna | 4886d24 | 2010-03-08 13:27:26 +0000 | [diff] [blame] | 3402 | self._kill_process('terminate') |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 3403 | |
Antoine Pitrou | 1f9a835 | 2012-03-11 19:29:12 +0100 | [diff] [blame] | 3404 | def test_send_signal_dead(self): |
| 3405 | self._kill_dead_process('send_signal', signal.SIGTERM) |
| 3406 | |
| 3407 | def test_kill_dead(self): |
| 3408 | self._kill_dead_process('kill') |
| 3409 | |
| 3410 | def test_terminate_dead(self): |
| 3411 | self._kill_dead_process('terminate') |
| 3412 | |
Martin Panter | 23172bd | 2016-04-16 11:28:10 +0000 | [diff] [blame] | 3413 | class MiscTests(unittest.TestCase): |
Gregory P. Smith | f4d644f | 2018-01-29 21:27:39 -0800 | [diff] [blame] | 3414 | |
| 3415 | class RecordingPopen(subprocess.Popen): |
| 3416 | """A Popen that saves a reference to each instance for testing.""" |
| 3417 | instances_created = [] |
| 3418 | |
| 3419 | def __init__(self, *args, **kwargs): |
| 3420 | super().__init__(*args, **kwargs) |
| 3421 | self.instances_created.append(self) |
| 3422 | |
| 3423 | @mock.patch.object(subprocess.Popen, "_communicate") |
| 3424 | def _test_keyboardinterrupt_no_kill(self, popener, mock__communicate, |
| 3425 | **kwargs): |
| 3426 | """Fake a SIGINT happening during Popen._communicate() and ._wait(). |
| 3427 | |
| 3428 | This avoids the need to actually try and get test environments to send |
| 3429 | and receive signals reliably across platforms. The net effect of a ^C |
| 3430 | happening during a blocking subprocess execution which we want to clean |
| 3431 | up from is a KeyboardInterrupt coming out of communicate() or wait(). |
| 3432 | """ |
| 3433 | |
| 3434 | mock__communicate.side_effect = KeyboardInterrupt |
| 3435 | try: |
| 3436 | with mock.patch.object(subprocess.Popen, "_wait") as mock__wait: |
| 3437 | # We patch out _wait() as no signal was involved so the |
| 3438 | # child process isn't actually going to exit rapidly. |
| 3439 | mock__wait.side_effect = KeyboardInterrupt |
| 3440 | with mock.patch.object(subprocess, "Popen", |
| 3441 | self.RecordingPopen): |
| 3442 | with self.assertRaises(KeyboardInterrupt): |
| 3443 | popener([sys.executable, "-c", |
| 3444 | "import time\ntime.sleep(9)\nimport sys\n" |
| 3445 | "sys.stderr.write('\\n!runaway child!\\n')"], |
| 3446 | stdout=subprocess.DEVNULL, **kwargs) |
| 3447 | for call in mock__wait.call_args_list[1:]: |
| 3448 | self.assertNotEqual( |
| 3449 | call, mock.call(timeout=None), |
| 3450 | "no open-ended wait() after the first allowed: " |
| 3451 | f"{mock__wait.call_args_list}") |
| 3452 | sigint_calls = [] |
| 3453 | for call in mock__wait.call_args_list: |
| 3454 | if call == mock.call(timeout=0.25): # from Popen.__init__ |
| 3455 | sigint_calls.append(call) |
| 3456 | self.assertLessEqual(mock__wait.call_count, 2, |
| 3457 | msg=mock__wait.call_args_list) |
| 3458 | self.assertEqual(len(sigint_calls), 1, |
| 3459 | msg=mock__wait.call_args_list) |
| 3460 | finally: |
| 3461 | # cleanup the forgotten (due to our mocks) child process |
| 3462 | process = self.RecordingPopen.instances_created.pop() |
| 3463 | process.kill() |
| 3464 | process.wait() |
| 3465 | self.assertEqual([], self.RecordingPopen.instances_created) |
| 3466 | |
| 3467 | def test_call_keyboardinterrupt_no_kill(self): |
| 3468 | self._test_keyboardinterrupt_no_kill(subprocess.call, timeout=6.282) |
| 3469 | |
| 3470 | def test_run_keyboardinterrupt_no_kill(self): |
| 3471 | self._test_keyboardinterrupt_no_kill(subprocess.run, timeout=6.282) |
| 3472 | |
| 3473 | def test_context_manager_keyboardinterrupt_no_kill(self): |
| 3474 | def popen_via_context_manager(*args, **kwargs): |
| 3475 | with subprocess.Popen(*args, **kwargs) as unused_process: |
| 3476 | raise KeyboardInterrupt # Test how __exit__ handles ^C. |
| 3477 | self._test_keyboardinterrupt_no_kill(popen_via_context_manager) |
| 3478 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3479 | def test_getoutput(self): |
| 3480 | self.assertEqual(subprocess.getoutput('echo xyzzy'), 'xyzzy') |
| 3481 | self.assertEqual(subprocess.getstatusoutput('echo xyzzy'), |
| 3482 | (0, 'xyzzy')) |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 3483 | |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3484 | # we use mkdtemp in the next line to create an empty directory |
| 3485 | # under our exclusive control; from that, we can invent a pathname |
| 3486 | # that we _know_ won't exist. This is guaranteed to fail. |
| 3487 | dir = None |
| 3488 | try: |
| 3489 | dir = tempfile.mkdtemp() |
| 3490 | name = os.path.join(dir, "foo") |
Tim Golden | e004175 | 2013-11-03 12:53:17 +0000 | [diff] [blame] | 3491 | status, output = subprocess.getstatusoutput( |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 3492 | ("type " if mswindows else "cat ") + name) |
Florent Xicluna | b1e94e8 | 2010-02-27 22:12:37 +0000 | [diff] [blame] | 3493 | self.assertNotEqual(status, 0) |
| 3494 | finally: |
| 3495 | if dir is not None: |
| 3496 | os.rmdir(dir) |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 3497 | |
Gregory P. Smith | ace5586 | 2015-04-07 15:57:54 -0700 | [diff] [blame] | 3498 | def test__all__(self): |
| 3499 | """Ensure that __all__ is populated properly.""" |
Patrick McLean | 2b2ead7 | 2019-09-12 10:15:44 -0700 | [diff] [blame] | 3500 | intentionally_excluded = {"list2cmdline", "Handle", "pwd", "grp"} |
Gregory P. Smith | ace5586 | 2015-04-07 15:57:54 -0700 | [diff] [blame] | 3501 | exported = set(subprocess.__all__) |
| 3502 | possible_exports = set() |
| 3503 | import types |
| 3504 | for name, value in subprocess.__dict__.items(): |
| 3505 | if name.startswith('_'): |
| 3506 | continue |
| 3507 | if isinstance(value, (types.ModuleType,)): |
| 3508 | continue |
| 3509 | possible_exports.add(name) |
| 3510 | self.assertEqual(exported, possible_exports - intentionally_excluded) |
| 3511 | |
| 3512 | |
Martin Panter | 23172bd | 2016-04-16 11:28:10 +0000 | [diff] [blame] | 3513 | @unittest.skipUnless(hasattr(selectors, 'PollSelector'), |
| 3514 | "Test needs selectors.PollSelector") |
| 3515 | class ProcessTestCaseNoPoll(ProcessTestCase): |
| 3516 | def setUp(self): |
| 3517 | self.orig_selector = subprocess._PopenSelector |
| 3518 | subprocess._PopenSelector = selectors.SelectSelector |
| 3519 | ProcessTestCase.setUp(self) |
| 3520 | |
| 3521 | def tearDown(self): |
| 3522 | subprocess._PopenSelector = self.orig_selector |
| 3523 | ProcessTestCase.tearDown(self) |
| 3524 | |
Gregory P. Smith | d06fa47 | 2009-07-04 02:46:54 +0000 | [diff] [blame] | 3525 | |
Victor Stinner | 937ee9e | 2018-06-26 02:11:06 +0200 | [diff] [blame] | 3526 | @unittest.skipUnless(mswindows, "Windows-specific tests") |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 3527 | class CommandsWithSpaces (BaseTestCase): |
| 3528 | |
| 3529 | def setUp(self): |
| 3530 | super().setUp() |
Berker Peksag | 16a1f28 | 2015-09-28 13:33:14 +0300 | [diff] [blame] | 3531 | f, fname = tempfile.mkstemp(".py", "te st") |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 3532 | self.fname = fname.lower () |
| 3533 | os.write(f, b"import sys;" |
| 3534 | b"sys.stdout.write('%d %s' % (len(sys.argv), [a.lower () for a in sys.argv]))" |
| 3535 | ) |
| 3536 | os.close(f) |
| 3537 | |
| 3538 | def tearDown(self): |
| 3539 | os.remove(self.fname) |
| 3540 | super().tearDown() |
| 3541 | |
| 3542 | def with_spaces(self, *args, **kwargs): |
| 3543 | kwargs['stdout'] = subprocess.PIPE |
| 3544 | p = subprocess.Popen(*args, **kwargs) |
Victor Stinner | 7438c61 | 2016-05-20 12:43:15 +0200 | [diff] [blame] | 3545 | with p: |
| 3546 | self.assertEqual( |
| 3547 | p.stdout.read ().decode("mbcs"), |
| 3548 | "2 [%r, 'ab cd']" % self.fname |
| 3549 | ) |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 3550 | |
| 3551 | def test_shell_string_with_spaces(self): |
| 3552 | # call() function with string argument with spaces on Windows |
Brian Curtin | d835cf1 | 2010-08-13 20:42:57 +0000 | [diff] [blame] | 3553 | self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname, |
| 3554 | "ab cd"), shell=1) |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 3555 | |
| 3556 | def test_shell_sequence_with_spaces(self): |
| 3557 | # call() function with sequence argument with spaces on Windows |
Brian Curtin | d835cf1 | 2010-08-13 20:42:57 +0000 | [diff] [blame] | 3558 | self.with_spaces([sys.executable, self.fname, "ab cd"], shell=1) |
Tim Golden | 126c296 | 2010-08-11 14:20:40 +0000 | [diff] [blame] | 3559 | |
| 3560 | def test_noshell_string_with_spaces(self): |
| 3561 | # call() function with string argument with spaces on Windows |
| 3562 | self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname, |
| 3563 | "ab cd")) |
| 3564 | |
| 3565 | def test_noshell_sequence_with_spaces(self): |
| 3566 | # call() function with sequence argument with spaces on Windows |
| 3567 | self.with_spaces([sys.executable, self.fname, "ab cd"]) |
| 3568 | |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3569 | |
Georg Brandl | a86b262 | 2012-02-20 21:34:57 +0100 | [diff] [blame] | 3570 | class ContextManagerTests(BaseTestCase): |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3571 | |
| 3572 | def test_pipe(self): |
| 3573 | with subprocess.Popen([sys.executable, "-c", |
| 3574 | "import sys;" |
| 3575 | "sys.stdout.write('stdout');" |
| 3576 | "sys.stderr.write('stderr');"], |
| 3577 | stdout=subprocess.PIPE, |
| 3578 | stderr=subprocess.PIPE) as proc: |
| 3579 | self.assertEqual(proc.stdout.read(), b"stdout") |
Victor Stinner | 6cac113 | 2019-12-08 08:38:16 +0100 | [diff] [blame] | 3580 | self.assertEqual(proc.stderr.read(), b"stderr") |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3581 | |
| 3582 | self.assertTrue(proc.stdout.closed) |
| 3583 | self.assertTrue(proc.stderr.closed) |
| 3584 | |
| 3585 | def test_returncode(self): |
| 3586 | with subprocess.Popen([sys.executable, "-c", |
| 3587 | "import sys; sys.exit(100)"]) as proc: |
Gregory P. Smith | 6b65745 | 2011-05-11 21:42:08 -0700 | [diff] [blame] | 3588 | pass |
| 3589 | # __exit__ calls wait(), so the returncode should be set |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3590 | self.assertEqual(proc.returncode, 100) |
| 3591 | |
| 3592 | def test_communicate_stdin(self): |
| 3593 | with subprocess.Popen([sys.executable, "-c", |
| 3594 | "import sys;" |
| 3595 | "sys.exit(sys.stdin.read() == 'context')"], |
| 3596 | stdin=subprocess.PIPE) as proc: |
| 3597 | proc.communicate(b"context") |
| 3598 | self.assertEqual(proc.returncode, 1) |
| 3599 | |
| 3600 | def test_invalid_args(self): |
Victor Stinner | b31206a | 2018-01-25 19:06:05 +0100 | [diff] [blame] | 3601 | with self.assertRaises(NONEXISTING_ERRORS): |
Victor Stinner | 9a83f65 | 2017-08-21 23:51:31 +0200 | [diff] [blame] | 3602 | with subprocess.Popen(NONEXISTING_CMD, |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3603 | stdout=subprocess.PIPE, |
| 3604 | stderr=subprocess.PIPE) as proc: |
| 3605 | pass |
| 3606 | |
Serhiy Storchaka | ab900c2 | 2015-02-28 12:43:08 +0200 | [diff] [blame] | 3607 | def test_broken_pipe_cleanup(self): |
| 3608 | """Broken pipe error should not prevent wait() (Issue 21619)""" |
Gregory P. Smith | 67b93f8 | 2019-10-12 16:35:53 -0700 | [diff] [blame] | 3609 | proc = subprocess.Popen(ZERO_RETURN_CMD, |
Victor Stinner | 20f4bd4 | 2015-03-05 02:38:41 +0100 | [diff] [blame] | 3610 | stdin=subprocess.PIPE, |
Victor Stinner | 20f4bd4 | 2015-03-05 02:38:41 +0100 | [diff] [blame] | 3611 | bufsize=support.PIPE_MAX_SIZE*2) |
Serhiy Storchaka | f87afb0 | 2015-03-08 09:16:40 +0200 | [diff] [blame] | 3612 | proc = proc.__enter__() |
| 3613 | # Prepare to send enough data to overflow any OS pipe buffering and |
| 3614 | # guarantee a broken pipe error. Data is held in BufferedWriter |
| 3615 | # buffer until closed. |
| 3616 | proc.stdin.write(b'x' * support.PIPE_MAX_SIZE) |
Serhiy Storchaka | ab900c2 | 2015-02-28 12:43:08 +0200 | [diff] [blame] | 3617 | self.assertIsNone(proc.returncode) |
Serhiy Storchaka | f87afb0 | 2015-03-08 09:16:40 +0200 | [diff] [blame] | 3618 | # EPIPE expected under POSIX; EINVAL under Windows |
Serhiy Storchaka | cf265fd | 2015-02-28 13:27:54 +0200 | [diff] [blame] | 3619 | self.assertRaises(OSError, proc.__exit__, None, None, None) |
Serhiy Storchaka | f87afb0 | 2015-03-08 09:16:40 +0200 | [diff] [blame] | 3620 | self.assertEqual(proc.returncode, 0) |
Serhiy Storchaka | ab900c2 | 2015-02-28 12:43:08 +0200 | [diff] [blame] | 3621 | self.assertTrue(proc.stdin.closed) |
Serhiy Storchaka | ab900c2 | 2015-02-28 12:43:08 +0200 | [diff] [blame] | 3622 | |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 3623 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 3624 | if __name__ == "__main__": |
Gregory P. Smith | 112bb3a | 2011-03-15 14:55:17 -0400 | [diff] [blame] | 3625 | unittest.main() |