test_oc_configmap.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. '''
  2. Unit tests for oc configmap
  3. '''
  4. import copy
  5. import os
  6. import six
  7. import sys
  8. import unittest
  9. import mock
  10. # Removing invalid variable names for tests so that I can
  11. # keep them brief
  12. # pylint: disable=invalid-name,no-name-in-module
  13. # Disable import-error b/c our libraries aren't loaded in jenkins
  14. # pylint: disable=import-error,wrong-import-position
  15. # place class in our python path
  16. module_path = os.path.join('/'.join(os.path.realpath(__file__).split('/')[:-4]), 'library') # noqa: E501
  17. sys.path.insert(0, module_path)
  18. from oc_configmap import OCConfigMap, locate_oc_binary # noqa: E402
  19. class OCConfigMapTest(unittest.TestCase):
  20. '''
  21. Test class for OCConfigMap
  22. '''
  23. params = {'kubeconfig': '/etc/origin/master/admin.kubeconfig',
  24. 'state': 'present',
  25. 'debug': False,
  26. 'name': 'configmap',
  27. 'from_file': {},
  28. 'from_literal': {},
  29. 'namespace': 'test'}
  30. @mock.patch('oc_configmap.Utils._write')
  31. @mock.patch('oc_configmap.Utils.create_tmpfile_copy')
  32. @mock.patch('oc_configmap.OCConfigMap._run')
  33. def test_create_configmap(self, mock_run, mock_tmpfile_copy, mock_write):
  34. ''' Testing a configmap create '''
  35. # TODO
  36. return
  37. params = copy.deepcopy(OCConfigMapTest.params)
  38. params['from_file'] = {'test': '/root/file'}
  39. params['from_literal'] = {'foo': 'bar'}
  40. configmap = '''{
  41. "apiVersion": "v1",
  42. "data": {
  43. "foo": "bar",
  44. "test": "this is a file\\n"
  45. },
  46. "kind": "ConfigMap",
  47. "metadata": {
  48. "creationTimestamp": "2017-03-20T20:24:35Z",
  49. "name": "configmap",
  50. "namespace": "test"
  51. }
  52. }'''
  53. mock_run.side_effect = [
  54. (1, '', 'Error from server (NotFound): configmaps "configmap" not found'),
  55. (0, '', ''),
  56. (0, configmap, ''),
  57. ]
  58. mock_tmpfile_copy.side_effect = [
  59. '/tmp/mocked_kubeconfig',
  60. ]
  61. results = OCConfigMap.run_ansible(params, False)
  62. self.assertTrue(results['changed'])
  63. self.assertEqual(results['results']['results'][0]['metadata']['name'], 'configmap')
  64. @mock.patch('oc_configmap.Utils._write')
  65. @mock.patch('oc_configmap.Utils.create_tmpfile_copy')
  66. @mock.patch('oc_configmap.OCConfigMap._run')
  67. def test_update_configmap(self, mock_run, mock_tmpfile_copy, mock_write):
  68. ''' Testing a configmap create '''
  69. params = copy.deepcopy(OCConfigMapTest.params)
  70. params['from_file'] = {'test': '/root/file'}
  71. params['from_literal'] = {'foo': 'bar', 'deployment_type': 'openshift-enterprise'}
  72. configmap = '''{
  73. "apiVersion": "v1",
  74. "data": {
  75. "foo": "bar",
  76. "test": "this is a file\\n"
  77. },
  78. "kind": "ConfigMap",
  79. "metadata": {
  80. "creationTimestamp": "2017-03-20T20:24:35Z",
  81. "name": "configmap",
  82. "namespace": "test"
  83. }
  84. }'''
  85. mod_configmap = '''{
  86. "apiVersion": "v1",
  87. "data": {
  88. "foo": "bar",
  89. "deployment_type": "openshift-enterprise",
  90. "test": "this is a file\\n"
  91. },
  92. "kind": "ConfigMap",
  93. "metadata": {
  94. "creationTimestamp": "2017-03-20T20:24:35Z",
  95. "name": "configmap",
  96. "namespace": "test"
  97. }
  98. }'''
  99. mock_run.side_effect = [
  100. (0, configmap, ''),
  101. (0, mod_configmap, ''),
  102. (0, configmap, ''),
  103. (0, '', ''),
  104. (0, mod_configmap, ''),
  105. ]
  106. mock_tmpfile_copy.side_effect = [
  107. '/tmp/mocked_kubeconfig',
  108. ]
  109. results = OCConfigMap.run_ansible(params, False)
  110. self.assertTrue(results['changed'])
  111. self.assertEqual(results['results']['results'][0]['metadata']['name'], 'configmap')
  112. self.assertEqual(results['results']['results'][0]['data']['deployment_type'], 'openshift-enterprise')
  113. @unittest.skipIf(six.PY3, 'py2 test only')
  114. @mock.patch('os.path.exists')
  115. @mock.patch('os.environ.get')
  116. def test_binary_lookup_fallback(self, mock_env_get, mock_path_exists):
  117. ''' Testing binary lookup fallback '''
  118. mock_env_get.side_effect = lambda _v, _d: ''
  119. mock_path_exists.side_effect = lambda _: False
  120. self.assertEqual(locate_oc_binary(), 'oc')
  121. @unittest.skipIf(six.PY3, 'py2 test only')
  122. @mock.patch('os.path.exists')
  123. @mock.patch('os.environ.get')
  124. def test_binary_lookup_in_path(self, mock_env_get, mock_path_exists):
  125. ''' Testing binary lookup in path '''
  126. oc_bin = '/usr/bin/oc'
  127. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  128. mock_path_exists.side_effect = lambda f: f == oc_bin
  129. self.assertEqual(locate_oc_binary(), oc_bin)
  130. @unittest.skipIf(six.PY3, 'py2 test only')
  131. @mock.patch('os.path.exists')
  132. @mock.patch('os.environ.get')
  133. def test_binary_lookup_in_usr_local(self, mock_env_get, mock_path_exists):
  134. ''' Testing binary lookup in /usr/local/bin '''
  135. oc_bin = '/usr/local/bin/oc'
  136. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  137. mock_path_exists.side_effect = lambda f: f == oc_bin
  138. self.assertEqual(locate_oc_binary(), oc_bin)
  139. @unittest.skipIf(six.PY3, 'py2 test only')
  140. @mock.patch('os.path.exists')
  141. @mock.patch('os.environ.get')
  142. def test_binary_lookup_in_home(self, mock_env_get, mock_path_exists):
  143. ''' Testing binary lookup in ~/bin '''
  144. oc_bin = os.path.expanduser('~/bin/oc')
  145. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  146. mock_path_exists.side_effect = lambda f: f == oc_bin
  147. self.assertEqual(locate_oc_binary(), oc_bin)
  148. @unittest.skipIf(six.PY2, 'py3 test only')
  149. @mock.patch('shutil.which')
  150. @mock.patch('os.environ.get')
  151. def test_binary_lookup_fallback_py3(self, mock_env_get, mock_shutil_which):
  152. ''' Testing binary lookup fallback '''
  153. mock_env_get.side_effect = lambda _v, _d: ''
  154. mock_shutil_which.side_effect = lambda _f, path=None: None
  155. self.assertEqual(locate_oc_binary(), 'oc')
  156. @unittest.skipIf(six.PY2, 'py3 test only')
  157. @mock.patch('shutil.which')
  158. @mock.patch('os.environ.get')
  159. def test_binary_lookup_in_path_py3(self, mock_env_get, mock_shutil_which):
  160. ''' Testing binary lookup in path '''
  161. oc_bin = '/usr/bin/oc'
  162. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  163. mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
  164. self.assertEqual(locate_oc_binary(), oc_bin)
  165. @unittest.skipIf(six.PY2, 'py3 test only')
  166. @mock.patch('shutil.which')
  167. @mock.patch('os.environ.get')
  168. def test_binary_lookup_in_usr_local_py3(self, mock_env_get, mock_shutil_which):
  169. ''' Testing binary lookup in /usr/local/bin '''
  170. oc_bin = '/usr/local/bin/oc'
  171. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  172. mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
  173. self.assertEqual(locate_oc_binary(), oc_bin)
  174. @unittest.skipIf(six.PY2, 'py3 test only')
  175. @mock.patch('shutil.which')
  176. @mock.patch('os.environ.get')
  177. def test_binary_lookup_in_home_py3(self, mock_env_get, mock_shutil_which):
  178. ''' Testing binary lookup in ~/bin '''
  179. oc_bin = os.path.expanduser('~/bin/oc')
  180. mock_env_get.side_effect = lambda _v, _d: '/bin:/usr/bin'
  181. mock_shutil_which.side_effect = lambda _f, path=None: oc_bin
  182. self.assertEqual(locate_oc_binary(), oc_bin)