test_script_helper.py 5.02 KB
Newer Older
1
"""Unittests for test.support.script_helper.  Who tests the test helper?"""
2

3 4
import subprocess
import sys
5
from test.support import script_helper
6
import unittest
7
from unittest import mock
8 9 10


class TestScriptHelper(unittest.TestCase):
11 12 13

    def test_assert_python_ok(self):
        t = script_helper.assert_python_ok('-c', 'import sys; sys.exit(0)')
14 15
        self.assertEqual(0, t[0], 'return code was not 0')

16
    def test_assert_python_failure(self):
17
        # I didn't import the sys module so this child will fail.
18
        rc, out, err = script_helper.assert_python_failure('-c', 'sys.exit(0)')
19 20
        self.assertNotEqual(0, rc, 'return code should not be 0')

21
    def test_assert_python_ok_raises(self):
22 23
        # I didn't import the sys module so this child will fail.
        with self.assertRaises(AssertionError) as error_context:
24
            script_helper.assert_python_ok('-c', 'sys.exit(0)')
25
        error_msg = str(error_context.exception)
26
        self.assertIn('command line:', error_msg)
27 28
        self.assertIn('sys.exit(0)', error_msg, msg='unexpected command line')

29
    def test_assert_python_failure_raises(self):
30
        with self.assertRaises(AssertionError) as error_context:
31
            script_helper.assert_python_failure('-c', 'import sys; sys.exit(0)')
32
        error_msg = str(error_context.exception)
33
        self.assertIn('Process return code is 0\n', error_msg)
34 35 36
        self.assertIn('import sys; sys.exit(0)', error_msg,
                      msg='unexpected command line.')

37 38 39
    @mock.patch('subprocess.Popen')
    def test_assert_python_isolated_when_env_not_required(self, mock_popen):
        with mock.patch.object(script_helper,
40
                               'interpreter_requires_environment',
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
                               return_value=False) as mock_ire_func:
            mock_popen.side_effect = RuntimeError('bail out of unittest')
            try:
                script_helper._assert_python(True, '-c', 'None')
            except RuntimeError as err:
                self.assertEqual('bail out of unittest', err.args[0])
            self.assertEqual(1, mock_popen.call_count)
            self.assertEqual(1, mock_ire_func.call_count)
            popen_command = mock_popen.call_args[0][0]
            self.assertEqual(sys.executable, popen_command[0])
            self.assertIn('None', popen_command)
            self.assertIn('-I', popen_command)
            self.assertNotIn('-E', popen_command)  # -I overrides this

    @mock.patch('subprocess.Popen')
    def test_assert_python_not_isolated_when_env_is_required(self, mock_popen):
        """Ensure that -I is not passed when the environment is required."""
        with mock.patch.object(script_helper,
59
                               'interpreter_requires_environment',
60 61 62 63 64 65 66 67 68 69
                               return_value=True) as mock_ire_func:
            mock_popen.side_effect = RuntimeError('bail out of unittest')
            try:
                script_helper._assert_python(True, '-c', 'None')
            except RuntimeError as err:
                self.assertEqual('bail out of unittest', err.args[0])
            popen_command = mock_popen.call_args[0][0]
            self.assertNotIn('-I', popen_command)
            self.assertNotIn('-E', popen_command)

70

71
class TestScriptHelperEnvironment(unittest.TestCase):
72
    """Code coverage for interpreter_requires_environment()."""
73 74 75 76 77 78 79 80 81 82 83 84 85 86

    def setUp(self):
        self.assertTrue(
                hasattr(script_helper, '__cached_interp_requires_environment'))
        # Reset the private cached state.
        script_helper.__dict__['__cached_interp_requires_environment'] = None

    def tearDown(self):
        # Reset the private cached state.
        script_helper.__dict__['__cached_interp_requires_environment'] = None

    @mock.patch('subprocess.check_call')
    def test_interpreter_requires_environment_true(self, mock_check_call):
        mock_check_call.side_effect = subprocess.CalledProcessError('', '')
87 88
        self.assertTrue(script_helper.interpreter_requires_environment())
        self.assertTrue(script_helper.interpreter_requires_environment())
89 90 91 92 93
        self.assertEqual(1, mock_check_call.call_count)

    @mock.patch('subprocess.check_call')
    def test_interpreter_requires_environment_false(self, mock_check_call):
        # The mocked subprocess.check_call fakes a no-error process.
94 95
        script_helper.interpreter_requires_environment()
        self.assertFalse(script_helper.interpreter_requires_environment())
96 97 98 99
        self.assertEqual(1, mock_check_call.call_count)

    @mock.patch('subprocess.check_call')
    def test_interpreter_requires_environment_details(self, mock_check_call):
100 101 102
        script_helper.interpreter_requires_environment()
        self.assertFalse(script_helper.interpreter_requires_environment())
        self.assertFalse(script_helper.interpreter_requires_environment())
103 104 105 106 107 108
        self.assertEqual(1, mock_check_call.call_count)
        check_call_command = mock_check_call.call_args[0][0]
        self.assertEqual(sys.executable, check_call_command[0])
        self.assertIn('-E', check_call_command)


109 110
if __name__ == '__main__':
    unittest.main()