2014-02-01 17:49:59 -04:00
|
|
|
import signal
|
|
|
|
import sys
|
|
|
|
import unittest
|
2014-11-25 12:20:33 -04:00
|
|
|
from unittest import mock
|
2014-12-18 07:29:53 -04:00
|
|
|
|
|
|
|
import asyncio
|
|
|
|
from asyncio import subprocess
|
|
|
|
from asyncio import test_utils
|
|
|
|
try:
|
2014-12-26 16:16:42 -04:00
|
|
|
from test import support
|
2014-12-18 07:29:53 -04:00
|
|
|
except ImportError:
|
|
|
|
from asyncio import test_support as support
|
2014-12-26 16:16:42 -04:00
|
|
|
if sys.platform != 'win32':
|
|
|
|
from asyncio import unix_events
|
2014-02-01 17:49:59 -04:00
|
|
|
|
|
|
|
# Program blocking
|
|
|
|
PROGRAM_BLOCKED = [sys.executable, '-c', 'import time; time.sleep(3600)']
|
|
|
|
|
|
|
|
# Program copying input to output
|
|
|
|
PROGRAM_CAT = [
|
|
|
|
sys.executable, '-c',
|
|
|
|
';'.join(('import sys',
|
|
|
|
'data = sys.stdin.buffer.read()',
|
|
|
|
'sys.stdout.buffer.write(data)'))]
|
|
|
|
|
|
|
|
class SubprocessMixin:
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
def test_stdin_stdout(self):
|
|
|
|
args = PROGRAM_CAT
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def run(data):
|
|
|
|
proc = yield from asyncio.create_subprocess_exec(
|
|
|
|
*args,
|
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
loop=self.loop)
|
|
|
|
|
|
|
|
# feed data
|
|
|
|
proc.stdin.write(data)
|
|
|
|
yield from proc.stdin.drain()
|
|
|
|
proc.stdin.close()
|
|
|
|
|
|
|
|
# get output and exitcode
|
|
|
|
data = yield from proc.stdout.read()
|
|
|
|
exitcode = yield from proc.wait()
|
|
|
|
return (exitcode, data)
|
|
|
|
|
|
|
|
task = run(b'some data')
|
2014-07-25 09:05:07 -03:00
|
|
|
task = asyncio.wait_for(task, 60.0, loop=self.loop)
|
2014-02-01 17:49:59 -04:00
|
|
|
exitcode, stdout = self.loop.run_until_complete(task)
|
|
|
|
self.assertEqual(exitcode, 0)
|
|
|
|
self.assertEqual(stdout, b'some data')
|
|
|
|
|
|
|
|
def test_communicate(self):
|
|
|
|
args = PROGRAM_CAT
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def run(data):
|
|
|
|
proc = yield from asyncio.create_subprocess_exec(
|
|
|
|
*args,
|
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
loop=self.loop)
|
|
|
|
stdout, stderr = yield from proc.communicate(data)
|
|
|
|
return proc.returncode, stdout
|
|
|
|
|
|
|
|
task = run(b'some data')
|
2014-07-25 09:05:07 -03:00
|
|
|
task = asyncio.wait_for(task, 60.0, loop=self.loop)
|
2014-02-01 17:49:59 -04:00
|
|
|
exitcode, stdout = self.loop.run_until_complete(task)
|
|
|
|
self.assertEqual(exitcode, 0)
|
|
|
|
self.assertEqual(stdout, b'some data')
|
|
|
|
|
|
|
|
def test_shell(self):
|
|
|
|
create = asyncio.create_subprocess_shell('exit 7',
|
|
|
|
loop=self.loop)
|
|
|
|
proc = self.loop.run_until_complete(create)
|
|
|
|
exitcode = self.loop.run_until_complete(proc.wait())
|
|
|
|
self.assertEqual(exitcode, 7)
|
|
|
|
|
|
|
|
def test_start_new_session(self):
|
|
|
|
# start the new process in a new session
|
|
|
|
create = asyncio.create_subprocess_shell('exit 8',
|
|
|
|
start_new_session=True,
|
|
|
|
loop=self.loop)
|
|
|
|
proc = self.loop.run_until_complete(create)
|
|
|
|
exitcode = self.loop.run_until_complete(proc.wait())
|
|
|
|
self.assertEqual(exitcode, 8)
|
|
|
|
|
|
|
|
def test_kill(self):
|
|
|
|
args = PROGRAM_BLOCKED
|
|
|
|
create = asyncio.create_subprocess_exec(*args, loop=self.loop)
|
|
|
|
proc = self.loop.run_until_complete(create)
|
|
|
|
proc.kill()
|
|
|
|
returncode = self.loop.run_until_complete(proc.wait())
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
self.assertIsInstance(returncode, int)
|
|
|
|
# expect 1 but sometimes get 0
|
|
|
|
else:
|
|
|
|
self.assertEqual(-signal.SIGKILL, returncode)
|
|
|
|
|
|
|
|
def test_terminate(self):
|
|
|
|
args = PROGRAM_BLOCKED
|
|
|
|
create = asyncio.create_subprocess_exec(*args, loop=self.loop)
|
|
|
|
proc = self.loop.run_until_complete(create)
|
|
|
|
proc.terminate()
|
|
|
|
returncode = self.loop.run_until_complete(proc.wait())
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
self.assertIsInstance(returncode, int)
|
|
|
|
# expect 1 but sometimes get 0
|
|
|
|
else:
|
|
|
|
self.assertEqual(-signal.SIGTERM, returncode)
|
|
|
|
|
|
|
|
@unittest.skipIf(sys.platform == 'win32', "Don't have SIGHUP")
|
|
|
|
def test_send_signal(self):
|
2014-07-17 18:49:11 -03:00
|
|
|
code = 'import time; print("sleeping", flush=True); time.sleep(3600)'
|
|
|
|
args = [sys.executable, '-c', code]
|
|
|
|
create = asyncio.create_subprocess_exec(*args, loop=self.loop, stdout=subprocess.PIPE)
|
2014-02-01 17:49:59 -04:00
|
|
|
proc = self.loop.run_until_complete(create)
|
2014-07-17 18:49:11 -03:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def send_signal(proc):
|
|
|
|
# basic synchronization to wait until the program is sleeping
|
|
|
|
line = yield from proc.stdout.readline()
|
|
|
|
self.assertEqual(line, b'sleeping\n')
|
|
|
|
|
|
|
|
proc.send_signal(signal.SIGHUP)
|
|
|
|
returncode = (yield from proc.wait())
|
|
|
|
return returncode
|
|
|
|
|
|
|
|
returncode = self.loop.run_until_complete(send_signal(proc))
|
2014-02-01 17:49:59 -04:00
|
|
|
self.assertEqual(-signal.SIGHUP, returncode)
|
|
|
|
|
2014-07-17 07:25:27 -03:00
|
|
|
def prepare_broken_pipe_test(self):
|
|
|
|
# buffer large enough to feed the whole pipe buffer
|
2014-02-01 17:49:59 -04:00
|
|
|
large_data = b'x' * support.PIPE_MAX_SIZE
|
|
|
|
|
2014-07-17 07:25:27 -03:00
|
|
|
# the program ends before the stdin can be feeded
|
2014-02-01 17:49:59 -04:00
|
|
|
create = asyncio.create_subprocess_exec(
|
2014-07-17 07:25:27 -03:00
|
|
|
sys.executable, '-c', 'pass',
|
2014-02-01 17:49:59 -04:00
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
loop=self.loop)
|
|
|
|
proc = self.loop.run_until_complete(create)
|
2014-07-17 07:25:27 -03:00
|
|
|
return (proc, large_data)
|
|
|
|
|
|
|
|
def test_stdin_broken_pipe(self):
|
|
|
|
proc, large_data = self.prepare_broken_pipe_test()
|
|
|
|
|
2014-07-21 11:23:33 -03:00
|
|
|
@asyncio.coroutine
|
|
|
|
def write_stdin(proc, data):
|
|
|
|
proc.stdin.write(data)
|
|
|
|
yield from proc.stdin.drain()
|
|
|
|
|
|
|
|
coro = write_stdin(proc, large_data)
|
2014-07-17 09:01:14 -03:00
|
|
|
# drain() must raise BrokenPipeError or ConnectionResetError
|
2014-08-25 18:20:52 -03:00
|
|
|
with test_utils.disable_logger():
|
|
|
|
self.assertRaises((BrokenPipeError, ConnectionResetError),
|
|
|
|
self.loop.run_until_complete, coro)
|
2014-07-17 07:25:27 -03:00
|
|
|
self.loop.run_until_complete(proc.wait())
|
|
|
|
|
|
|
|
def test_communicate_ignore_broken_pipe(self):
|
|
|
|
proc, large_data = self.prepare_broken_pipe_test()
|
|
|
|
|
|
|
|
# communicate() must ignore BrokenPipeError when feeding stdin
|
2014-08-25 18:20:52 -03:00
|
|
|
with test_utils.disable_logger():
|
|
|
|
self.loop.run_until_complete(proc.communicate(large_data))
|
2014-02-01 17:49:59 -04:00
|
|
|
self.loop.run_until_complete(proc.wait())
|
|
|
|
|
2014-11-25 12:20:33 -04:00
|
|
|
def test_pause_reading(self):
|
2014-11-28 13:02:03 -04:00
|
|
|
limit = 10
|
|
|
|
size = (limit * 2 + 1)
|
|
|
|
|
2014-11-25 12:20:33 -04:00
|
|
|
@asyncio.coroutine
|
|
|
|
def test_pause_reading():
|
|
|
|
code = '\n'.join((
|
|
|
|
'import sys',
|
2014-11-28 13:02:03 -04:00
|
|
|
'sys.stdout.write("x" * %s)' % size,
|
2014-11-25 12:20:33 -04:00
|
|
|
'sys.stdout.flush()',
|
|
|
|
))
|
|
|
|
proc = yield from asyncio.create_subprocess_exec(
|
|
|
|
sys.executable, '-c', code,
|
|
|
|
stdin=asyncio.subprocess.PIPE,
|
|
|
|
stdout=asyncio.subprocess.PIPE,
|
|
|
|
limit=limit,
|
|
|
|
loop=self.loop)
|
|
|
|
stdout_transport = proc._transport.get_pipe_transport(1)
|
|
|
|
stdout_transport.pause_reading = mock.Mock()
|
2014-12-04 18:06:13 -04:00
|
|
|
stdout_transport.resume_reading = mock.Mock()
|
2014-11-25 12:20:33 -04:00
|
|
|
|
2014-11-28 13:02:03 -04:00
|
|
|
stdout, stderr = yield from proc.communicate()
|
2014-11-25 12:20:33 -04:00
|
|
|
|
|
|
|
# The child process produced more than limit bytes of output,
|
|
|
|
# the stream reader transport should pause the protocol to not
|
|
|
|
# allocate too much memory.
|
2014-11-28 13:02:03 -04:00
|
|
|
return (stdout, stdout_transport)
|
2014-11-25 12:20:33 -04:00
|
|
|
|
|
|
|
# Issue #22685: Ensure that the stream reader pauses the protocol
|
|
|
|
# when the child process produces too much data
|
2014-11-28 13:02:03 -04:00
|
|
|
stdout, transport = self.loop.run_until_complete(test_pause_reading())
|
|
|
|
|
|
|
|
self.assertEqual(stdout, b'x' * size)
|
|
|
|
self.assertTrue(transport.pause_reading.called)
|
2014-12-04 18:06:13 -04:00
|
|
|
self.assertTrue(transport.resume_reading.called)
|
2014-11-25 12:20:33 -04:00
|
|
|
|
2014-12-11 18:30:17 -04:00
|
|
|
def test_stdin_not_inheritable(self):
|
|
|
|
# Tulip issue #209: stdin must not be inheritable, otherwise
|
|
|
|
# the Process.communicate() hangs
|
|
|
|
@asyncio.coroutine
|
|
|
|
def len_message(message):
|
|
|
|
code = 'import sys; data = sys.stdin.read(); print(len(data))'
|
|
|
|
proc = yield from asyncio.create_subprocess_exec(
|
|
|
|
sys.executable, '-c', code,
|
|
|
|
stdin=asyncio.subprocess.PIPE,
|
|
|
|
stdout=asyncio.subprocess.PIPE,
|
|
|
|
stderr=asyncio.subprocess.PIPE,
|
|
|
|
close_fds=False,
|
|
|
|
loop=self.loop)
|
|
|
|
stdout, stderr = yield from proc.communicate(message)
|
|
|
|
exitcode = yield from proc.wait()
|
|
|
|
return (stdout, exitcode)
|
|
|
|
|
|
|
|
output, exitcode = self.loop.run_until_complete(len_message(b'abc'))
|
|
|
|
self.assertEqual(output.rstrip(), b'3')
|
|
|
|
self.assertEqual(exitcode, 0)
|
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
|
|
|
|
if sys.platform != 'win32':
|
|
|
|
# Unix
|
|
|
|
class SubprocessWatcherMixin(SubprocessMixin):
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
Watcher = None
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
policy = asyncio.get_event_loop_policy()
|
|
|
|
self.loop = policy.new_event_loop()
|
2014-12-26 16:07:52 -04:00
|
|
|
self.set_event_loop(self.loop)
|
2014-02-01 17:49:59 -04:00
|
|
|
|
|
|
|
watcher = self.Watcher()
|
|
|
|
watcher.attach_loop(self.loop)
|
|
|
|
policy.set_child_watcher(watcher)
|
2014-12-26 16:07:52 -04:00
|
|
|
self.addCleanup(policy.set_child_watcher, None)
|
2014-02-01 17:49:59 -04:00
|
|
|
|
2014-02-18 23:56:15 -04:00
|
|
|
class SubprocessSafeWatcherTests(SubprocessWatcherMixin,
|
2014-06-17 20:36:32 -03:00
|
|
|
test_utils.TestCase):
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
Watcher = unix_events.SafeChildWatcher
|
|
|
|
|
2014-02-18 23:56:15 -04:00
|
|
|
class SubprocessFastWatcherTests(SubprocessWatcherMixin,
|
2014-06-17 20:36:32 -03:00
|
|
|
test_utils.TestCase):
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
Watcher = unix_events.FastChildWatcher
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
else:
|
|
|
|
# Windows
|
2014-06-17 20:36:32 -03:00
|
|
|
class SubprocessProactorTests(SubprocessMixin, test_utils.TestCase):
|
2014-02-18 23:56:15 -04:00
|
|
|
|
2014-02-01 17:49:59 -04:00
|
|
|
def setUp(self):
|
|
|
|
self.loop = asyncio.ProactorEventLoop()
|
2014-12-26 16:07:52 -04:00
|
|
|
self.set_event_loop(self.loop)
|
2014-02-01 17:49:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|