blob: f41e9a9449189e0d26855ce595322387cb6cbb91 [file] [log] [blame]
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001import unittest
Benjamin Petersonee8712c2008-05-20 21:35:26 +00002from test import support
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00003import subprocess
4import sys
5import signal
6import os
Gregory P. Smitha59c59f2010-03-01 00:17:40 +00007import errno
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00008import tempfile
9import time
Tim Peters3761e8d2004-10-13 04:07:12 +000010import re
Ezio Melotti184bdfb2010-02-18 09:37:05 +000011import sysconfig
Gregory P. Smith32ec9da2010-03-19 16:53:08 +000012try:
13 import gc
14except ImportError:
15 gc = None
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000016
17mswindows = (sys.platform == "win32")
18
19#
20# Depends on the following external programs: Python
21#
22
23if mswindows:
Tim Peters3b01a702004-10-12 22:19:32 +000024 SETBINARY = ('import msvcrt; msvcrt.setmode(sys.stdout.fileno(), '
25 'os.O_BINARY);')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000026else:
27 SETBINARY = ''
28
Florent Xiclunab1e94e82010-02-27 22:12:37 +000029
30try:
31 mkstemp = tempfile.mkstemp
32except AttributeError:
33 # tempfile.mkstemp is not available
34 def mkstemp():
35 """Replacement for mkstemp, calling mktemp."""
36 fname = tempfile.mktemp()
37 return os.open(fname, os.O_RDWR|os.O_CREAT), fname
38
Tim Peters3761e8d2004-10-13 04:07:12 +000039
Florent Xiclunac049d872010-03-27 22:47:23 +000040class BaseTestCase(unittest.TestCase):
Thomas Wouters0e3f5912006-08-11 14:57:12 +000041 def setUp(self):
42 # Try to minimize the number of children we have so this test
43 # doesn't crash on some buildbots (Alphas in particular).
Florent Xiclunab1e94e82010-02-27 22:12:37 +000044 support.reap_children()
Thomas Wouters0e3f5912006-08-11 14:57:12 +000045
Florent Xiclunaf0cbd822010-03-04 21:50:56 +000046 def tearDown(self):
47 for inst in subprocess._active:
48 inst.wait()
49 subprocess._cleanup()
50 self.assertFalse(subprocess._active, "subprocess._active not empty")
51
Florent Xiclunab1e94e82010-02-27 22:12:37 +000052 def assertStderrEqual(self, stderr, expected, msg=None):
53 # In a debug build, stuff like "[6580 refs]" is printed to stderr at
54 # shutdown time. That frustrates tests trying to check stderr produced
55 # from a spawned Python process.
Antoine Pitrou62f68ed2010-08-04 11:48:56 +000056 actual = support.strip_python_stderr(stderr)
Florent Xiclunab1e94e82010-02-27 22:12:37 +000057 self.assertEqual(actual, expected, msg)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000058
Florent Xiclunac049d872010-03-27 22:47:23 +000059
60class ProcessTestCase(BaseTestCase):
61
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000062 def test_call_seq(self):
Tim Peters7b759da2004-10-12 22:29:54 +000063 # call() function with sequence argument
Tim Peters3b01a702004-10-12 22:19:32 +000064 rc = subprocess.call([sys.executable, "-c",
65 "import sys; sys.exit(47)"])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000066 self.assertEqual(rc, 47)
67
Peter Astrand454f7672005-01-01 09:36:35 +000068 def test_check_call_zero(self):
69 # check_call() function with zero return code
70 rc = subprocess.check_call([sys.executable, "-c",
71 "import sys; sys.exit(0)"])
72 self.assertEqual(rc, 0)
73
74 def test_check_call_nonzero(self):
75 # check_call() function with non-zero return code
Florent Xiclunab1e94e82010-02-27 22:12:37 +000076 with self.assertRaises(subprocess.CalledProcessError) as c:
Peter Astrand454f7672005-01-01 09:36:35 +000077 subprocess.check_call([sys.executable, "-c",
78 "import sys; sys.exit(47)"])
Florent Xiclunab1e94e82010-02-27 22:12:37 +000079 self.assertEqual(c.exception.returncode, 47)
Peter Astrand454f7672005-01-01 09:36:35 +000080
Georg Brandlf9734072008-12-07 15:30:06 +000081 def test_check_output(self):
82 # check_output() function with zero return code
83 output = subprocess.check_output(
84 [sys.executable, "-c", "print('BDFL')"])
Benjamin Peterson577473f2010-01-19 00:09:57 +000085 self.assertIn(b'BDFL', output)
Georg Brandlf9734072008-12-07 15:30:06 +000086
87 def test_check_output_nonzero(self):
88 # check_call() function with non-zero return code
Florent Xiclunab1e94e82010-02-27 22:12:37 +000089 with self.assertRaises(subprocess.CalledProcessError) as c:
Georg Brandlf9734072008-12-07 15:30:06 +000090 subprocess.check_output(
91 [sys.executable, "-c", "import sys; sys.exit(5)"])
Florent Xiclunab1e94e82010-02-27 22:12:37 +000092 self.assertEqual(c.exception.returncode, 5)
Georg Brandlf9734072008-12-07 15:30:06 +000093
94 def test_check_output_stderr(self):
95 # check_output() function stderr redirected to stdout
96 output = subprocess.check_output(
97 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
98 stderr=subprocess.STDOUT)
Benjamin Peterson577473f2010-01-19 00:09:57 +000099 self.assertIn(b'BDFL', output)
Georg Brandlf9734072008-12-07 15:30:06 +0000100
101 def test_check_output_stdout_arg(self):
102 # check_output() function stderr redirected to stdout
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000103 with self.assertRaises(ValueError) as c:
Georg Brandlf9734072008-12-07 15:30:06 +0000104 output = subprocess.check_output(
105 [sys.executable, "-c", "print('will not be run')"],
106 stdout=sys.stdout)
Georg Brandlf9734072008-12-07 15:30:06 +0000107 self.fail("Expected ValueError when stdout arg supplied.")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000108 self.assertIn('stdout', c.exception.args[0])
Georg Brandlf9734072008-12-07 15:30:06 +0000109
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000110 def test_call_kwargs(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000111 # call() function with keyword args
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000112 newenv = os.environ.copy()
113 newenv["FRUIT"] = "banana"
114 rc = subprocess.call([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000115 'import sys, os;'
116 'sys.exit(os.getenv("FRUIT")=="banana")'],
117 env=newenv)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000118 self.assertEqual(rc, 1)
119
120 def test_stdin_none(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000121 # .stdin is None when not redirected
Georg Brandl88fc6642007-02-09 21:28:07 +0000122 p = subprocess.Popen([sys.executable, "-c", 'print("banana")'],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000123 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
124 p.wait()
125 self.assertEqual(p.stdin, None)
126
127 def test_stdout_none(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000128 # .stdout is None when not redirected
Tim Peters29b6b4f2004-10-13 03:43:40 +0000129 p = subprocess.Popen([sys.executable, "-c",
Georg Brandl88fc6642007-02-09 21:28:07 +0000130 'print(" this bit of output is from a '
Tim Peters4052fe52004-10-13 03:29:54 +0000131 'test of stdout in a different '
Georg Brandl88fc6642007-02-09 21:28:07 +0000132 'process ...")'],
Tim Peters4052fe52004-10-13 03:29:54 +0000133 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000134 p.wait()
135 self.assertEqual(p.stdout, None)
136
137 def test_stderr_none(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000138 # .stderr is None when not redirected
Georg Brandl88fc6642007-02-09 21:28:07 +0000139 p = subprocess.Popen([sys.executable, "-c", 'print("banana")'],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000140 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
141 p.wait()
142 self.assertEqual(p.stderr, None)
143
Ezio Melotti184bdfb2010-02-18 09:37:05 +0000144 def test_executable_with_cwd(self):
Florent Xicluna1d1ab972010-03-11 01:53:10 +0000145 python_dir = os.path.dirname(os.path.realpath(sys.executable))
Ezio Melotti184bdfb2010-02-18 09:37:05 +0000146 p = subprocess.Popen(["somethingyoudonthave", "-c",
147 "import sys; sys.exit(47)"],
148 executable=sys.executable, cwd=python_dir)
149 p.wait()
150 self.assertEqual(p.returncode, 47)
151
152 @unittest.skipIf(sysconfig.is_python_build(),
153 "need an installed Python. See #7774")
154 def test_executable_without_cwd(self):
155 # For a normal installation, it should work without 'cwd'
156 # argument. For test runs in the build directory, see #7774.
157 p = subprocess.Popen(["somethingyoudonthave", "-c",
158 "import sys; sys.exit(47)"],
Tim Peters3b01a702004-10-12 22:19:32 +0000159 executable=sys.executable)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000160 p.wait()
161 self.assertEqual(p.returncode, 47)
162
163 def test_stdin_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000164 # stdin redirection
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000165 p = subprocess.Popen([sys.executable, "-c",
166 'import sys; sys.exit(sys.stdin.read() == "pear")'],
167 stdin=subprocess.PIPE)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000168 p.stdin.write(b"pear")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000169 p.stdin.close()
170 p.wait()
171 self.assertEqual(p.returncode, 1)
172
173 def test_stdin_filedes(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000174 # stdin is set to open file descriptor
Tim Peterse718f612004-10-12 21:51:32 +0000175 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000176 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000177 d = tf.fileno()
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000178 os.write(d, b"pear")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000179 os.lseek(d, 0, 0)
180 p = subprocess.Popen([sys.executable, "-c",
181 'import sys; sys.exit(sys.stdin.read() == "pear")'],
182 stdin=d)
183 p.wait()
184 self.assertEqual(p.returncode, 1)
185
186 def test_stdin_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000187 # stdin is set to open file object
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000188 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000189 self.addCleanup(tf.close)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000190 tf.write(b"pear")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000191 tf.seek(0)
192 p = subprocess.Popen([sys.executable, "-c",
193 'import sys; sys.exit(sys.stdin.read() == "pear")'],
194 stdin=tf)
195 p.wait()
196 self.assertEqual(p.returncode, 1)
197
198 def test_stdout_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000199 # stdout redirection
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000200 p = subprocess.Popen([sys.executable, "-c",
201 'import sys; sys.stdout.write("orange")'],
202 stdout=subprocess.PIPE)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000203 self.assertEqual(p.stdout.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000204
205 def test_stdout_filedes(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000206 # stdout is set to open file descriptor
Tim Peterse718f612004-10-12 21:51:32 +0000207 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000208 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000209 d = tf.fileno()
210 p = subprocess.Popen([sys.executable, "-c",
211 'import sys; sys.stdout.write("orange")'],
212 stdout=d)
213 p.wait()
214 os.lseek(d, 0, 0)
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000215 self.assertEqual(os.read(d, 1024), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000216
217 def test_stdout_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000218 # stdout is set to open file object
Tim Peterse718f612004-10-12 21:51:32 +0000219 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000220 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000221 p = subprocess.Popen([sys.executable, "-c",
222 'import sys; sys.stdout.write("orange")'],
223 stdout=tf)
224 p.wait()
225 tf.seek(0)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000226 self.assertEqual(tf.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000227
228 def test_stderr_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000229 # stderr redirection
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000230 p = subprocess.Popen([sys.executable, "-c",
231 'import sys; sys.stderr.write("strawberry")'],
232 stderr=subprocess.PIPE)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000233 self.assertStderrEqual(p.stderr.read(), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000234
235 def test_stderr_filedes(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000236 # stderr is set to open file descriptor
Tim Peterse718f612004-10-12 21:51:32 +0000237 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000238 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000239 d = tf.fileno()
240 p = subprocess.Popen([sys.executable, "-c",
241 'import sys; sys.stderr.write("strawberry")'],
242 stderr=d)
243 p.wait()
244 os.lseek(d, 0, 0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000245 self.assertStderrEqual(os.read(d, 1024), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000246
247 def test_stderr_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000248 # stderr is set to open file object
Tim Peterse718f612004-10-12 21:51:32 +0000249 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000250 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000251 p = subprocess.Popen([sys.executable, "-c",
252 'import sys; sys.stderr.write("strawberry")'],
253 stderr=tf)
254 p.wait()
255 tf.seek(0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000256 self.assertStderrEqual(tf.read(), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000257
258 def test_stdout_stderr_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000259 # capture stdout and stderr to the same pipe
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000260 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000261 'import sys;'
262 'sys.stdout.write("apple");'
263 'sys.stdout.flush();'
264 'sys.stderr.write("orange")'],
265 stdout=subprocess.PIPE,
266 stderr=subprocess.STDOUT)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000267 self.assertStderrEqual(p.stdout.read(), b"appleorange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000268
269 def test_stdout_stderr_file(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000270 # capture stdout and stderr to the same open file
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000271 tf = tempfile.TemporaryFile()
Benjamin Petersoncc221b22010-10-31 02:06:21 +0000272 self.addCleanup(tf.close)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000273 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000274 'import sys;'
275 'sys.stdout.write("apple");'
276 'sys.stdout.flush();'
277 'sys.stderr.write("orange")'],
278 stdout=tf,
279 stderr=tf)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000280 p.wait()
281 tf.seek(0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000282 self.assertStderrEqual(tf.read(), b"appleorange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000283
Thomas Wouters89f507f2006-12-13 04:49:30 +0000284 def test_stdout_filedes_of_stdout(self):
285 # stdout is set to 1 (#1531862).
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000286 cmd = r"import sys, os; sys.exit(os.write(sys.stdout.fileno(), b'.\n'))"
Thomas Wouters89f507f2006-12-13 04:49:30 +0000287 rc = subprocess.call([sys.executable, "-c", cmd], stdout=1)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000288 self.assertEqual(rc, 2)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000289
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000290 def test_cwd(self):
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000291 tmpdir = tempfile.gettempdir()
Peter Astrand195404f2004-11-12 15:51:48 +0000292 # We cannot use os.path.realpath to canonicalize the path,
293 # since it doesn't expand Tru64 {memb} strings. See bug 1063571.
294 cwd = os.getcwd()
295 os.chdir(tmpdir)
296 tmpdir = os.getcwd()
297 os.chdir(cwd)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000298 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000299 'import sys,os;'
300 'sys.stdout.write(os.getcwd())'],
301 stdout=subprocess.PIPE,
302 cwd=tmpdir)
Fredrik Lundh59c05592004-10-13 06:55:40 +0000303 normcase = os.path.normcase
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000304 self.assertEqual(normcase(p.stdout.read().decode("utf-8")),
305 normcase(tmpdir))
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000306
307 def test_env(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000308 newenv = os.environ.copy()
309 newenv["FRUIT"] = "orange"
310 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000311 'import sys,os;'
312 'sys.stdout.write(os.getenv("FRUIT"))'],
313 stdout=subprocess.PIPE,
314 env=newenv)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000315 self.assertEqual(p.stdout.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000316
Peter Astrandcbac93c2005-03-03 20:24:28 +0000317 def test_communicate_stdin(self):
318 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000319 'import sys;'
320 'sys.exit(sys.stdin.read() == "pear")'],
Peter Astrandcbac93c2005-03-03 20:24:28 +0000321 stdin=subprocess.PIPE)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000322 p.communicate(b"pear")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000323 self.assertEqual(p.returncode, 1)
324
325 def test_communicate_stdout(self):
326 p = subprocess.Popen([sys.executable, "-c",
327 'import sys; sys.stdout.write("pineapple")'],
328 stdout=subprocess.PIPE)
329 (stdout, stderr) = p.communicate()
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000330 self.assertEqual(stdout, b"pineapple")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000331 self.assertEqual(stderr, None)
332
333 def test_communicate_stderr(self):
334 p = subprocess.Popen([sys.executable, "-c",
335 'import sys; sys.stderr.write("pineapple")'],
336 stderr=subprocess.PIPE)
337 (stdout, stderr) = p.communicate()
338 self.assertEqual(stdout, None)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000339 self.assertStderrEqual(stderr, b"pineapple")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000340
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000341 def test_communicate(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000342 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000343 'import sys,os;'
344 'sys.stderr.write("pineapple");'
345 'sys.stdout.write(sys.stdin.read())'],
346 stdin=subprocess.PIPE,
347 stdout=subprocess.PIPE,
348 stderr=subprocess.PIPE)
Georg Brandl1abcbf82008-07-01 19:28:43 +0000349 (stdout, stderr) = p.communicate(b"banana")
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000350 self.assertEqual(stdout, b"banana")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000351 self.assertStderrEqual(stderr, b"pineapple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000352
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000353 # This test is Linux specific for simplicity to at least have
354 # some coverage. It is not a platform specific bug.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000355 @unittest.skipUnless(os.path.isdir('/proc/%d/fd' % os.getpid()),
356 "Linux specific")
357 # Test for the fd leak reported in http://bugs.python.org/issue2791.
358 def test_communicate_pipe_fd_leak(self):
359 fd_directory = '/proc/%d/fd' % os.getpid()
360 num_fds_before_popen = len(os.listdir(fd_directory))
361 p = subprocess.Popen([sys.executable, "-c", "print()"],
362 stdout=subprocess.PIPE)
363 p.communicate()
364 num_fds_after_communicate = len(os.listdir(fd_directory))
365 del p
366 num_fds_after_destruction = len(os.listdir(fd_directory))
367 self.assertEqual(num_fds_before_popen, num_fds_after_destruction)
368 self.assertEqual(num_fds_before_popen, num_fds_after_communicate)
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000369
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000370 def test_communicate_returns(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000371 # communicate() should return None if no redirection is active
Tim Peters3b01a702004-10-12 22:19:32 +0000372 p = subprocess.Popen([sys.executable, "-c",
373 "import sys; sys.exit(47)"])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000374 (stdout, stderr) = p.communicate()
375 self.assertEqual(stdout, None)
376 self.assertEqual(stderr, None)
377
378 def test_communicate_pipe_buf(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000379 # communicate() with writes larger than pipe_buf
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000380 # This test will probably deadlock rather than fail, if
Tim Peterse718f612004-10-12 21:51:32 +0000381 # communicate() does not work properly.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000382 x, y = os.pipe()
383 if mswindows:
384 pipe_buf = 512
385 else:
386 pipe_buf = os.fpathconf(x, "PC_PIPE_BUF")
387 os.close(x)
388 os.close(y)
389 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000390 'import sys,os;'
391 'sys.stdout.write(sys.stdin.read(47));'
392 'sys.stderr.write("xyz"*%d);'
393 'sys.stdout.write(sys.stdin.read())' % pipe_buf],
394 stdin=subprocess.PIPE,
395 stdout=subprocess.PIPE,
396 stderr=subprocess.PIPE)
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000397 string_to_write = b"abc"*pipe_buf
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000398 (stdout, stderr) = p.communicate(string_to_write)
399 self.assertEqual(stdout, string_to_write)
400
401 def test_writes_before_communicate(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000402 # stdin.write before communicate()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000403 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000404 'import sys,os;'
405 'sys.stdout.write(sys.stdin.read())'],
406 stdin=subprocess.PIPE,
407 stdout=subprocess.PIPE,
408 stderr=subprocess.PIPE)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000409 p.stdin.write(b"banana")
410 (stdout, stderr) = p.communicate(b"split")
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000411 self.assertEqual(stdout, b"bananasplit")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000412 self.assertStderrEqual(stderr, b"")
Tim Peterse718f612004-10-12 21:51:32 +0000413
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000414 def test_universal_newlines(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000415 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000416 'import sys,os;' + SETBINARY +
417 'sys.stdout.write("line1\\n");'
418 'sys.stdout.flush();'
419 'sys.stdout.write("line2\\n");'
420 'sys.stdout.flush();'
421 'sys.stdout.write("line3\\r\\n");'
422 'sys.stdout.flush();'
423 'sys.stdout.write("line4\\r");'
424 'sys.stdout.flush();'
425 'sys.stdout.write("\\nline5");'
426 'sys.stdout.flush();'
427 'sys.stdout.write("\\nline6");'],
428 stdout=subprocess.PIPE,
429 universal_newlines=1)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000430 stdout = p.stdout.read()
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000431 self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000432
433 def test_universal_newlines_communicate(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000434 # universal newlines through communicate()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000435 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000436 'import sys,os;' + SETBINARY +
437 'sys.stdout.write("line1\\n");'
438 'sys.stdout.flush();'
439 'sys.stdout.write("line2\\n");'
440 'sys.stdout.flush();'
441 'sys.stdout.write("line3\\r\\n");'
442 'sys.stdout.flush();'
443 'sys.stdout.write("line4\\r");'
444 'sys.stdout.flush();'
445 'sys.stdout.write("\\nline5");'
446 'sys.stdout.flush();'
447 'sys.stdout.write("\\nline6");'],
448 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
449 universal_newlines=1)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000450 (stdout, stderr) = p.communicate()
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000451 self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000452
453 def test_no_leaking(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000454 # Make sure we leak no resources
Antoine Pitrou8db30272010-09-18 22:38:48 +0000455 if not mswindows:
Peter Astrandf7f1bb72005-03-03 20:47:37 +0000456 max_handles = 1026 # too much for most UNIX systems
457 else:
Antoine Pitrou8db30272010-09-18 22:38:48 +0000458 max_handles = 2050 # too much for (at least some) Windows setups
459 handles = []
460 try:
461 for i in range(max_handles):
462 try:
463 handles.append(os.open(support.TESTFN,
464 os.O_WRONLY | os.O_CREAT))
465 except OSError as e:
466 if e.errno != errno.EMFILE:
467 raise
468 break
469 else:
470 self.skipTest("failed to reach the file descriptor limit "
471 "(tried %d)" % max_handles)
472 # Close a couple of them (should be enough for a subprocess)
473 for i in range(10):
474 os.close(handles.pop())
475 # Loop creating some subprocesses. If one of them leaks some fds,
476 # the next loop iteration will fail by reaching the max fd limit.
477 for i in range(15):
478 p = subprocess.Popen([sys.executable, "-c",
479 "import sys;"
480 "sys.stdout.write(sys.stdin.read())"],
481 stdin=subprocess.PIPE,
482 stdout=subprocess.PIPE,
483 stderr=subprocess.PIPE)
484 data = p.communicate(b"lime")[0]
485 self.assertEqual(data, b"lime")
486 finally:
487 for h in handles:
488 os.close(h)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000489
490 def test_list2cmdline(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000491 self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']),
492 '"a b c" d e')
493 self.assertEqual(subprocess.list2cmdline(['ab"c', '\\', 'd']),
494 'ab\\"c \\ d')
Christian Heimesfdab48e2008-01-20 09:06:41 +0000495 self.assertEqual(subprocess.list2cmdline(['ab"c', ' \\', 'd']),
496 'ab\\"c " \\\\" d')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000497 self.assertEqual(subprocess.list2cmdline(['a\\\\\\b', 'de fg', 'h']),
498 'a\\\\\\b "de fg" h')
499 self.assertEqual(subprocess.list2cmdline(['a\\"b', 'c', 'd']),
500 'a\\\\\\"b c d')
501 self.assertEqual(subprocess.list2cmdline(['a\\\\b c', 'd', 'e']),
502 '"a\\\\b c" d e')
503 self.assertEqual(subprocess.list2cmdline(['a\\\\b\\ c', 'd', 'e']),
504 '"a\\\\b\\ c" d e')
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000505 self.assertEqual(subprocess.list2cmdline(['ab', '']),
506 'ab ""')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000507
508
509 def test_poll(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000510 p = subprocess.Popen([sys.executable,
Tim Peters29b6b4f2004-10-13 03:43:40 +0000511 "-c", "import time; time.sleep(1)"])
512 count = 0
513 while p.poll() is None:
514 time.sleep(0.1)
515 count += 1
516 # We expect that the poll loop probably went around about 10 times,
517 # but, based on system scheduling we can't control, it's possible
518 # poll() never returned None. It "should be" very rare that it
519 # didn't go around at least twice.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000520 self.assertGreaterEqual(count, 2)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000521 # Subsequent invocations should just return the returncode
522 self.assertEqual(p.poll(), 0)
523
524
525 def test_wait(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000526 p = subprocess.Popen([sys.executable,
527 "-c", "import time; time.sleep(2)"])
528 self.assertEqual(p.wait(), 0)
529 # Subsequent invocations should just return the returncode
530 self.assertEqual(p.wait(), 0)
Tim Peterse718f612004-10-12 21:51:32 +0000531
Peter Astrand738131d2004-11-30 21:04:45 +0000532
533 def test_invalid_bufsize(self):
534 # an invalid type of the bufsize argument should raise
535 # TypeError.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000536 with self.assertRaises(TypeError):
Peter Astrand738131d2004-11-30 21:04:45 +0000537 subprocess.Popen([sys.executable, "-c", "pass"], "orange")
Peter Astrand738131d2004-11-30 21:04:45 +0000538
Guido van Rossum46a05a72007-06-07 21:56:45 +0000539 def test_bufsize_is_none(self):
540 # bufsize=None should be the same as bufsize=0.
541 p = subprocess.Popen([sys.executable, "-c", "pass"], None)
542 self.assertEqual(p.wait(), 0)
543 # Again with keyword arg
544 p = subprocess.Popen([sys.executable, "-c", "pass"], bufsize=None)
545 self.assertEqual(p.wait(), 0)
546
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000547 def test_leaking_fds_on_error(self):
548 # see bug #5179: Popen leaks file descriptors to PIPEs if
549 # the child fails to execute; this will eventually exhaust
550 # the maximum number of open fds. 1024 seems a very common
551 # value for that limit, but Windows has 2048, so we loop
552 # 1024 times (each call leaked two fds).
553 for i in range(1024):
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000554 # Windows raises IOError. Others raise OSError.
555 with self.assertRaises(EnvironmentError) as c:
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000556 subprocess.Popen(['nonexisting_i_hope'],
557 stdout=subprocess.PIPE,
558 stderr=subprocess.PIPE)
Antoine Pitrou679e0f22010-09-18 17:56:02 +0000559 if c.exception.errno != errno.ENOENT: # ignore "no such file"
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000560 raise c.exception
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000561
Victor Stinnerb3693582010-05-21 20:13:12 +0000562 def test_issue8780(self):
563 # Ensure that stdout is inherited from the parent
564 # if stdout=PIPE is not used
565 code = ';'.join((
566 'import subprocess, sys',
567 'retcode = subprocess.call('
568 "[sys.executable, '-c', 'print(\"Hello World!\")'])",
569 'assert retcode == 0'))
570 output = subprocess.check_output([sys.executable, '-c', code])
571 self.assert_(output.startswith(b'Hello World!'), ascii(output))
572
Tim Goldenaf5ac392010-08-06 13:03:56 +0000573 def test_handles_closed_on_exception(self):
574 # If CreateProcess exits with an error, ensure the
575 # duplicate output handles are released
576 ifhandle, ifname = mkstemp()
577 ofhandle, ofname = mkstemp()
578 efhandle, efname = mkstemp()
579 try:
580 subprocess.Popen (["*"], stdin=ifhandle, stdout=ofhandle,
581 stderr=efhandle)
582 except OSError:
583 os.close(ifhandle)
584 os.remove(ifname)
585 os.close(ofhandle)
586 os.remove(ofname)
587 os.close(efhandle)
588 os.remove(efname)
589 self.assertFalse(os.path.exists(ifname))
590 self.assertFalse(os.path.exists(ofname))
591 self.assertFalse(os.path.exists(efname))
592
Tim Peterse718f612004-10-12 21:51:32 +0000593
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000594# context manager
595class _SuppressCoreFiles(object):
596 """Try to prevent core files from being created."""
597 old_limit = None
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000598
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000599 def __enter__(self):
600 """Try to save previous ulimit, then set it to (0, 0)."""
601 try:
602 import resource
603 self.old_limit = resource.getrlimit(resource.RLIMIT_CORE)
604 resource.setrlimit(resource.RLIMIT_CORE, (0, 0))
605 except (ImportError, ValueError, resource.error):
606 pass
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000607
Ronald Oussoren102d11a2010-07-23 09:50:05 +0000608 if sys.platform == 'darwin':
609 # Check if the 'Crash Reporter' on OSX was configured
610 # in 'Developer' mode and warn that it will get triggered
611 # when it is.
612 #
613 # This assumes that this context manager is used in tests
614 # that might trigger the next manager.
615 value = subprocess.Popen(['/usr/bin/defaults', 'read',
616 'com.apple.CrashReporter', 'DialogType'],
617 stdout=subprocess.PIPE).communicate()[0]
618 if value.strip() == b'developer':
619 print("this tests triggers the Crash Reporter, "
620 "that is intentional", end='')
621 sys.stdout.flush()
622
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000623 def __exit__(self, *args):
624 """Return core file behavior to default."""
625 if self.old_limit is None:
626 return
627 try:
628 import resource
629 resource.setrlimit(resource.RLIMIT_CORE, self.old_limit)
630 except (ImportError, ValueError, resource.error):
631 pass
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000632
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000633
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000634@unittest.skipIf(mswindows, "POSIX specific tests")
Florent Xiclunac049d872010-03-27 22:47:23 +0000635class POSIXProcessTestCase(BaseTestCase):
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000636
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000637 def test_exceptions(self):
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000638 nonexistent_dir = "/_this/pa.th/does/not/exist"
639 try:
640 os.chdir(nonexistent_dir)
641 except OSError as e:
642 # This avoids hard coding the errno value or the OS perror()
643 # string and instead capture the exception that we want to see
644 # below for comparison.
645 desired_exception = e
646 else:
647 self.fail("chdir to nonexistant directory %s succeeded." %
648 nonexistent_dir)
649
650 # Error in the child re-raised in the parent.
651 try:
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000652 p = subprocess.Popen([sys.executable, "-c", ""],
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000653 cwd=nonexistent_dir)
654 except OSError as e:
655 # Test that the child process chdir failure actually makes
656 # it up to the parent process as the correct exception.
657 self.assertEqual(desired_exception.errno, e.errno)
658 self.assertEqual(desired_exception.strerror, e.strerror)
659 else:
660 self.fail("Expected OSError: %s" % desired_exception)
661
662 def test_restore_signals(self):
663 # Code coverage for both values of restore_signals to make sure it
664 # at least does not blow up.
665 # A test for behavior would be complex. Contributions welcome.
666 subprocess.call([sys.executable, "-c", ""], restore_signals=True)
667 subprocess.call([sys.executable, "-c", ""], restore_signals=False)
668
669 def test_start_new_session(self):
670 # For code coverage of calling setsid(). We don't care if we get an
671 # EPERM error from it depending on the test execution environment, that
672 # still indicates that it was called.
673 try:
674 output = subprocess.check_output(
675 [sys.executable, "-c",
676 "import os; print(os.getpgid(os.getpid()))"],
677 start_new_session=True)
678 except OSError as e:
679 if e.errno != errno.EPERM:
680 raise
681 else:
682 parent_pgid = os.getpgid(os.getpid())
683 child_pgid = int(output)
684 self.assertNotEqual(parent_pgid, child_pgid)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000685
686 def test_run_abort(self):
687 # returncode handles signal termination
688 with _SuppressCoreFiles():
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000689 p = subprocess.Popen([sys.executable, "-c",
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000690 'import os; os.abort()'])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000691 p.wait()
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000692 self.assertEqual(-p.returncode, signal.SIGABRT)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000693
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000694 def test_preexec(self):
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000695 # DISCLAIMER: Setting environment variables is *not* a good use
696 # of a preexec_fn. This is merely a test.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000697 p = subprocess.Popen([sys.executable, "-c",
698 'import sys,os;'
699 'sys.stdout.write(os.getenv("FRUIT"))'],
700 stdout=subprocess.PIPE,
701 preexec_fn=lambda: os.putenv("FRUIT", "apple"))
702 self.assertEqual(p.stdout.read(), b"apple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000703
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000704 def test_preexec_exception(self):
705 def raise_it():
706 raise ValueError("What if two swallows carried a coconut?")
707 try:
708 p = subprocess.Popen([sys.executable, "-c", ""],
709 preexec_fn=raise_it)
710 except RuntimeError as e:
711 self.assertTrue(
712 subprocess._posixsubprocess,
713 "Expected a ValueError from the preexec_fn")
714 except ValueError as e:
715 self.assertIn("coconut", e.args[0])
716 else:
717 self.fail("Exception raised by preexec_fn did not make it "
718 "to the parent process.")
719
Gregory P. Smith32ec9da2010-03-19 16:53:08 +0000720 @unittest.skipUnless(gc, "Requires a gc module.")
721 def test_preexec_gc_module_failure(self):
722 # This tests the code that disables garbage collection if the child
723 # process will execute any Python.
724 def raise_runtime_error():
725 raise RuntimeError("this shouldn't escape")
726 enabled = gc.isenabled()
727 orig_gc_disable = gc.disable
728 orig_gc_isenabled = gc.isenabled
729 try:
730 gc.disable()
731 self.assertFalse(gc.isenabled())
732 subprocess.call([sys.executable, '-c', ''],
733 preexec_fn=lambda: None)
734 self.assertFalse(gc.isenabled(),
735 "Popen enabled gc when it shouldn't.")
736
737 gc.enable()
738 self.assertTrue(gc.isenabled())
739 subprocess.call([sys.executable, '-c', ''],
740 preexec_fn=lambda: None)
741 self.assertTrue(gc.isenabled(), "Popen left gc disabled.")
742
743 gc.disable = raise_runtime_error
744 self.assertRaises(RuntimeError, subprocess.Popen,
745 [sys.executable, '-c', ''],
746 preexec_fn=lambda: None)
747
748 del gc.isenabled # force an AttributeError
749 self.assertRaises(AttributeError, subprocess.Popen,
750 [sys.executable, '-c', ''],
751 preexec_fn=lambda: None)
752 finally:
753 gc.disable = orig_gc_disable
754 gc.isenabled = orig_gc_isenabled
755 if not enabled:
756 gc.disable()
757
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000758 def test_args_string(self):
759 # args is a string
760 fd, fname = mkstemp()
761 # reopen in text mode
Victor Stinnerf6782ac2010-10-16 23:46:43 +0000762 with open(fd, "w", errors="surrogateescape") as fobj:
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000763 fobj.write("#!/bin/sh\n")
764 fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" %
765 sys.executable)
766 os.chmod(fname, 0o700)
767 p = subprocess.Popen(fname)
768 p.wait()
769 os.remove(fname)
770 self.assertEqual(p.returncode, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000771
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000772 def test_invalid_args(self):
773 # invalid arguments should raise ValueError
774 self.assertRaises(ValueError, subprocess.call,
775 [sys.executable, "-c",
776 "import sys; sys.exit(47)"],
777 startupinfo=47)
778 self.assertRaises(ValueError, subprocess.call,
779 [sys.executable, "-c",
780 "import sys; sys.exit(47)"],
781 creationflags=47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000782
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000783 def test_shell_sequence(self):
784 # Run command through the shell (sequence)
785 newenv = os.environ.copy()
786 newenv["FRUIT"] = "apple"
787 p = subprocess.Popen(["echo $FRUIT"], shell=1,
788 stdout=subprocess.PIPE,
789 env=newenv)
790 self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000791
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000792 def test_shell_string(self):
793 # Run command through the shell (string)
794 newenv = os.environ.copy()
795 newenv["FRUIT"] = "apple"
796 p = subprocess.Popen("echo $FRUIT", shell=1,
797 stdout=subprocess.PIPE,
798 env=newenv)
799 self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple")
Christian Heimesa342c012008-04-20 21:01:16 +0000800
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000801 def test_call_string(self):
802 # call() function with string argument on UNIX
803 fd, fname = mkstemp()
804 # reopen in text mode
Victor Stinnerf6782ac2010-10-16 23:46:43 +0000805 with open(fd, "w", errors="surrogateescape") as fobj:
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000806 fobj.write("#!/bin/sh\n")
807 fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" %
808 sys.executable)
809 os.chmod(fname, 0o700)
810 rc = subprocess.call(fname)
811 os.remove(fname)
812 self.assertEqual(rc, 47)
Christian Heimesa342c012008-04-20 21:01:16 +0000813
Stefan Krah9542cc62010-07-19 14:20:53 +0000814 def test_specific_shell(self):
815 # Issue #9265: Incorrect name passed as arg[0].
816 shells = []
817 for prefix in ['/bin', '/usr/bin/', '/usr/local/bin']:
818 for name in ['bash', 'ksh']:
819 sh = os.path.join(prefix, name)
820 if os.path.isfile(sh):
821 shells.append(sh)
822 if not shells: # Will probably work for any shell but csh.
823 self.skipTest("bash or ksh required for this test")
824 sh = '/bin/sh'
825 if os.path.isfile(sh) and not os.path.islink(sh):
826 # Test will fail if /bin/sh is a symlink to csh.
827 shells.append(sh)
828 for sh in shells:
829 p = subprocess.Popen("echo $0", executable=sh, shell=True,
830 stdout=subprocess.PIPE)
831 self.assertEqual(p.stdout.read().strip(), bytes(sh, 'ascii'))
832
Florent Xicluna4886d242010-03-08 13:27:26 +0000833 def _kill_process(self, method, *args):
Florent Xicluna1d8ee3a2010-03-05 20:26:54 +0000834 # Do not inherit file handles from the parent.
835 # It should fix failures on some platforms.
Antoine Pitrou3d8580f2010-09-20 01:33:21 +0000836 p = subprocess.Popen([sys.executable, "-c", """if 1:
837 import sys, time
838 sys.stdout.write('x\\n')
839 sys.stdout.flush()
840 time.sleep(30)
841 """],
842 close_fds=True,
843 stdin=subprocess.PIPE,
844 stdout=subprocess.PIPE,
845 stderr=subprocess.PIPE)
846 # Wait for the interpreter to be completely initialized before
847 # sending any signal.
848 p.stdout.read(1)
849 getattr(p, method)(*args)
Florent Xicluna4886d242010-03-08 13:27:26 +0000850 return p
851
852 def test_send_signal(self):
853 p = self._kill_process('send_signal', signal.SIGINT)
Florent Xiclunac049d872010-03-27 22:47:23 +0000854 _, stderr = p.communicate()
855 self.assertIn(b'KeyboardInterrupt', stderr)
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000856 self.assertNotEqual(p.wait(), 0)
Christian Heimesa342c012008-04-20 21:01:16 +0000857
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000858 def test_kill(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000859 p = self._kill_process('kill')
Florent Xiclunac049d872010-03-27 22:47:23 +0000860 _, stderr = p.communicate()
861 self.assertStderrEqual(stderr, b'')
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000862 self.assertEqual(p.wait(), -signal.SIGKILL)
Tim Peterse718f612004-10-12 21:51:32 +0000863
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000864 def test_terminate(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000865 p = self._kill_process('terminate')
Florent Xiclunac049d872010-03-27 22:47:23 +0000866 _, stderr = p.communicate()
867 self.assertStderrEqual(stderr, b'')
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000868 self.assertEqual(p.wait(), -signal.SIGTERM)
869
Victor Stinner13bb71c2010-04-23 21:41:56 +0000870 def test_surrogates_error_message(self):
Victor Stinner4d078042010-04-23 19:28:32 +0000871 def prepare():
872 raise ValueError("surrogate:\uDCff")
873
874 try:
875 subprocess.call(
876 [sys.executable, "-c", "pass"],
877 preexec_fn=prepare)
878 except ValueError as err:
879 # Pure Python implementations keeps the message
880 self.assertIsNone(subprocess._posixsubprocess)
881 self.assertEqual(str(err), "surrogate:\uDCff")
882 except RuntimeError as err:
883 # _posixsubprocess uses a default message
884 self.assertIsNotNone(subprocess._posixsubprocess)
885 self.assertEqual(str(err), "Exception occurred in preexec_fn.")
886 else:
887 self.fail("Expected ValueError or RuntimeError")
888
Victor Stinner13bb71c2010-04-23 21:41:56 +0000889 def test_undecodable_env(self):
890 for key, value in (('test', 'abc\uDCFF'), ('test\uDCFF', '42')):
Victor Stinner13bb71c2010-04-23 21:41:56 +0000891 # test str with surrogates
Antoine Pitroufb8db8f2010-09-19 22:46:05 +0000892 script = "import os; print(ascii(os.getenv(%s)))" % repr(key)
Victor Stinnerce2d24d2010-04-23 22:55:39 +0000893 env = os.environ.copy()
894 env[key] = value
Victor Stinner89f3ad12010-10-14 10:43:31 +0000895 # Use C locale to get ascii for the locale encoding to force
896 # surrogate-escaping of \xFF in the child process; otherwise it can
897 # be decoded as-is if the default locale is latin-1.
Victor Stinnerebc78d22010-10-14 10:38:17 +0000898 env['LC_ALL'] = 'C'
Victor Stinner13bb71c2010-04-23 21:41:56 +0000899 stdout = subprocess.check_output(
900 [sys.executable, "-c", script],
Victor Stinnerce2d24d2010-04-23 22:55:39 +0000901 env=env)
Victor Stinner13bb71c2010-04-23 21:41:56 +0000902 stdout = stdout.rstrip(b'\n\r')
Antoine Pitroufb8db8f2010-09-19 22:46:05 +0000903 self.assertEquals(stdout.decode('ascii'), ascii(value))
Victor Stinner13bb71c2010-04-23 21:41:56 +0000904
905 # test bytes
906 key = key.encode("ascii", "surrogateescape")
907 value = value.encode("ascii", "surrogateescape")
Antoine Pitroufb8db8f2010-09-19 22:46:05 +0000908 script = "import os; print(ascii(os.getenvb(%s)))" % repr(key)
Victor Stinnerce2d24d2010-04-23 22:55:39 +0000909 env = os.environ.copy()
910 env[key] = value
Victor Stinner13bb71c2010-04-23 21:41:56 +0000911 stdout = subprocess.check_output(
912 [sys.executable, "-c", script],
Victor Stinnerce2d24d2010-04-23 22:55:39 +0000913 env=env)
Victor Stinner13bb71c2010-04-23 21:41:56 +0000914 stdout = stdout.rstrip(b'\n\r')
Antoine Pitroufb8db8f2010-09-19 22:46:05 +0000915 self.assertEquals(stdout.decode('ascii'), ascii(value))
Victor Stinner13bb71c2010-04-23 21:41:56 +0000916
Victor Stinnerb745a742010-05-18 17:17:23 +0000917 def test_bytes_program(self):
918 abs_program = os.fsencode(sys.executable)
919 path, program = os.path.split(sys.executable)
920 program = os.fsencode(program)
921
922 # absolute bytes path
923 exitcode = subprocess.call([abs_program, "-c", "pass"])
924 self.assertEquals(exitcode, 0)
925
926 # bytes program, unicode PATH
927 env = os.environ.copy()
928 env["PATH"] = path
929 exitcode = subprocess.call([program, "-c", "pass"], env=env)
930 self.assertEquals(exitcode, 0)
931
932 # bytes program, bytes PATH
933 envb = os.environb.copy()
934 envb[b"PATH"] = os.fsencode(path)
935 exitcode = subprocess.call([program, "-c", "pass"], env=envb)
936 self.assertEquals(exitcode, 0)
937
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000938
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000939@unittest.skipUnless(mswindows, "Windows specific tests")
Florent Xiclunac049d872010-03-27 22:47:23 +0000940class Win32ProcessTestCase(BaseTestCase):
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000941
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000942 def test_startupinfo(self):
943 # startupinfo argument
944 # We uses hardcoded constants, because we do not want to
945 # depend on win32all.
946 STARTF_USESHOWWINDOW = 1
947 SW_MAXIMIZE = 3
948 startupinfo = subprocess.STARTUPINFO()
949 startupinfo.dwFlags = STARTF_USESHOWWINDOW
950 startupinfo.wShowWindow = SW_MAXIMIZE
951 # Since Python is a console process, it won't be affected
952 # by wShowWindow, but the argument should be silently
953 # ignored
954 subprocess.call([sys.executable, "-c", "import sys; sys.exit(0)"],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000955 startupinfo=startupinfo)
956
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000957 def test_creationflags(self):
958 # creationflags argument
959 CREATE_NEW_CONSOLE = 16
960 sys.stderr.write(" a DOS box should flash briefly ...\n")
961 subprocess.call(sys.executable +
962 ' -c "import time; time.sleep(0.25)"',
963 creationflags=CREATE_NEW_CONSOLE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000964
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000965 def test_invalid_args(self):
966 # invalid arguments should raise ValueError
967 self.assertRaises(ValueError, subprocess.call,
968 [sys.executable, "-c",
969 "import sys; sys.exit(47)"],
970 preexec_fn=lambda: 1)
971 self.assertRaises(ValueError, subprocess.call,
972 [sys.executable, "-c",
973 "import sys; sys.exit(47)"],
974 stdout=subprocess.PIPE,
975 close_fds=True)
976
977 def test_close_fds(self):
978 # close file descriptors
979 rc = subprocess.call([sys.executable, "-c",
980 "import sys; sys.exit(47)"],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000981 close_fds=True)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000982 self.assertEqual(rc, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000983
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000984 def test_shell_sequence(self):
985 # Run command through the shell (sequence)
986 newenv = os.environ.copy()
987 newenv["FRUIT"] = "physalis"
988 p = subprocess.Popen(["set"], shell=1,
989 stdout=subprocess.PIPE,
990 env=newenv)
991 self.assertIn(b"physalis", p.stdout.read())
Guido van Rossume7ba4952007-06-06 23:52:48 +0000992
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000993 def test_shell_string(self):
994 # Run command through the shell (string)
995 newenv = os.environ.copy()
996 newenv["FRUIT"] = "physalis"
997 p = subprocess.Popen("set", shell=1,
998 stdout=subprocess.PIPE,
999 env=newenv)
1000 self.assertIn(b"physalis", p.stdout.read())
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001001
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001002 def test_call_string(self):
1003 # call() function with string argument on Windows
1004 rc = subprocess.call(sys.executable +
1005 ' -c "import sys; sys.exit(47)"')
1006 self.assertEqual(rc, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001007
Florent Xicluna4886d242010-03-08 13:27:26 +00001008 def _kill_process(self, method, *args):
1009 # Some win32 buildbot raises EOFError if stdin is inherited
Antoine Pitroua4024e22010-09-24 18:57:01 +00001010 p = subprocess.Popen([sys.executable, "-c", """if 1:
1011 import sys, time
1012 sys.stdout.write('x\\n')
1013 sys.stdout.flush()
1014 time.sleep(30)
1015 """],
1016 stdin=subprocess.PIPE,
1017 stdout=subprocess.PIPE,
1018 stderr=subprocess.PIPE)
1019 # Wait for the interpreter to be completely initialized before
1020 # sending any signal.
1021 p.stdout.read(1)
1022 getattr(p, method)(*args)
Florent Xiclunac049d872010-03-27 22:47:23 +00001023 _, stderr = p.communicate()
1024 self.assertStderrEqual(stderr, b'')
Antoine Pitroua4024e22010-09-24 18:57:01 +00001025 returncode = p.wait()
Florent Xicluna4886d242010-03-08 13:27:26 +00001026 self.assertNotEqual(returncode, 0)
1027
1028 def test_send_signal(self):
1029 self._kill_process('send_signal', signal.SIGTERM)
Christian Heimesa342c012008-04-20 21:01:16 +00001030
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001031 def test_kill(self):
Florent Xicluna4886d242010-03-08 13:27:26 +00001032 self._kill_process('kill')
Christian Heimesa342c012008-04-20 21:01:16 +00001033
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001034 def test_terminate(self):
Florent Xicluna4886d242010-03-08 13:27:26 +00001035 self._kill_process('terminate')
Christian Heimesa342c012008-04-20 21:01:16 +00001036
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001037
Brett Cannona23810f2008-05-26 19:04:21 +00001038# The module says:
1039# "NB This only works (and is only relevant) for UNIX."
1040#
1041# Actually, getoutput should work on any platform with an os.popen, but
1042# I'll take the comment as given, and skip this suite.
Florent Xiclunaf0cbd822010-03-04 21:50:56 +00001043@unittest.skipUnless(os.name == 'posix', "only relevant for UNIX")
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001044class CommandTests(unittest.TestCase):
1045 def test_getoutput(self):
1046 self.assertEqual(subprocess.getoutput('echo xyzzy'), 'xyzzy')
1047 self.assertEqual(subprocess.getstatusoutput('echo xyzzy'),
1048 (0, 'xyzzy'))
Brett Cannona23810f2008-05-26 19:04:21 +00001049
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001050 # we use mkdtemp in the next line to create an empty directory
1051 # under our exclusive control; from that, we can invent a pathname
1052 # that we _know_ won't exist. This is guaranteed to fail.
1053 dir = None
1054 try:
1055 dir = tempfile.mkdtemp()
1056 name = os.path.join(dir, "foo")
Brett Cannona23810f2008-05-26 19:04:21 +00001057
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001058 status, output = subprocess.getstatusoutput('cat ' + name)
1059 self.assertNotEqual(status, 0)
1060 finally:
1061 if dir is not None:
1062 os.rmdir(dir)
Brett Cannona23810f2008-05-26 19:04:21 +00001063
Gregory P. Smithd06fa472009-07-04 02:46:54 +00001064
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001065@unittest.skipUnless(getattr(subprocess, '_has_poll', False),
1066 "poll system call not supported")
1067class ProcessTestCaseNoPoll(ProcessTestCase):
1068 def setUp(self):
1069 subprocess._has_poll = False
1070 ProcessTestCase.setUp(self)
Gregory P. Smithd06fa472009-07-04 02:46:54 +00001071
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001072 def tearDown(self):
1073 subprocess._has_poll = True
1074 ProcessTestCase.tearDown(self)
Gregory P. Smithd06fa472009-07-04 02:46:54 +00001075
1076
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +00001077@unittest.skipUnless(getattr(subprocess, '_posixsubprocess', False),
1078 "_posixsubprocess extension module not found.")
1079class ProcessTestCasePOSIXPurePython(ProcessTestCase, POSIXProcessTestCase):
1080 def setUp(self):
1081 subprocess._posixsubprocess = None
1082 ProcessTestCase.setUp(self)
1083 POSIXProcessTestCase.setUp(self)
1084
1085 def tearDown(self):
1086 subprocess._posixsubprocess = sys.modules['_posixsubprocess']
1087 POSIXProcessTestCase.tearDown(self)
1088 ProcessTestCase.tearDown(self)
1089
1090
Gregory P. Smitha59c59f2010-03-01 00:17:40 +00001091class HelperFunctionTests(unittest.TestCase):
Gregory P. Smithaf6d3b82010-03-01 02:56:44 +00001092 @unittest.skipIf(mswindows, "errno and EINTR make no sense on windows")
Gregory P. Smitha59c59f2010-03-01 00:17:40 +00001093 def test_eintr_retry_call(self):
1094 record_calls = []
1095 def fake_os_func(*args):
1096 record_calls.append(args)
1097 if len(record_calls) == 2:
1098 raise OSError(errno.EINTR, "fake interrupted system call")
1099 return tuple(reversed(args))
1100
1101 self.assertEqual((999, 256),
1102 subprocess._eintr_retry_call(fake_os_func, 256, 999))
1103 self.assertEqual([(256, 999)], record_calls)
1104 # This time there will be an EINTR so it will loop once.
1105 self.assertEqual((666,),
1106 subprocess._eintr_retry_call(fake_os_func, 666))
1107 self.assertEqual([(256, 999), (666,), (666,)], record_calls)
1108
1109
Tim Golden126c2962010-08-11 14:20:40 +00001110@unittest.skipUnless(mswindows, "Windows-specific tests")
1111class CommandsWithSpaces (BaseTestCase):
1112
1113 def setUp(self):
1114 super().setUp()
1115 f, fname = mkstemp(".py", "te st")
1116 self.fname = fname.lower ()
1117 os.write(f, b"import sys;"
1118 b"sys.stdout.write('%d %s' % (len(sys.argv), [a.lower () for a in sys.argv]))"
1119 )
1120 os.close(f)
1121
1122 def tearDown(self):
1123 os.remove(self.fname)
1124 super().tearDown()
1125
1126 def with_spaces(self, *args, **kwargs):
1127 kwargs['stdout'] = subprocess.PIPE
1128 p = subprocess.Popen(*args, **kwargs)
1129 self.assertEqual(
1130 p.stdout.read ().decode("mbcs"),
1131 "2 [%r, 'ab cd']" % self.fname
1132 )
1133
1134 def test_shell_string_with_spaces(self):
1135 # call() function with string argument with spaces on Windows
Brian Curtind835cf12010-08-13 20:42:57 +00001136 self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname,
1137 "ab cd"), shell=1)
Tim Golden126c2962010-08-11 14:20:40 +00001138
1139 def test_shell_sequence_with_spaces(self):
1140 # call() function with sequence argument with spaces on Windows
Brian Curtind835cf12010-08-13 20:42:57 +00001141 self.with_spaces([sys.executable, self.fname, "ab cd"], shell=1)
Tim Golden126c2962010-08-11 14:20:40 +00001142
1143 def test_noshell_string_with_spaces(self):
1144 # call() function with string argument with spaces on Windows
1145 self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname,
1146 "ab cd"))
1147
1148 def test_noshell_sequence_with_spaces(self):
1149 # call() function with sequence argument with spaces on Windows
1150 self.with_spaces([sys.executable, self.fname, "ab cd"])
1151
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001152def test_main():
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001153 unit_tests = (ProcessTestCase,
1154 POSIXProcessTestCase,
1155 Win32ProcessTestCase,
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +00001156 ProcessTestCasePOSIXPurePython,
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001157 CommandTests,
Gregory P. Smitha59c59f2010-03-01 00:17:40 +00001158 ProcessTestCaseNoPoll,
Tim Golden126c2962010-08-11 14:20:40 +00001159 HelperFunctionTests,
1160 CommandsWithSpaces)
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001161
Gregory P. Smithd06fa472009-07-04 02:46:54 +00001162 support.run_unittest(*unit_tests)
Brett Cannona23810f2008-05-26 19:04:21 +00001163 support.reap_children()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001164
1165if __name__ == "__main__":
Brett Cannona23810f2008-05-26 19:04:21 +00001166 test_main()