123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import pathlib
- import pytest
- from tests.support.case import ModuleCase
- from tests.support.helpers import slowTest
- from tests.support.runtests import RUNTIME_VARS
- @pytest.mark.windows_whitelisted
- class PillarModuleTest(ModuleCase):
- """
- Validate the pillar module
- """
- @slowTest
- def test_data(self):
- """
- pillar.data
- """
- grains = self.run_function("grains.items")
- pillar = self.run_function("pillar.data")
- self.assertEqual(pillar["os"], grains["os"])
- self.assertEqual(pillar["monty"], "python")
- if grains["os"] == "Fedora":
- self.assertEqual(pillar["class"], "redhat")
- else:
- self.assertEqual(pillar["class"], "other")
- @slowTest
- def test_issue_5449_report_actual_file_roots_in_pillar(self):
- """
- pillar['master']['file_roots'] is overwritten by the master
- in order to use the fileclient interface to read the pillar
- files. We should restore the actual file_roots when we send
- the pillar back to the minion.
- """
- file_roots = self.run_function("pillar.data")["master"]["file_roots"]["base"]
- self.assertIn(
- pathlib.Path(RUNTIME_VARS.TMP_STATE_TREE).resolve(),
- [pathlib.Path(p).resolve() for p in file_roots],
- )
- @slowTest
- def test_ext_cmd_yaml(self):
- """
- pillar.data for ext_pillar cmd.yaml
- """
- self.assertEqual(self.run_function("pillar.data")["ext_spam"], "eggs")
- @slowTest
- def test_issue_5951_actual_file_roots_in_opts(self):
- pillar_data = self.run_function("pillar.data")
- file_roots = pillar_data["ext_pillar_opts"]["file_roots"]["base"]
- self.assertIn(
- pathlib.Path(RUNTIME_VARS.TMP_STATE_TREE).resolve(),
- [pathlib.Path(p).resolve() for p in file_roots],
- )
- @slowTest
- def test_pillar_items(self):
- """
- Test to ensure we get expected output
- from pillar.items
- """
- get_items = self.run_function("pillar.items")
- self.assertDictContainsSubset({"monty": "python"}, get_items)
- self.assertDictContainsSubset(
- {"knights": ["Lancelot", "Galahad", "Bedevere", "Robin"]}, get_items
- )
- @slowTest
- def test_pillar_command_line(self):
- """
- Test to ensure when using pillar override
- on command line works
- """
- # test when pillar is overwriting previous pillar
- overwrite = self.run_function("pillar.items", pillar={"monty": "overwrite"})
- self.assertDictContainsSubset({"monty": "overwrite"}, overwrite)
- # test when using additional pillar
- additional = self.run_function("pillar.items", pillar={"new": "additional"})
- self.assertDictContainsSubset({"new": "additional"}, additional)
|