blob: ce539325388f97533d64eb28d2cef77dab44acee [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.
56 actual = re.sub("\[\d+ refs\]\r?\n?$", "", stderr.decode()).encode()
57 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()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000176 d = tf.fileno()
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000177 os.write(d, b"pear")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000178 os.lseek(d, 0, 0)
179 p = subprocess.Popen([sys.executable, "-c",
180 'import sys; sys.exit(sys.stdin.read() == "pear")'],
181 stdin=d)
182 p.wait()
183 self.assertEqual(p.returncode, 1)
184
185 def test_stdin_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000186 # stdin is set to open file object
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000187 tf = tempfile.TemporaryFile()
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000188 tf.write(b"pear")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000189 tf.seek(0)
190 p = subprocess.Popen([sys.executable, "-c",
191 'import sys; sys.exit(sys.stdin.read() == "pear")'],
192 stdin=tf)
193 p.wait()
194 self.assertEqual(p.returncode, 1)
195
196 def test_stdout_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000197 # stdout redirection
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000198 p = subprocess.Popen([sys.executable, "-c",
199 'import sys; sys.stdout.write("orange")'],
200 stdout=subprocess.PIPE)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000201 self.assertEqual(p.stdout.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000202
203 def test_stdout_filedes(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000204 # stdout is set to open file descriptor
Tim Peterse718f612004-10-12 21:51:32 +0000205 tf = tempfile.TemporaryFile()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000206 d = tf.fileno()
207 p = subprocess.Popen([sys.executable, "-c",
208 'import sys; sys.stdout.write("orange")'],
209 stdout=d)
210 p.wait()
211 os.lseek(d, 0, 0)
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000212 self.assertEqual(os.read(d, 1024), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000213
214 def test_stdout_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000215 # stdout is set to open file object
Tim Peterse718f612004-10-12 21:51:32 +0000216 tf = tempfile.TemporaryFile()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000217 p = subprocess.Popen([sys.executable, "-c",
218 'import sys; sys.stdout.write("orange")'],
219 stdout=tf)
220 p.wait()
221 tf.seek(0)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000222 self.assertEqual(tf.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000223
224 def test_stderr_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000225 # stderr redirection
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000226 p = subprocess.Popen([sys.executable, "-c",
227 'import sys; sys.stderr.write("strawberry")'],
228 stderr=subprocess.PIPE)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000229 self.assertStderrEqual(p.stderr.read(), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000230
231 def test_stderr_filedes(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000232 # stderr is set to open file descriptor
Tim Peterse718f612004-10-12 21:51:32 +0000233 tf = tempfile.TemporaryFile()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000234 d = tf.fileno()
235 p = subprocess.Popen([sys.executable, "-c",
236 'import sys; sys.stderr.write("strawberry")'],
237 stderr=d)
238 p.wait()
239 os.lseek(d, 0, 0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000240 self.assertStderrEqual(os.read(d, 1024), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000241
242 def test_stderr_fileobj(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000243 # stderr is set to open file object
Tim Peterse718f612004-10-12 21:51:32 +0000244 tf = tempfile.TemporaryFile()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000245 p = subprocess.Popen([sys.executable, "-c",
246 'import sys; sys.stderr.write("strawberry")'],
247 stderr=tf)
248 p.wait()
249 tf.seek(0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000250 self.assertStderrEqual(tf.read(), b"strawberry")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000251
252 def test_stdout_stderr_pipe(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000253 # capture stdout and stderr to the same pipe
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000254 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000255 'import sys;'
256 'sys.stdout.write("apple");'
257 'sys.stdout.flush();'
258 'sys.stderr.write("orange")'],
259 stdout=subprocess.PIPE,
260 stderr=subprocess.STDOUT)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000261 self.assertStderrEqual(p.stdout.read(), b"appleorange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000262
263 def test_stdout_stderr_file(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000264 # capture stdout and stderr to the same open file
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000265 tf = tempfile.TemporaryFile()
266 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000267 'import sys;'
268 'sys.stdout.write("apple");'
269 'sys.stdout.flush();'
270 'sys.stderr.write("orange")'],
271 stdout=tf,
272 stderr=tf)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000273 p.wait()
274 tf.seek(0)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000275 self.assertStderrEqual(tf.read(), b"appleorange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000276
Thomas Wouters89f507f2006-12-13 04:49:30 +0000277 def test_stdout_filedes_of_stdout(self):
278 # stdout is set to 1 (#1531862).
Antoine Pitrou9cadb1b2008-09-15 23:02:56 +0000279 cmd = r"import sys, os; sys.exit(os.write(sys.stdout.fileno(), b'.\n'))"
Thomas Wouters89f507f2006-12-13 04:49:30 +0000280 rc = subprocess.call([sys.executable, "-c", cmd], stdout=1)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000281 self.assertEqual(rc, 2)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000282
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000283 def test_cwd(self):
Christian Heimes5fb7c2a2007-12-24 08:52:31 +0000284 tmpdir = tempfile.gettempdir()
Peter Astrand195404f2004-11-12 15:51:48 +0000285 # We cannot use os.path.realpath to canonicalize the path,
286 # since it doesn't expand Tru64 {memb} strings. See bug 1063571.
287 cwd = os.getcwd()
288 os.chdir(tmpdir)
289 tmpdir = os.getcwd()
290 os.chdir(cwd)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000291 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000292 'import sys,os;'
293 'sys.stdout.write(os.getcwd())'],
294 stdout=subprocess.PIPE,
295 cwd=tmpdir)
Fredrik Lundh59c05592004-10-13 06:55:40 +0000296 normcase = os.path.normcase
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000297 self.assertEqual(normcase(p.stdout.read().decode("utf-8")),
298 normcase(tmpdir))
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000299
300 def test_env(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000301 newenv = os.environ.copy()
302 newenv["FRUIT"] = "orange"
303 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000304 'import sys,os;'
305 'sys.stdout.write(os.getenv("FRUIT"))'],
306 stdout=subprocess.PIPE,
307 env=newenv)
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000308 self.assertEqual(p.stdout.read(), b"orange")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000309
Peter Astrandcbac93c2005-03-03 20:24:28 +0000310 def test_communicate_stdin(self):
311 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000312 'import sys;'
313 'sys.exit(sys.stdin.read() == "pear")'],
Peter Astrandcbac93c2005-03-03 20:24:28 +0000314 stdin=subprocess.PIPE)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000315 p.communicate(b"pear")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000316 self.assertEqual(p.returncode, 1)
317
318 def test_communicate_stdout(self):
319 p = subprocess.Popen([sys.executable, "-c",
320 'import sys; sys.stdout.write("pineapple")'],
321 stdout=subprocess.PIPE)
322 (stdout, stderr) = p.communicate()
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000323 self.assertEqual(stdout, b"pineapple")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000324 self.assertEqual(stderr, None)
325
326 def test_communicate_stderr(self):
327 p = subprocess.Popen([sys.executable, "-c",
328 'import sys; sys.stderr.write("pineapple")'],
329 stderr=subprocess.PIPE)
330 (stdout, stderr) = p.communicate()
331 self.assertEqual(stdout, None)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000332 self.assertStderrEqual(stderr, b"pineapple")
Peter Astrandcbac93c2005-03-03 20:24:28 +0000333
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000334 def test_communicate(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000335 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000336 'import sys,os;'
337 'sys.stderr.write("pineapple");'
338 'sys.stdout.write(sys.stdin.read())'],
339 stdin=subprocess.PIPE,
340 stdout=subprocess.PIPE,
341 stderr=subprocess.PIPE)
Georg Brandl1abcbf82008-07-01 19:28:43 +0000342 (stdout, stderr) = p.communicate(b"banana")
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000343 self.assertEqual(stdout, b"banana")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000344 self.assertStderrEqual(stderr, b"pineapple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000345
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000346 # This test is Linux specific for simplicity to at least have
347 # some coverage. It is not a platform specific bug.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000348 @unittest.skipUnless(os.path.isdir('/proc/%d/fd' % os.getpid()),
349 "Linux specific")
350 # Test for the fd leak reported in http://bugs.python.org/issue2791.
351 def test_communicate_pipe_fd_leak(self):
352 fd_directory = '/proc/%d/fd' % os.getpid()
353 num_fds_before_popen = len(os.listdir(fd_directory))
354 p = subprocess.Popen([sys.executable, "-c", "print()"],
355 stdout=subprocess.PIPE)
356 p.communicate()
357 num_fds_after_communicate = len(os.listdir(fd_directory))
358 del p
359 num_fds_after_destruction = len(os.listdir(fd_directory))
360 self.assertEqual(num_fds_before_popen, num_fds_after_destruction)
361 self.assertEqual(num_fds_before_popen, num_fds_after_communicate)
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000362
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000363 def test_communicate_returns(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000364 # communicate() should return None if no redirection is active
Tim Peters3b01a702004-10-12 22:19:32 +0000365 p = subprocess.Popen([sys.executable, "-c",
366 "import sys; sys.exit(47)"])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000367 (stdout, stderr) = p.communicate()
368 self.assertEqual(stdout, None)
369 self.assertEqual(stderr, None)
370
371 def test_communicate_pipe_buf(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000372 # communicate() with writes larger than pipe_buf
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000373 # This test will probably deadlock rather than fail, if
Tim Peterse718f612004-10-12 21:51:32 +0000374 # communicate() does not work properly.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000375 x, y = os.pipe()
376 if mswindows:
377 pipe_buf = 512
378 else:
379 pipe_buf = os.fpathconf(x, "PC_PIPE_BUF")
380 os.close(x)
381 os.close(y)
382 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000383 'import sys,os;'
384 'sys.stdout.write(sys.stdin.read(47));'
385 'sys.stderr.write("xyz"*%d);'
386 'sys.stdout.write(sys.stdin.read())' % pipe_buf],
387 stdin=subprocess.PIPE,
388 stdout=subprocess.PIPE,
389 stderr=subprocess.PIPE)
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000390 string_to_write = b"abc"*pipe_buf
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000391 (stdout, stderr) = p.communicate(string_to_write)
392 self.assertEqual(stdout, string_to_write)
393
394 def test_writes_before_communicate(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000395 # stdin.write before communicate()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000396 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000397 'import sys,os;'
398 'sys.stdout.write(sys.stdin.read())'],
399 stdin=subprocess.PIPE,
400 stdout=subprocess.PIPE,
401 stderr=subprocess.PIPE)
Guido van Rossumbb839ef2007-08-27 23:58:21 +0000402 p.stdin.write(b"banana")
403 (stdout, stderr) = p.communicate(b"split")
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000404 self.assertEqual(stdout, b"bananasplit")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000405 self.assertStderrEqual(stderr, b"")
Tim Peterse718f612004-10-12 21:51:32 +0000406
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000407 def test_universal_newlines(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000408 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000409 'import sys,os;' + SETBINARY +
410 'sys.stdout.write("line1\\n");'
411 'sys.stdout.flush();'
412 'sys.stdout.write("line2\\n");'
413 'sys.stdout.flush();'
414 'sys.stdout.write("line3\\r\\n");'
415 'sys.stdout.flush();'
416 'sys.stdout.write("line4\\r");'
417 'sys.stdout.flush();'
418 'sys.stdout.write("\\nline5");'
419 'sys.stdout.flush();'
420 'sys.stdout.write("\\nline6");'],
421 stdout=subprocess.PIPE,
422 universal_newlines=1)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000423 stdout = p.stdout.read()
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000424 self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000425
426 def test_universal_newlines_communicate(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000427 # universal newlines through communicate()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000428 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000429 'import sys,os;' + SETBINARY +
430 'sys.stdout.write("line1\\n");'
431 'sys.stdout.flush();'
432 'sys.stdout.write("line2\\n");'
433 'sys.stdout.flush();'
434 'sys.stdout.write("line3\\r\\n");'
435 'sys.stdout.flush();'
436 'sys.stdout.write("line4\\r");'
437 'sys.stdout.flush();'
438 'sys.stdout.write("\\nline5");'
439 'sys.stdout.flush();'
440 'sys.stdout.write("\\nline6");'],
441 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
442 universal_newlines=1)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000443 (stdout, stderr) = p.communicate()
Guido van Rossumfa0054a2007-05-24 04:05:35 +0000444 self.assertEqual(stdout, "line1\nline2\nline3\nline4\nline5\nline6")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000445
446 def test_no_leaking(self):
Tim Peters7b759da2004-10-12 22:29:54 +0000447 # Make sure we leak no resources
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000448 if (not hasattr(support, "is_resource_enabled") or
449 support.is_resource_enabled("subprocess") and not mswindows):
Peter Astrandf7f1bb72005-03-03 20:47:37 +0000450 max_handles = 1026 # too much for most UNIX systems
451 else:
Tim Peterseba28be2005-03-28 01:08:02 +0000452 max_handles = 65
Fredrik Lundh9e29fc52004-10-13 07:54:54 +0000453 for i in range(max_handles):
Tim Peters3b01a702004-10-12 22:19:32 +0000454 p = subprocess.Popen([sys.executable, "-c",
Guido van Rossum98297ee2007-11-06 21:34:58 +0000455 "import sys;"
456 "sys.stdout.write(sys.stdin.read())"],
457 stdin=subprocess.PIPE,
458 stdout=subprocess.PIPE,
459 stderr=subprocess.PIPE)
Georg Brandl1abcbf82008-07-01 19:28:43 +0000460 data = p.communicate(b"lime")[0]
Guido van Rossumc9e363c2007-05-15 23:18:55 +0000461 self.assertEqual(data, b"lime")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000462
463
464 def test_list2cmdline(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000465 self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']),
466 '"a b c" d e')
467 self.assertEqual(subprocess.list2cmdline(['ab"c', '\\', 'd']),
468 'ab\\"c \\ d')
Christian Heimesfdab48e2008-01-20 09:06:41 +0000469 self.assertEqual(subprocess.list2cmdline(['ab"c', ' \\', 'd']),
470 'ab\\"c " \\\\" d')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000471 self.assertEqual(subprocess.list2cmdline(['a\\\\\\b', 'de fg', 'h']),
472 'a\\\\\\b "de fg" h')
473 self.assertEqual(subprocess.list2cmdline(['a\\"b', 'c', 'd']),
474 'a\\\\\\"b c d')
475 self.assertEqual(subprocess.list2cmdline(['a\\\\b c', 'd', 'e']),
476 '"a\\\\b c" d e')
477 self.assertEqual(subprocess.list2cmdline(['a\\\\b\\ c', 'd', 'e']),
478 '"a\\\\b\\ c" d e')
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000479 self.assertEqual(subprocess.list2cmdline(['ab', '']),
480 'ab ""')
Christian Heimesfdab48e2008-01-20 09:06:41 +0000481 self.assertEqual(subprocess.list2cmdline(['echo', 'foo|bar']),
482 'echo "foo|bar"')
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000483
484
485 def test_poll(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000486 p = subprocess.Popen([sys.executable,
Tim Peters29b6b4f2004-10-13 03:43:40 +0000487 "-c", "import time; time.sleep(1)"])
488 count = 0
489 while p.poll() is None:
490 time.sleep(0.1)
491 count += 1
492 # We expect that the poll loop probably went around about 10 times,
493 # but, based on system scheduling we can't control, it's possible
494 # poll() never returned None. It "should be" very rare that it
495 # didn't go around at least twice.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000496 self.assertGreaterEqual(count, 2)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000497 # Subsequent invocations should just return the returncode
498 self.assertEqual(p.poll(), 0)
499
500
501 def test_wait(self):
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000502 p = subprocess.Popen([sys.executable,
503 "-c", "import time; time.sleep(2)"])
504 self.assertEqual(p.wait(), 0)
505 # Subsequent invocations should just return the returncode
506 self.assertEqual(p.wait(), 0)
Tim Peterse718f612004-10-12 21:51:32 +0000507
Peter Astrand738131d2004-11-30 21:04:45 +0000508
509 def test_invalid_bufsize(self):
510 # an invalid type of the bufsize argument should raise
511 # TypeError.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000512 with self.assertRaises(TypeError):
Peter Astrand738131d2004-11-30 21:04:45 +0000513 subprocess.Popen([sys.executable, "-c", "pass"], "orange")
Peter Astrand738131d2004-11-30 21:04:45 +0000514
Guido van Rossum46a05a72007-06-07 21:56:45 +0000515 def test_bufsize_is_none(self):
516 # bufsize=None should be the same as bufsize=0.
517 p = subprocess.Popen([sys.executable, "-c", "pass"], None)
518 self.assertEqual(p.wait(), 0)
519 # Again with keyword arg
520 p = subprocess.Popen([sys.executable, "-c", "pass"], bufsize=None)
521 self.assertEqual(p.wait(), 0)
522
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000523 def test_leaking_fds_on_error(self):
524 # see bug #5179: Popen leaks file descriptors to PIPEs if
525 # the child fails to execute; this will eventually exhaust
526 # the maximum number of open fds. 1024 seems a very common
527 # value for that limit, but Windows has 2048, so we loop
528 # 1024 times (each call leaked two fds).
529 for i in range(1024):
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000530 # Windows raises IOError. Others raise OSError.
531 with self.assertRaises(EnvironmentError) as c:
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000532 subprocess.Popen(['nonexisting_i_hope'],
533 stdout=subprocess.PIPE,
534 stderr=subprocess.PIPE)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000535 if c.exception.errno != 2: # ignore "no such file"
536 raise c.exception
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000537
Tim Peterse718f612004-10-12 21:51:32 +0000538
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000539# context manager
540class _SuppressCoreFiles(object):
541 """Try to prevent core files from being created."""
542 old_limit = None
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000543
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000544 def __enter__(self):
545 """Try to save previous ulimit, then set it to (0, 0)."""
546 try:
547 import resource
548 self.old_limit = resource.getrlimit(resource.RLIMIT_CORE)
549 resource.setrlimit(resource.RLIMIT_CORE, (0, 0))
550 except (ImportError, ValueError, resource.error):
551 pass
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000552
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000553 def __exit__(self, *args):
554 """Return core file behavior to default."""
555 if self.old_limit is None:
556 return
557 try:
558 import resource
559 resource.setrlimit(resource.RLIMIT_CORE, self.old_limit)
560 except (ImportError, ValueError, resource.error):
561 pass
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000562
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000563
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000564@unittest.skipIf(mswindows, "POSIX specific tests")
Florent Xiclunac049d872010-03-27 22:47:23 +0000565class POSIXProcessTestCase(BaseTestCase):
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000566
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000567 def test_exceptions(self):
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000568 nonexistent_dir = "/_this/pa.th/does/not/exist"
569 try:
570 os.chdir(nonexistent_dir)
571 except OSError as e:
572 # This avoids hard coding the errno value or the OS perror()
573 # string and instead capture the exception that we want to see
574 # below for comparison.
575 desired_exception = e
576 else:
577 self.fail("chdir to nonexistant directory %s succeeded." %
578 nonexistent_dir)
579
580 # Error in the child re-raised in the parent.
581 try:
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000582 p = subprocess.Popen([sys.executable, "-c", ""],
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000583 cwd=nonexistent_dir)
584 except OSError as e:
585 # Test that the child process chdir failure actually makes
586 # it up to the parent process as the correct exception.
587 self.assertEqual(desired_exception.errno, e.errno)
588 self.assertEqual(desired_exception.strerror, e.strerror)
589 else:
590 self.fail("Expected OSError: %s" % desired_exception)
591
592 def test_restore_signals(self):
593 # Code coverage for both values of restore_signals to make sure it
594 # at least does not blow up.
595 # A test for behavior would be complex. Contributions welcome.
596 subprocess.call([sys.executable, "-c", ""], restore_signals=True)
597 subprocess.call([sys.executable, "-c", ""], restore_signals=False)
598
599 def test_start_new_session(self):
600 # For code coverage of calling setsid(). We don't care if we get an
601 # EPERM error from it depending on the test execution environment, that
602 # still indicates that it was called.
603 try:
604 output = subprocess.check_output(
605 [sys.executable, "-c",
606 "import os; print(os.getpgid(os.getpid()))"],
607 start_new_session=True)
608 except OSError as e:
609 if e.errno != errno.EPERM:
610 raise
611 else:
612 parent_pgid = os.getpgid(os.getpid())
613 child_pgid = int(output)
614 self.assertNotEqual(parent_pgid, child_pgid)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000615
616 def test_run_abort(self):
617 # returncode handles signal termination
618 with _SuppressCoreFiles():
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000619 p = subprocess.Popen([sys.executable, "-c",
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000620 'import os; os.abort()'])
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000621 p.wait()
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000622 self.assertEqual(-p.returncode, signal.SIGABRT)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000623
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000624 def test_preexec(self):
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000625 # DISCLAIMER: Setting environment variables is *not* a good use
626 # of a preexec_fn. This is merely a test.
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000627 p = subprocess.Popen([sys.executable, "-c",
628 'import sys,os;'
629 'sys.stdout.write(os.getenv("FRUIT"))'],
630 stdout=subprocess.PIPE,
631 preexec_fn=lambda: os.putenv("FRUIT", "apple"))
632 self.assertEqual(p.stdout.read(), b"apple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000633
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000634 def test_preexec_exception(self):
635 def raise_it():
636 raise ValueError("What if two swallows carried a coconut?")
637 try:
638 p = subprocess.Popen([sys.executable, "-c", ""],
639 preexec_fn=raise_it)
640 except RuntimeError as e:
641 self.assertTrue(
642 subprocess._posixsubprocess,
643 "Expected a ValueError from the preexec_fn")
644 except ValueError as e:
645 self.assertIn("coconut", e.args[0])
646 else:
647 self.fail("Exception raised by preexec_fn did not make it "
648 "to the parent process.")
649
Gregory P. Smith32ec9da2010-03-19 16:53:08 +0000650 @unittest.skipUnless(gc, "Requires a gc module.")
651 def test_preexec_gc_module_failure(self):
652 # This tests the code that disables garbage collection if the child
653 # process will execute any Python.
654 def raise_runtime_error():
655 raise RuntimeError("this shouldn't escape")
656 enabled = gc.isenabled()
657 orig_gc_disable = gc.disable
658 orig_gc_isenabled = gc.isenabled
659 try:
660 gc.disable()
661 self.assertFalse(gc.isenabled())
662 subprocess.call([sys.executable, '-c', ''],
663 preexec_fn=lambda: None)
664 self.assertFalse(gc.isenabled(),
665 "Popen enabled gc when it shouldn't.")
666
667 gc.enable()
668 self.assertTrue(gc.isenabled())
669 subprocess.call([sys.executable, '-c', ''],
670 preexec_fn=lambda: None)
671 self.assertTrue(gc.isenabled(), "Popen left gc disabled.")
672
673 gc.disable = raise_runtime_error
674 self.assertRaises(RuntimeError, subprocess.Popen,
675 [sys.executable, '-c', ''],
676 preexec_fn=lambda: None)
677
678 del gc.isenabled # force an AttributeError
679 self.assertRaises(AttributeError, subprocess.Popen,
680 [sys.executable, '-c', ''],
681 preexec_fn=lambda: None)
682 finally:
683 gc.disable = orig_gc_disable
684 gc.isenabled = orig_gc_isenabled
685 if not enabled:
686 gc.disable()
687
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000688 def test_args_string(self):
689 # args is a string
690 fd, fname = mkstemp()
691 # reopen in text mode
692 with open(fd, "w") as fobj:
693 fobj.write("#!/bin/sh\n")
694 fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" %
695 sys.executable)
696 os.chmod(fname, 0o700)
697 p = subprocess.Popen(fname)
698 p.wait()
699 os.remove(fname)
700 self.assertEqual(p.returncode, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000701
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000702 def test_invalid_args(self):
703 # invalid arguments should raise ValueError
704 self.assertRaises(ValueError, subprocess.call,
705 [sys.executable, "-c",
706 "import sys; sys.exit(47)"],
707 startupinfo=47)
708 self.assertRaises(ValueError, subprocess.call,
709 [sys.executable, "-c",
710 "import sys; sys.exit(47)"],
711 creationflags=47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000712
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000713 def test_shell_sequence(self):
714 # Run command through the shell (sequence)
715 newenv = os.environ.copy()
716 newenv["FRUIT"] = "apple"
717 p = subprocess.Popen(["echo $FRUIT"], shell=1,
718 stdout=subprocess.PIPE,
719 env=newenv)
720 self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple")
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000721
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000722 def test_shell_string(self):
723 # Run command through the shell (string)
724 newenv = os.environ.copy()
725 newenv["FRUIT"] = "apple"
726 p = subprocess.Popen("echo $FRUIT", shell=1,
727 stdout=subprocess.PIPE,
728 env=newenv)
729 self.assertEqual(p.stdout.read().strip(b" \t\r\n\f"), b"apple")
Christian Heimesa342c012008-04-20 21:01:16 +0000730
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000731 def test_call_string(self):
732 # call() function with string argument on UNIX
733 fd, fname = mkstemp()
734 # reopen in text mode
735 with open(fd, "w") as fobj:
736 fobj.write("#!/bin/sh\n")
737 fobj.write("exec '%s' -c 'import sys; sys.exit(47)'\n" %
738 sys.executable)
739 os.chmod(fname, 0o700)
740 rc = subprocess.call(fname)
741 os.remove(fname)
742 self.assertEqual(rc, 47)
Christian Heimesa342c012008-04-20 21:01:16 +0000743
Florent Xicluna4886d242010-03-08 13:27:26 +0000744 def _kill_process(self, method, *args):
Florent Xicluna1d8ee3a2010-03-05 20:26:54 +0000745 # Do not inherit file handles from the parent.
746 # It should fix failures on some platforms.
747 p = subprocess.Popen([sys.executable, "-c", "input()"], close_fds=True,
Florent Xiclunac049d872010-03-27 22:47:23 +0000748 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Christian Heimesa342c012008-04-20 21:01:16 +0000749
Florent Xicluna4886d242010-03-08 13:27:26 +0000750 # Let the process initialize (Issue #3137)
Florent Xicluna129226d2010-03-05 00:52:00 +0000751 time.sleep(0.1)
Florent Xicluna4886d242010-03-08 13:27:26 +0000752 # The process should not terminate prematurely
Florent Xiclunab8f22b12010-03-05 01:18:04 +0000753 self.assertIsNone(p.poll())
Florent Xicluna4886d242010-03-08 13:27:26 +0000754 # Retry if the process do not receive the signal.
Florent Xicluna129226d2010-03-05 00:52:00 +0000755 count, maxcount = 0, 3
Florent Xicluna129226d2010-03-05 00:52:00 +0000756 while count < maxcount and p.poll() is None:
Florent Xicluna4886d242010-03-08 13:27:26 +0000757 getattr(p, method)(*args)
Florent Xicluna129226d2010-03-05 00:52:00 +0000758 time.sleep(0.1)
759 count += 1
Florent Xicluna4886d242010-03-08 13:27:26 +0000760
761 self.assertIsNotNone(p.poll(), "the subprocess did not terminate")
Florent Xiclunab8f22b12010-03-05 01:18:04 +0000762 if count > 1:
Florent Xicluna4886d242010-03-08 13:27:26 +0000763 print("p.{}{} succeeded after "
764 "{} attempts".format(method, args, count), file=sys.stderr)
765 return p
766
767 def test_send_signal(self):
768 p = self._kill_process('send_signal', signal.SIGINT)
Florent Xiclunac049d872010-03-27 22:47:23 +0000769 _, stderr = p.communicate()
770 self.assertIn(b'KeyboardInterrupt', stderr)
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000771 self.assertNotEqual(p.wait(), 0)
Christian Heimesa342c012008-04-20 21:01:16 +0000772
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000773 def test_kill(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000774 p = self._kill_process('kill')
Florent Xiclunac049d872010-03-27 22:47:23 +0000775 _, stderr = p.communicate()
776 self.assertStderrEqual(stderr, b'')
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000777 self.assertEqual(p.wait(), -signal.SIGKILL)
Tim Peterse718f612004-10-12 21:51:32 +0000778
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000779 def test_terminate(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000780 p = self._kill_process('terminate')
Florent Xiclunac049d872010-03-27 22:47:23 +0000781 _, stderr = p.communicate()
782 self.assertStderrEqual(stderr, b'')
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000783 self.assertEqual(p.wait(), -signal.SIGTERM)
784
Victor Stinner13bb71c2010-04-23 21:41:56 +0000785 def test_surrogates_error_message(self):
Victor Stinner4d078042010-04-23 19:28:32 +0000786 def prepare():
787 raise ValueError("surrogate:\uDCff")
788
789 try:
790 subprocess.call(
791 [sys.executable, "-c", "pass"],
792 preexec_fn=prepare)
793 except ValueError as err:
794 # Pure Python implementations keeps the message
795 self.assertIsNone(subprocess._posixsubprocess)
796 self.assertEqual(str(err), "surrogate:\uDCff")
797 except RuntimeError as err:
798 # _posixsubprocess uses a default message
799 self.assertIsNotNone(subprocess._posixsubprocess)
800 self.assertEqual(str(err), "Exception occurred in preexec_fn.")
801 else:
802 self.fail("Expected ValueError or RuntimeError")
803
Victor Stinner13bb71c2010-04-23 21:41:56 +0000804 def test_undecodable_env(self):
805 for key, value in (('test', 'abc\uDCFF'), ('test\uDCFF', '42')):
806 value_repr = repr(value).encode("ascii")
807
808 # test str with surrogates
809 script = "import os; print(repr(os.getenv(%s)))" % repr(key)
810 stdout = subprocess.check_output(
811 [sys.executable, "-c", script],
812 env={key: value})
813 stdout = stdout.rstrip(b'\n\r')
814 self.assertEquals(stdout, value_repr)
815
816 # test bytes
817 key = key.encode("ascii", "surrogateescape")
818 value = value.encode("ascii", "surrogateescape")
819 script = "import os; print(repr(os.getenv(%s)))" % repr(key)
820 stdout = subprocess.check_output(
821 [sys.executable, "-c", script],
822 env={key: value})
823 stdout = stdout.rstrip(b'\n\r')
824 self.assertEquals(stdout, value_repr)
825
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000826
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000827@unittest.skipUnless(mswindows, "Windows specific tests")
Florent Xiclunac049d872010-03-27 22:47:23 +0000828class Win32ProcessTestCase(BaseTestCase):
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000829
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000830 def test_startupinfo(self):
831 # startupinfo argument
832 # We uses hardcoded constants, because we do not want to
833 # depend on win32all.
834 STARTF_USESHOWWINDOW = 1
835 SW_MAXIMIZE = 3
836 startupinfo = subprocess.STARTUPINFO()
837 startupinfo.dwFlags = STARTF_USESHOWWINDOW
838 startupinfo.wShowWindow = SW_MAXIMIZE
839 # Since Python is a console process, it won't be affected
840 # by wShowWindow, but the argument should be silently
841 # ignored
842 subprocess.call([sys.executable, "-c", "import sys; sys.exit(0)"],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000843 startupinfo=startupinfo)
844
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000845 def test_creationflags(self):
846 # creationflags argument
847 CREATE_NEW_CONSOLE = 16
848 sys.stderr.write(" a DOS box should flash briefly ...\n")
849 subprocess.call(sys.executable +
850 ' -c "import time; time.sleep(0.25)"',
851 creationflags=CREATE_NEW_CONSOLE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000852
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000853 def test_invalid_args(self):
854 # invalid arguments should raise ValueError
855 self.assertRaises(ValueError, subprocess.call,
856 [sys.executable, "-c",
857 "import sys; sys.exit(47)"],
858 preexec_fn=lambda: 1)
859 self.assertRaises(ValueError, subprocess.call,
860 [sys.executable, "-c",
861 "import sys; sys.exit(47)"],
862 stdout=subprocess.PIPE,
863 close_fds=True)
864
865 def test_close_fds(self):
866 # close file descriptors
867 rc = subprocess.call([sys.executable, "-c",
868 "import sys; sys.exit(47)"],
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000869 close_fds=True)
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000870 self.assertEqual(rc, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000871
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000872 def test_shell_sequence(self):
873 # Run command through the shell (sequence)
874 newenv = os.environ.copy()
875 newenv["FRUIT"] = "physalis"
876 p = subprocess.Popen(["set"], shell=1,
877 stdout=subprocess.PIPE,
878 env=newenv)
879 self.assertIn(b"physalis", p.stdout.read())
Guido van Rossume7ba4952007-06-06 23:52:48 +0000880
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000881 def test_shell_string(self):
882 # Run command through the shell (string)
883 newenv = os.environ.copy()
884 newenv["FRUIT"] = "physalis"
885 p = subprocess.Popen("set", shell=1,
886 stdout=subprocess.PIPE,
887 env=newenv)
888 self.assertIn(b"physalis", p.stdout.read())
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000889
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000890 def test_call_string(self):
891 # call() function with string argument on Windows
892 rc = subprocess.call(sys.executable +
893 ' -c "import sys; sys.exit(47)"')
894 self.assertEqual(rc, 47)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000895
Florent Xicluna4886d242010-03-08 13:27:26 +0000896 def _kill_process(self, method, *args):
897 # Some win32 buildbot raises EOFError if stdin is inherited
898 p = subprocess.Popen([sys.executable, "-c", "input()"],
Florent Xiclunac049d872010-03-27 22:47:23 +0000899 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000900
Florent Xicluna4886d242010-03-08 13:27:26 +0000901 # Let the process initialize (Issue #3137)
902 time.sleep(0.1)
903 # The process should not terminate prematurely
904 self.assertIsNone(p.poll())
905 # Retry if the process do not receive the signal.
906 count, maxcount = 0, 3
907 while count < maxcount and p.poll() is None:
908 getattr(p, method)(*args)
909 time.sleep(0.1)
910 count += 1
911
912 returncode = p.poll()
913 self.assertIsNotNone(returncode, "the subprocess did not terminate")
914 if count > 1:
915 print("p.{}{} succeeded after "
916 "{} attempts".format(method, args, count), file=sys.stderr)
Florent Xiclunac049d872010-03-27 22:47:23 +0000917 _, stderr = p.communicate()
918 self.assertStderrEqual(stderr, b'')
Florent Xicluna4886d242010-03-08 13:27:26 +0000919 self.assertEqual(p.wait(), returncode)
920 self.assertNotEqual(returncode, 0)
921
922 def test_send_signal(self):
923 self._kill_process('send_signal', signal.SIGTERM)
Christian Heimesa342c012008-04-20 21:01:16 +0000924
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000925 def test_kill(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000926 self._kill_process('kill')
Christian Heimesa342c012008-04-20 21:01:16 +0000927
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000928 def test_terminate(self):
Florent Xicluna4886d242010-03-08 13:27:26 +0000929 self._kill_process('terminate')
Christian Heimesa342c012008-04-20 21:01:16 +0000930
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000931
Brett Cannona23810f2008-05-26 19:04:21 +0000932# The module says:
933# "NB This only works (and is only relevant) for UNIX."
934#
935# Actually, getoutput should work on any platform with an os.popen, but
936# I'll take the comment as given, and skip this suite.
Florent Xiclunaf0cbd822010-03-04 21:50:56 +0000937@unittest.skipUnless(os.name == 'posix', "only relevant for UNIX")
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000938class CommandTests(unittest.TestCase):
939 def test_getoutput(self):
940 self.assertEqual(subprocess.getoutput('echo xyzzy'), 'xyzzy')
941 self.assertEqual(subprocess.getstatusoutput('echo xyzzy'),
942 (0, 'xyzzy'))
Brett Cannona23810f2008-05-26 19:04:21 +0000943
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000944 # we use mkdtemp in the next line to create an empty directory
945 # under our exclusive control; from that, we can invent a pathname
946 # that we _know_ won't exist. This is guaranteed to fail.
947 dir = None
948 try:
949 dir = tempfile.mkdtemp()
950 name = os.path.join(dir, "foo")
Brett Cannona23810f2008-05-26 19:04:21 +0000951
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000952 status, output = subprocess.getstatusoutput('cat ' + name)
953 self.assertNotEqual(status, 0)
954 finally:
955 if dir is not None:
956 os.rmdir(dir)
Brett Cannona23810f2008-05-26 19:04:21 +0000957
Gregory P. Smithd06fa472009-07-04 02:46:54 +0000958
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000959@unittest.skipUnless(getattr(subprocess, '_has_poll', False),
960 "poll system call not supported")
961class ProcessTestCaseNoPoll(ProcessTestCase):
962 def setUp(self):
963 subprocess._has_poll = False
964 ProcessTestCase.setUp(self)
Gregory P. Smithd06fa472009-07-04 02:46:54 +0000965
Florent Xiclunab1e94e82010-02-27 22:12:37 +0000966 def tearDown(self):
967 subprocess._has_poll = True
968 ProcessTestCase.tearDown(self)
Gregory P. Smithd06fa472009-07-04 02:46:54 +0000969
970
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000971@unittest.skipUnless(getattr(subprocess, '_posixsubprocess', False),
972 "_posixsubprocess extension module not found.")
973class ProcessTestCasePOSIXPurePython(ProcessTestCase, POSIXProcessTestCase):
974 def setUp(self):
975 subprocess._posixsubprocess = None
976 ProcessTestCase.setUp(self)
977 POSIXProcessTestCase.setUp(self)
978
979 def tearDown(self):
980 subprocess._posixsubprocess = sys.modules['_posixsubprocess']
981 POSIXProcessTestCase.tearDown(self)
982 ProcessTestCase.tearDown(self)
983
984
Gregory P. Smitha59c59f2010-03-01 00:17:40 +0000985class HelperFunctionTests(unittest.TestCase):
Gregory P. Smithaf6d3b82010-03-01 02:56:44 +0000986 @unittest.skipIf(mswindows, "errno and EINTR make no sense on windows")
Gregory P. Smitha59c59f2010-03-01 00:17:40 +0000987 def test_eintr_retry_call(self):
988 record_calls = []
989 def fake_os_func(*args):
990 record_calls.append(args)
991 if len(record_calls) == 2:
992 raise OSError(errno.EINTR, "fake interrupted system call")
993 return tuple(reversed(args))
994
995 self.assertEqual((999, 256),
996 subprocess._eintr_retry_call(fake_os_func, 256, 999))
997 self.assertEqual([(256, 999)], record_calls)
998 # This time there will be an EINTR so it will loop once.
999 self.assertEqual((666,),
1000 subprocess._eintr_retry_call(fake_os_func, 666))
1001 self.assertEqual([(256, 999), (666,), (666,)], record_calls)
1002
1003
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001004def test_main():
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001005 unit_tests = (ProcessTestCase,
1006 POSIXProcessTestCase,
1007 Win32ProcessTestCase,
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +00001008 ProcessTestCasePOSIXPurePython,
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001009 CommandTests,
Gregory P. Smitha59c59f2010-03-01 00:17:40 +00001010 ProcessTestCaseNoPoll,
1011 HelperFunctionTests)
Florent Xiclunab1e94e82010-02-27 22:12:37 +00001012
Gregory P. Smithd06fa472009-07-04 02:46:54 +00001013 support.run_unittest(*unit_tests)
Brett Cannona23810f2008-05-26 19:04:21 +00001014 support.reap_children()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001015
1016if __name__ == "__main__":
Brett Cannona23810f2008-05-26 19:04:21 +00001017 test_main()