Bruce Dawson | 5b5681a | 2022-08-04 17:17:18 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Avi Drissman | dfd88085 | 2022-09-15 20:11:09 | [diff] [blame] | 2 | # Copyright 2019 The Chromium Authors |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | """Unit tests for test_env.py functionality. |
| 7 | |
| 8 | Each unit test is launches python process that uses test_env.py |
| 9 | to launch another python process. Then signal handling and |
| 10 | propagation is tested. This similates how Swarming uses test_env.py. |
| 11 | """ |
| 12 | |
| 13 | import os |
| 14 | import signal |
| 15 | import subprocess |
| 16 | import sys |
| 17 | import time |
| 18 | import unittest |
| 19 | |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 20 | HERE = os.path.dirname(os.path.abspath(__file__)) |
| 21 | TEST_SCRIPT = os.path.join(HERE, 'test_env_user_script.py') |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 22 | |
| 23 | |
| 24 | def launch_process_windows(args): |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 25 | # The `universal_newlines` option is equivalent to `text` in Python 3. |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 26 | return subprocess.Popen( |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 27 | [sys.executable, TEST_SCRIPT] + args, |
| 28 | stdout=subprocess.PIPE, |
| 29 | stderr=subprocess.STDOUT, |
| 30 | env=os.environ.copy(), |
| 31 | creationflags=subprocess.CREATE_NEW_PROCESS_GROUP, |
| 32 | universal_newlines=True) |
| 33 | |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 34 | |
| 35 | def launch_process_nonwindows(args): |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 36 | # The `universal_newlines` option is equivalent to `text` in Python 3. |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 37 | return subprocess.Popen( |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 38 | [sys.executable, TEST_SCRIPT] + args, |
| 39 | stdout=subprocess.PIPE, |
| 40 | stderr=subprocess.STDOUT, |
| 41 | env=os.environ.copy(), |
| 42 | universal_newlines=True) |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 43 | |
| 44 | |
Joshua Hood | 3fade1f | 2022-05-04 16:00:42 | [diff] [blame] | 45 | # pylint: disable=inconsistent-return-statements |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 46 | def read_subprocess_message(proc, starts_with): |
| 47 | """Finds the value after first line prefix condition.""" |
| 48 | for line in proc.stdout: |
| 49 | if line.startswith(starts_with): |
| 50 | return line.rstrip().replace(starts_with, '') |
Joshua Hood | 3fade1f | 2022-05-04 16:00:42 | [diff] [blame] | 51 | # pylint: enable=inconsistent-return-statements |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 52 | |
| 53 | |
Bruce Dawson | 5b5681a | 2022-08-04 17:17:18 | [diff] [blame] | 54 | def send_and_wait(proc, sig, sleep_time=0.6): |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 55 | """Sends a signal to subprocess.""" |
| 56 | time.sleep(sleep_time) # gives process time to launch. |
| 57 | os.kill(proc.pid, sig) |
| 58 | proc.wait() |
| 59 | |
| 60 | |
| 61 | class SignalingWindowsTest(unittest.TestCase): |
| 62 | |
| 63 | def setUp(self): |
Bruce Dawson | 5b5681a | 2022-08-04 17:17:18 | [diff] [blame] | 64 | super().setUp() |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 65 | if sys.platform != 'win32': |
| 66 | self.skipTest('test only runs on Windows') |
| 67 | |
| 68 | def test_send_ctrl_break_event(self): |
| 69 | proc = launch_process_windows([]) |
Joshua Hood | 3fade1f | 2022-05-04 16:00:42 | [diff] [blame] | 70 | send_and_wait(proc, signal.CTRL_BREAK_EVENT) # pylint: disable=no-member |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 71 | sig = read_subprocess_message(proc, 'Signal :') |
Bruce Dawson | 5b5681a | 2022-08-04 17:17:18 | [diff] [blame] | 72 | # This test is flaky because it relies on the child process starting quickly |
| 73 | # "enough", which it fails to do sometimes. This is tracked by |
| 74 | # https://crbug.com/1335123 and it is hoped that increasing the timeout will |
| 75 | # reduce the flakiness. |
Joshua Hood | 3fade1f | 2022-05-04 16:00:42 | [diff] [blame] | 76 | self.assertEqual(sig, str(int(signal.SIGBREAK))) # pylint: disable=no-member |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 77 | |
| 78 | |
| 79 | class SignalingNonWindowsTest(unittest.TestCase): |
| 80 | |
| 81 | def setUp(self): |
Bruce Dawson | 5b5681a | 2022-08-04 17:17:18 | [diff] [blame] | 82 | super().setUp() |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 83 | if sys.platform == 'win32': |
| 84 | self.skipTest('test does not run on Windows') |
| 85 | |
| 86 | def test_send_sigterm(self): |
| 87 | proc = launch_process_nonwindows([]) |
| 88 | send_and_wait(proc, signal.SIGTERM) |
| 89 | sig = read_subprocess_message(proc, 'Signal :') |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 90 | self.assertEqual(sig, str(int(signal.SIGTERM))) |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 91 | |
| 92 | def test_send_sigint(self): |
| 93 | proc = launch_process_nonwindows([]) |
| 94 | send_and_wait(proc, signal.SIGINT) |
| 95 | sig = read_subprocess_message(proc, 'Signal :') |
Chris McDonald | c3e0f26b | 2020-06-04 02:15:14 | [diff] [blame] | 96 | self.assertEqual(sig, str(int(signal.SIGINT))) |
Caleb Rouleau | 6844df15 | 2019-09-11 01:11:59 | [diff] [blame] | 97 | |
| 98 | |
| 99 | if __name__ == '__main__': |
| 100 | unittest.main() |