test_utils.py 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. """
  2. Unittests for ooinstall utils.
  3. """
  4. import unittest
  5. import copy
  6. import mock
  7. import six
  8. from ooinstall.utils import debug_env, is_valid_hostname
  9. class TestUtils(unittest.TestCase):
  10. """
  11. Parent unittest TestCase.
  12. """
  13. def setUp(self):
  14. self.debug_all_params = {
  15. 'OPENSHIFT_FOO': 'bar',
  16. 'ANSIBLE_FOO': 'bar',
  17. 'OO_FOO': 'bar'
  18. }
  19. self.expected = [
  20. mock.call('ANSIBLE_FOO: bar'),
  21. mock.call('OPENSHIFT_FOO: bar'),
  22. mock.call('OO_FOO: bar'),
  23. ]
  24. ######################################################################
  25. # Validate ooinstall.utils.debug_env functionality
  26. def test_utils_debug_env_all_debugged(self):
  27. """Verify debug_env debugs specific env variables"""
  28. with mock.patch('ooinstall.utils.installer_log') as _il:
  29. debug_env(self.debug_all_params)
  30. # Debug was called for each item we expect
  31. self.assertEqual(
  32. len(self.debug_all_params),
  33. _il.debug.call_count)
  34. # Each item we expect was logged
  35. six.assertCountEqual(
  36. self,
  37. self.expected,
  38. _il.debug.call_args_list)
  39. def test_utils_debug_env_some_debugged(self):
  40. """Verify debug_env skips non-wanted env variables"""
  41. debug_some_params = copy.deepcopy(self.debug_all_params)
  42. # This will not be logged by debug_env
  43. debug_some_params['MG_FRBBR'] = "SKIPPED"
  44. with mock.patch('ooinstall.utils.installer_log') as _il:
  45. debug_env(debug_some_params)
  46. # The actual number of debug calls was less than the
  47. # number of items passed to debug_env
  48. self.assertLess(
  49. _il.debug.call_count,
  50. len(debug_some_params))
  51. six.assertCountEqual(
  52. self,
  53. self.expected,
  54. _il.debug.call_args_list)
  55. ######################################################################
  56. def test_utils_is_valid_hostname_invalid(self):
  57. """Verify is_valid_hostname can detect None or too-long hostnames"""
  58. # A hostname that's empty, None, or more than 255 chars is invalid
  59. empty_hostname = ''
  60. res = is_valid_hostname(empty_hostname)
  61. self.assertFalse(res)
  62. none_hostname = None
  63. res = is_valid_hostname(none_hostname)
  64. self.assertFalse(res)
  65. too_long_hostname = "a" * 256
  66. res = is_valid_hostname(too_long_hostname)
  67. self.assertFalse(res)
  68. def test_utils_is_valid_hostname_ends_with_dot(self):
  69. """Verify is_valid_hostname can parse hostnames with trailing periods"""
  70. hostname = "foo.example.com."
  71. res = is_valid_hostname(hostname)
  72. self.assertTrue(res)
  73. def test_utils_is_valid_hostname_normal_hostname(self):
  74. """Verify is_valid_hostname can parse regular hostnames"""
  75. hostname = "foo.example.com"
  76. res = is_valid_hostname(hostname)
  77. self.assertTrue(res)