modify_yaml_tests.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. """ Tests for the modify_yaml Ansible module. """
  2. # pylint: disable=missing-docstring,invalid-name
  3. import os
  4. import sys
  5. import unittest
  6. sys.path = [os.path.abspath(os.path.dirname(__file__) + "/../library/")] + sys.path
  7. # pylint: disable=import-error
  8. from modify_yaml import set_key # noqa: E402
  9. class ModifyYamlTests(unittest.TestCase):
  10. def test_simple_nested_value(self):
  11. cfg = {"section": {"a": 1, "b": 2}}
  12. changes = set_key(cfg, 'section.c', 3)
  13. self.assertEquals(1, len(changes))
  14. self.assertEquals(3, cfg['section']['c'])
  15. # Tests a previous bug where property would land in section above where it should,
  16. # if the destination section did not yet exist:
  17. def test_nested_property_in_new_section(self):
  18. cfg = {
  19. "masterClients": {
  20. "externalKubernetesKubeConfig": "",
  21. "openshiftLoopbackKubeConfig": "openshift-master.kubeconfig",
  22. },
  23. }
  24. yaml_key = 'masterClients.externalKubernetesClientConnectionOverrides.acceptContentTypes'
  25. yaml_value = 'application/vnd.kubernetes.protobuf,application/json'
  26. set_key(cfg, yaml_key, yaml_value)
  27. self.assertEquals(yaml_value, cfg['masterClients']
  28. ['externalKubernetesClientConnectionOverrides']
  29. ['acceptContentTypes'])