test_master_check_paths_in_config.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. '''
  2. Unit tests for the master_check_paths_in_config action plugin
  3. '''
  4. import os
  5. import sys
  6. from ansible import errors
  7. import pytest
  8. MODULE_PATH = os.path.realpath(os.path.join(__file__, os.pardir, os.pardir, 'action_plugins'))
  9. sys.path.insert(1, MODULE_PATH)
  10. # pylint: disable=import-error,wrong-import-position,missing-docstring
  11. # pylint: disable=invalid-name,redefined-outer-name
  12. import master_check_paths_in_config # noqa: E402
  13. @pytest.fixture()
  14. def loaded_config():
  15. """return testing master config"""
  16. data = {
  17. 'apiVersion': 'v1',
  18. 'oauthConfig':
  19. {'identityProviders':
  20. ['1', '2', '/this/will/fail']},
  21. 'fake_top_item':
  22. {'fake_item':
  23. {'fake_item2':
  24. ["some string",
  25. {"fake_item3":
  26. ["some string 2",
  27. {"fake_item4":
  28. {"some_key": "deeply_nested_string"}}]}]}}
  29. }
  30. return data
  31. def test_pop_migrated(loaded_config):
  32. """Params:
  33. * `loaded_config` comes from the `loaded_config` fixture in this file
  34. """
  35. # Ensure we actually loaded a valid config
  36. assert loaded_config['apiVersion'] == 'v1'
  37. # Test that migrated key is removed
  38. master_check_paths_in_config.pop_migrated_fields(loaded_config)
  39. assert loaded_config['oauthConfig'] is not None
  40. assert loaded_config['oauthConfig'].get('identityProviders') is None
  41. def test_walk_mapping(loaded_config):
  42. """Params:
  43. * `loaded_config` comes from the `loaded_config` fixture in this file
  44. """
  45. # Ensure we actually loaded a valid config
  46. fake_top_item = loaded_config['fake_top_item']
  47. stc = []
  48. expected_keys = ("some string", "some string 2", "deeply_nested_string")
  49. # Test that we actually extract all the strings from complicated nested
  50. # structures
  51. master_check_paths_in_config.walk_mapping(fake_top_item, stc)
  52. assert len(stc) == 3
  53. for item in expected_keys:
  54. assert item in stc
  55. def test_check_strings():
  56. stc_good = ('/etc/origin/master/good', 'some/child/dir')
  57. # This should not raise
  58. master_check_paths_in_config.check_strings(stc_good)
  59. # This is a string we should alert on
  60. stc_bad = ('goodfile.txt', '/root/somefile')
  61. with pytest.raises(errors.AnsibleModuleError):
  62. master_check_paths_in_config.check_strings(stc_bad)
  63. stc_bad_relative = ('goodfile.txt', '../node/otherfile')
  64. with pytest.raises(errors.AnsibleModuleError):
  65. master_check_paths_in_config.check_strings(stc_bad_relative)