2015-01-20 21:19:47 -04:00
|
|
|
"""Unittests for test.script_helper. Who tests the test helper?"""
|
|
|
|
|
2015-02-04 04:59:40 -04:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2015-01-20 21:19:47 -04:00
|
|
|
from test import script_helper
|
|
|
|
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):
|
|
|
|
def test_assert_python_expect_success(self):
|
|
|
|
t = script_helper._assert_python(True, '-c', 'import sys; sys.exit(0)')
|
|
|
|
self.assertEqual(0, t[0], 'return code was not 0')
|
|
|
|
|
|
|
|
def test_assert_python_expect_failure(self):
|
|
|
|
# I didn't import the sys module so this child will fail.
|
|
|
|
rc, out, err = script_helper._assert_python(False, '-c', 'sys.exit(0)')
|
|
|
|
self.assertNotEqual(0, rc, 'return code should not be 0')
|
|
|
|
|
|
|
|
def test_assert_python_raises_expect_success(self):
|
|
|
|
# I didn't import the sys module so this child will fail.
|
|
|
|
with self.assertRaises(AssertionError) as error_context:
|
|
|
|
script_helper._assert_python(True, '-c', 'sys.exit(0)')
|
|
|
|
error_msg = str(error_context.exception)
|
|
|
|
self.assertIn('command line was:', error_msg)
|
|
|
|
self.assertIn('sys.exit(0)', error_msg, msg='unexpected command line')
|
|
|
|
|
|
|
|
def test_assert_python_raises_expect_failure(self):
|
|
|
|
with self.assertRaises(AssertionError) as error_context:
|
|
|
|
script_helper._assert_python(False, '-c', 'import sys; sys.exit(0)')
|
|
|
|
error_msg = str(error_context.exception)
|
|
|
|
self.assertIn('Process return code is 0,', error_msg)
|
|
|
|
self.assertIn('import sys; sys.exit(0)', error_msg,
|
|
|
|
msg='unexpected command line.')
|
|
|
|
|
|
|
|
|
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(
|
|
|
|
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('', '')
|
2015-02-04 05:04:31 -04:00
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertTrue(script_helper.interpreter_requires_environment())
|
2015-02-04 04:59:40 -04:00
|
|
|
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.
|
2015-02-04 05:04:31 -04:00
|
|
|
script_helper.interpreter_requires_environment()
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
2015-02-04 04:59:40 -04:00
|
|
|
self.assertEqual(1, mock_check_call.call_count)
|
|
|
|
|
|
|
|
@mock.patch('subprocess.check_call')
|
|
|
|
def test_interpreter_requires_environment_details(self, mock_check_call):
|
2015-02-04 05:04:31 -04:00
|
|
|
script_helper.interpreter_requires_environment()
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
|
|
|
self.assertFalse(script_helper.interpreter_requires_environment())
|
2015-02-04 04:59:40 -04:00
|
|
|
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)
|
|
|
|
|
|
|
|
|
2015-01-20 21:19:47 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|