2015-05-06 00:33:17 -03:00
|
|
|
"""Unittests for test.support.script_helper. Who tests the test helper?"""
|
2015-01-20 21:19:47 -04:00
|
|
|
|
2015-02-04 04:59:40 -04:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2018-07-04 07:10:15 -03:00
|
|
|
import os
|
2022-03-08 07:17:30 -04:00
|
|
|
from test.support import script_helper, requires_subprocess
|
2015-01-20 21:19:47 -04:00
|
|
|
import unittest
|
2015-02-04 04:59:40 -04:00
|
|
|
from unittest import mock
|
2015-01-20 21:19:47 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestScriptHelper(unittest.TestCase):
|
2015-04-13 14:41:47 -03:00
|
|
|
|
|
|
|
def test_assert_python_ok(self):
|
|
|
|
t = script_helper.assert_python_ok('-c', 'import sys; sys.exit(0)')
|
2015-01-20 21:19:47 -04:00
|
|
|
self.assertEqual(0, t[0], 'return code was not 0')
|
|
|
|
|
2015-04-13 14:41:47 -03:00
|
|
|
def test_assert_python_failure(self):
|
2015-01-20 21:19:47 -04:00
|
|
|
# I didn't import the sys module so this child will fail.
|
2015-04-13 14:41:47 -03:00
|
|
|
rc, out, err = script_helper.assert_python_failure('-c', 'sys.exit(0)')
|
2015-01-20 21:19:47 -04:00
|
|
|
self.assertNotEqual(0, rc, 'return code should not be 0')
|
|
|
|
|
2015-04-13 14:41:47 -03:00
|
|
|
def test_assert_python_ok_raises(self):
|
2015-01-20 21:19:47 -04:00
|
|
|
# I didn't import the sys module so this child will fail.
|
|
|
|
with self.assertRaises(AssertionError) as error_context:
|
2015-04-13 14:41:47 -03:00
|
|
|
script_helper.assert_python_ok('-c', 'sys.exit(0)')
|
2015-01-20 21:19:47 -04:00
|
|
|
error_msg = str(error_context.exception)
|
2015-03-20 10:02:33 -03:00
|
|
|
self.assertIn('command line:', error_msg)
|
2015-01-20 21:19:47 -04:00
|
|
|
self.assertIn('sys.exit(0)', error_msg, msg='unexpected command line')
|
|
|
|
|
2015-04-13 14:41:47 -03:00
|
|
|
def test_assert_python_failure_raises(self):
|
2015-01-20 21:19:47 -04:00
|
|
|
with self.assertRaises(AssertionError) as error_context:
|
2015-04-13 14:41:47 -03:00
|
|
|
script_helper.assert_python_failure('-c', 'import sys; sys.exit(0)')
|
2015-01-20 21:19:47 -04:00
|
|
|
error_msg = str(error_context.exception)
|
2015-03-20 10:02:33 -03:00
|
|
|
self.assertIn('Process return code is 0\n', error_msg)
|
2015-01-20 21:19:47 -04:00
|
|
|
self.assertIn('import sys; sys.exit(0)', error_msg,
|
|
|
|
msg='unexpected command line.')
|
|
|
|
|
2015-02-04 21:10:19 -04:00
|
|
|
@mock.patch('subprocess.Popen')
|
|
|
|
def test_assert_python_isolated_when_env_not_required(self, mock_popen):
|
|
|
|
with mock.patch.object(script_helper,
|
2015-02-04 21:16:30 -04:00
|
|
|
'interpreter_requires_environment',
|
2015-02-04 21:10:19 -04:00
|
|
|
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,
|
2015-02-04 21:16:30 -04:00
|
|
|
'interpreter_requires_environment',
|
2015-02-04 21:10:19 -04:00
|
|
|
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)
|
|
|
|
|
2015-01-20 21:19:47 -04:00
|
|
|
|
2022-03-08 07:17:30 -04:00
|
|
|
@requires_subprocess()
|
2015-02-04 04:59:40 -04:00
|
|
|
class TestScriptHelperEnvironment(unittest.TestCase):
|
2015-02-04 05:04:31 -04:00
|
|
|
"""Code coverage for interpreter_requires_environment()."""
|
2015-02-04 04:59:40 -04:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.assertTrue(
|
2018-07-04 07:10:15 -03:00
|
|
|
hasattr(script_helper, '__cached_interp_requires_environment'))
|
2015-02-04 04:59:40 -04:00
|
|
|
# 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):
|
2018-07-04 07:10:15 -03:00
|
|
|
with mock.patch.dict(os.environ):
|
|
|
|
os.environ.pop('PYTHONHOME', None)
|
|
|
|
mock_check_call.side_effect = subprocess.CalledProcessError('', '')
|
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertEqual(1, mock_check_call.call_count)
|
2015-02-04 04:59:40 -04:00
|
|
|
|
|
|
|
@mock.patch('subprocess.check_call')
|
|
|
|
def test_interpreter_requires_environment_false(self, mock_check_call):
|
2018-07-04 07:10:15 -03:00
|
|
|
with mock.patch.dict(os.environ):
|
|
|
|
os.environ.pop('PYTHONHOME', None)
|
|
|
|
# The mocked subprocess.check_call fakes a no-error process.
|
|
|
|
script_helper.interpreter_requires_environment()
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertEqual(1, mock_check_call.call_count)
|
2015-02-04 04:59:40 -04:00
|
|
|
|
|
|
|
@mock.patch('subprocess.check_call')
|
|
|
|
def test_interpreter_requires_environment_details(self, mock_check_call):
|
2018-07-04 07:10:15 -03:00
|
|
|
with mock.patch.dict(os.environ):
|
|
|
|
os.environ.pop('PYTHONHOME', None)
|
|
|
|
script_helper.interpreter_requires_environment()
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
|
|
|
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)
|
|
|
|
|
|
|
|
@mock.patch('subprocess.check_call')
|
|
|
|
def test_interpreter_requires_environment_with_pythonhome(self, mock_check_call):
|
|
|
|
with mock.patch.dict(os.environ):
|
|
|
|
os.environ['PYTHONHOME'] = 'MockedHome'
|
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertEqual(0, mock_check_call.call_count)
|
2015-02-04 04:59:40 -04:00
|
|
|
|
|
|
|
|
2015-01-20 21:19:47 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|