123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: Pedro Algarvio (pedro@algarvio.me)
- :codeauthor: Alexandru Bleotu (alexandru.bleotu@morganstanley.com)
- tests.unit.pillar_test
- ~~~~~~~~~~~~~~~~~~~~~~
- """
- # Import python libs
- from __future__ import absolute_import
- import shutil
- import tempfile
- import pytest
- import salt.exceptions
- # Import salt libs
- import salt.fileclient
- import salt.pillar
- import salt.utils.stringutils
- from tests.support.helpers import with_tempdir
- from tests.support.mock import MagicMock, patch
- # Import Salt Testing libs
- from tests.support.runtests import RUNTIME_VARS
- from tests.support.unit import TestCase
- class MockFileclient(object):
- def __init__(self, cache_file=None, get_state=None, list_states=None):
- if cache_file is not None:
- self.cache_file = lambda *x, **y: cache_file
- if get_state is not None:
- self.get_state = lambda sls, env: get_state[sls]
- if list_states is not None:
- self.list_states = lambda *x, **y: list_states
- # pylint: disable=unused-argument,no-method-argument,method-hidden
- def cache_file(*args, **kwargs):
- raise NotImplementedError()
- def get_state(*args, **kwargs):
- raise NotImplementedError()
- def list_states(*args, **kwargs):
- raise NotImplementedError()
- # pylint: enable=unused-argument,no-method-argument,method-hidden
- class PillarTestCase(TestCase):
- def tearDown(self):
- for attrname in (
- "generic_file",
- "generic_minion_file",
- "ssh_file",
- "ssh_minion_file",
- "top_file",
- ):
- try:
- delattr(self, attrname)
- except AttributeError:
- continue
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_pillarenv_from_saltenv(self):
- with patch("salt.pillar.compile_template") as compile_template:
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- grains = {
- "os": "Ubuntu",
- }
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "dev")
- self.assertEqual(pillar.opts["saltenv"], "dev")
- self.assertEqual(pillar.opts["pillarenv"], "dev")
- def test_ext_pillar_no_extra_minion_data_val_dict(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(opts, {}, "mocked-minion", "dev")
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data(
- "fake_pillar", {"arg": "foo"}, "fake_ext_pillar"
- )
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", arg="foo"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data(
- "fake_pillar", {"arg": "foo"}, "fake_ext_pillar"
- )
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", arg="foo"
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_ext_pillar_no_extra_minion_data_val_list(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(opts, {}, "mocked-minion", "dev")
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data("fake_pillar", ["foo"], "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "foo"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data("fake_pillar", ["foo"], "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "foo"
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_ext_pillar_no_extra_minion_data_val_elem(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(opts, {}, "mocked-minion", "dev")
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data("fake_pillar", "fake_val", "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "fake_val"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data("fake_pillar", "fake_val", "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "fake_val"
- )
- def test_ext_pillar_with_extra_minion_data_val_dict(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(
- opts, {}, "mocked-minion", "dev", extra_minion_data={"fake_key": "foo"}
- )
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data(
- "fake_pillar", {"arg": "foo"}, "fake_ext_pillar"
- )
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", arg="foo"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data(
- "fake_pillar", {"arg": "foo"}, "fake_ext_pillar"
- )
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion",
- "fake_pillar",
- arg="foo",
- extra_minion_data={"fake_key": "foo"},
- )
- def test_ext_pillar_with_extra_minion_data_val_list(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(
- opts, {}, "mocked-minion", "dev", extra_minion_data={"fake_key": "foo"}
- )
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data("fake_pillar", ["bar"], "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "bar"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data("fake_pillar", ["bar"], "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "bar", extra_minion_data={"fake_key": "foo"}
- )
- def test_ext_pillar_with_extra_minion_data_val_elem(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {"dev": [], "base": []},
- "file_roots": {"dev": [], "base": []},
- "extension_modules": "",
- "pillarenv_from_saltenv": True,
- }
- mock_ext_pillar_func = MagicMock()
- with patch(
- "salt.loader.pillars",
- MagicMock(return_value={"fake_ext_pillar": mock_ext_pillar_func}),
- ):
- pillar = salt.pillar.Pillar(
- opts, {}, "mocked-minion", "dev", extra_minion_data={"fake_key": "foo"}
- )
- # ext pillar function doesn't have the extra_minion_data arg
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=[])),
- ):
- pillar._external_pillar_data("fake_pillar", "bar", "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "bar"
- )
- # ext pillar function has the extra_minion_data arg
- mock_ext_pillar_func.reset_mock()
- with patch(
- "salt.utils.args.get_function_argspec",
- MagicMock(return_value=MagicMock(args=["extra_minion_data"])),
- ):
- pillar._external_pillar_data("fake_pillar", "bar", "fake_ext_pillar")
- mock_ext_pillar_func.assert_called_once_with(
- "mocked-minion", "fake_pillar", "bar", extra_minion_data={"fake_key": "foo"}
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_ext_pillar_first(self):
- """
- test when using ext_pillar and ext_pillar_first
- """
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "yaml",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": [],
- "extension_modules": "",
- "saltenv": "base",
- "file_roots": [],
- "ext_pillar_first": True,
- }
- grains = {
- "os": "Ubuntu",
- "os_family": "Debian",
- "oscodename": "raring",
- "osfullname": "Ubuntu",
- "osrelease": "13.04",
- "kernel": "Linux",
- }
- tempdir = tempfile.mkdtemp(dir=RUNTIME_VARS.TMP)
- try:
- sls_files = self._setup_test_topfile_sls_pillar_match(tempdir,)
- fc_mock = MockFileclient(
- cache_file=sls_files["top"]["dest"],
- list_states=["top", "ssh", "ssh.minion", "generic", "generic.minion"],
- get_state=sls_files,
- )
- with patch.object(
- salt.fileclient, "get_file_client", MagicMock(return_value=fc_mock)
- ), patch(
- "salt.pillar.Pillar.ext_pillar",
- MagicMock(
- return_value=(
- {"id": "minion", "phase": "alpha", "role": "database"},
- [],
- )
- ),
- ):
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "base")
- self.assertEqual(pillar.compile_pillar()["generic"]["key1"], "value1")
- finally:
- shutil.rmtree(tempdir, ignore_errors=True)
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_dynamic_pillarenv(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {
- "__env__": ["/srv/pillar/__env__"],
- "base": ["/srv/pillar/base"],
- },
- "file_roots": {"base": ["/srv/salt/base"], "dev": ["/svr/salt/dev"]},
- "extension_modules": "",
- }
- pillar = salt.pillar.Pillar(opts, {}, "mocked-minion", "base", pillarenv="dev")
- self.assertEqual(
- pillar.opts["pillar_roots"],
- {"base": ["/srv/pillar/base"], "dev": ["/srv/pillar/__env__"]},
- )
- def test_ignored_dynamic_pillarenv(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {
- "__env__": ["/srv/pillar/__env__"],
- "base": ["/srv/pillar/base"],
- },
- "file_roots": {"base": ["/srv/salt/base"], "dev": ["/svr/salt/dev"]},
- "extension_modules": "",
- }
- pillar = salt.pillar.Pillar(opts, {}, "mocked-minion", "base", pillarenv="base")
- self.assertEqual(pillar.opts["pillar_roots"], {"base": ["/srv/pillar/base"]})
- @patch("salt.fileclient.Client.list_states")
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_malformed_pillar_sls(self, mock_list_states):
- with patch("salt.pillar.compile_template") as compile_template:
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": [],
- "file_roots": [],
- "extension_modules": "",
- }
- grains = {
- "os": "Ubuntu",
- "os_family": "Debian",
- "oscodename": "raring",
- "osfullname": "Ubuntu",
- "osrelease": "13.04",
- "kernel": "Linux",
- }
- mock_list_states.return_value = ["foo", "blah"]
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "base")
- # Mock getting the proper template files
- pillar.client.get_state = MagicMock(
- return_value={
- "dest": "/path/to/pillar/files/foo.sls",
- "source": "salt://foo.sls",
- }
- )
- # Template compilation returned a string
- compile_template.return_value = "BAHHH"
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- ({}, ["SLS 'foo.sls' does not render to a dictionary"]),
- )
- # Template compilation returned a list
- compile_template.return_value = ["BAHHH"]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- ({}, ["SLS 'foo.sls' does not render to a dictionary"]),
- )
- # Template compilation returned a dictionary, which is what's expected
- compile_template.return_value = {"foo": "bar"}
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}), ({"foo": "bar"}, [])
- )
- # Test improper includes
- compile_template.side_effect = [
- {"foo": "bar", "include": "blah"},
- {"foo2": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- (
- {"foo": "bar", "include": "blah"},
- ["Include Declaration in SLS 'foo.sls' is not formed as a list"],
- ),
- )
- # Test includes as a list, which is what's expected
- compile_template.side_effect = [
- {"foo": "bar", "include": ["blah"]},
- {"foo2": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- ({"foo": "bar", "foo2": "bar2"}, []),
- )
- # Test includes as a list overriding data
- compile_template.side_effect = [
- {"foo": "bar", "include": ["blah"]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}), ({"foo": "bar"}, [])
- )
- # Test includes using empty key directive
- compile_template.side_effect = [
- {"foo": "bar", "include": [{"blah": {"key": ""}}]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}), ({"foo": "bar"}, [])
- )
- # Test includes using simple non-nested key
- compile_template.side_effect = [
- {"foo": "bar", "include": [{"blah": {"key": "nested"}}]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- ({"foo": "bar", "nested": {"foo": "bar2"}}, []),
- )
- # Test includes using nested key
- compile_template.side_effect = [
- {"foo": "bar", "include": [{"blah": {"key": "nested:level"}}]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}),
- ({"foo": "bar", "nested": {"level": {"foo": "bar2"}}}, []),
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_includes_override_sls(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "json",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": {},
- "file_roots": {},
- "extension_modules": "",
- }
- grains = {
- "os": "Ubuntu",
- "os_family": "Debian",
- "oscodename": "raring",
- "osfullname": "Ubuntu",
- "osrelease": "13.04",
- "kernel": "Linux",
- }
- with patch("salt.pillar.compile_template") as compile_template, patch.object(
- salt.pillar.Pillar,
- "_Pillar__gather_avail",
- MagicMock(return_value={"base": ["blah", "foo"]}),
- ):
- # Test with option set to True
- opts["pillar_includes_override_sls"] = True
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "base")
- # Mock getting the proper template files
- pillar.client.get_state = MagicMock(
- return_value={
- "dest": "/path/to/pillar/files/foo.sls",
- "source": "salt://foo.sls",
- }
- )
- compile_template.side_effect = [
- {"foo": "bar", "include": ["blah"]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}), ({"foo": "bar2"}, [])
- )
- # Test with option set to False
- opts["pillar_includes_override_sls"] = False
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "base")
- # Mock getting the proper template files
- pillar.client.get_state = MagicMock(
- return_value={
- "dest": "/path/to/pillar/files/foo.sls",
- "source": "salt://foo.sls",
- }
- )
- compile_template.side_effect = [
- {"foo": "bar", "include": ["blah"]},
- {"foo": "bar2"},
- ]
- self.assertEqual(
- pillar.render_pillar({"base": ["foo.sls"]}), ({"foo": "bar"}, [])
- )
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_topfile_order(self):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "yaml",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": [],
- "extension_modules": "",
- "saltenv": "base",
- "file_roots": [],
- }
- grains = {
- "os": "Ubuntu",
- "os_family": "Debian",
- "oscodename": "raring",
- "osfullname": "Ubuntu",
- "osrelease": "13.04",
- "kernel": "Linux",
- }
- def _run_test(nodegroup_order, glob_order, expected):
- tempdir = tempfile.mkdtemp(dir=RUNTIME_VARS.TMP)
- try:
- sls_files = self._setup_test_topfile_sls(
- tempdir, nodegroup_order, glob_order
- )
- fc_mock = MockFileclient(
- cache_file=sls_files["top"]["dest"],
- list_states=[
- "top",
- "ssh",
- "ssh.minion",
- "generic",
- "generic.minion",
- ],
- get_state=sls_files,
- )
- with patch.object(
- salt.fileclient, "get_file_client", MagicMock(return_value=fc_mock)
- ):
- pillar = salt.pillar.Pillar(opts, grains, "mocked-minion", "base")
- # Make sure that confirm_top.confirm_top returns True
- pillar.matchers["confirm_top.confirm_top"] = lambda *x, **y: True
- self.assertEqual(pillar.compile_pillar()["ssh"], expected)
- finally:
- shutil.rmtree(tempdir, ignore_errors=True)
- # test case where glob match happens second and therefore takes
- # precedence over nodegroup match.
- _run_test(nodegroup_order=1, glob_order=2, expected="bar")
- # test case where nodegroup match happens second and therefore takes
- # precedence over glob match.
- _run_test(nodegroup_order=2, glob_order=1, expected="foo")
- def _setup_test_topfile_sls_pillar_match(self, tempdir):
- # Write a simple topfile and two pillar state files
- top_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- s = """
- base:
- 'phase:alpha':
- - match: pillar
- - generic
- """
- top_file.write(salt.utils.stringutils.to_bytes(s))
- top_file.flush()
- generic_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- generic_file.write(
- b"""
- generic:
- key1: value1
- """
- )
- generic_file.flush()
- return {
- "top": {"path": "", "dest": top_file.name},
- "generic": {"path": "", "dest": generic_file.name},
- }
- def _setup_test_topfile_sls(self, tempdir, nodegroup_order, glob_order):
- # Write a simple topfile and two pillar state files
- top_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- s = """
- base:
- group:
- - match: nodegroup
- - order: {nodegroup_order}
- - ssh
- - generic
- '*':
- - generic
- minion:
- - order: {glob_order}
- - ssh.minion
- - generic.minion
- """.format(
- nodegroup_order=nodegroup_order, glob_order=glob_order
- )
- top_file.write(salt.utils.stringutils.to_bytes(s))
- top_file.flush()
- ssh_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- ssh_file.write(
- b"""
- ssh:
- foo
- """
- )
- ssh_file.flush()
- ssh_minion_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- ssh_minion_file.write(
- b"""
- ssh:
- bar
- """
- )
- ssh_minion_file.flush()
- generic_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- generic_file.write(
- b"""
- generic:
- key1:
- - value1
- - value2
- key2:
- sub_key1: []
- """
- )
- generic_file.flush()
- generic_minion_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- generic_minion_file.write(
- b"""
- generic:
- key1:
- - value3
- key2:
- sub_key2: []
- """
- )
- generic_minion_file.flush()
- return {
- "top": {"path": "", "dest": top_file.name},
- "ssh": {"path": "", "dest": ssh_file.name},
- "ssh.minion": {"path": "", "dest": ssh_minion_file.name},
- "generic": {"path": "", "dest": generic_file.name},
- "generic.minion": {"path": "", "dest": generic_minion_file.name},
- }
- @with_tempdir()
- @pytest.mark.slow_test(seconds=1) # Test takes >0.1 and <=1 seconds
- def test_include(self, tempdir):
- opts = {
- "optimization_order": [0, 1, 2],
- "renderer": "yaml",
- "renderer_blacklist": [],
- "renderer_whitelist": [],
- "state_top": "",
- "pillar_roots": [],
- "extension_modules": "",
- "saltenv": "base",
- "file_roots": [],
- }
- grains = {
- "os": "Ubuntu",
- "os_family": "Debian",
- "oscodename": "raring",
- "osfullname": "Ubuntu",
- "osrelease": "13.04",
- "kernel": "Linux",
- }
- sls_files = self._setup_test_include_sls(tempdir)
- fc_mock = MockFileclient(
- cache_file=sls_files["top"]["dest"],
- get_state=sls_files,
- list_states=[
- "top",
- "test.init",
- "test.sub1",
- "test.sub2",
- "test.sub_wildcard_1",
- "test.sub_with_init_dot",
- "test.sub.with.slashes",
- ],
- )
- with patch.object(
- salt.fileclient, "get_file_client", MagicMock(return_value=fc_mock)
- ):
- pillar = salt.pillar.Pillar(opts, grains, "minion", "base")
- # Make sure that confirm_top.confirm_top returns True
- pillar.matchers["confirm_top.confirm_top"] = lambda *x, **y: True
- compiled_pillar = pillar.compile_pillar()
- self.assertEqual(compiled_pillar["foo_wildcard"], "bar_wildcard")
- self.assertEqual(compiled_pillar["foo1"], "bar1")
- self.assertEqual(compiled_pillar["foo2"], "bar2")
- self.assertEqual(compiled_pillar["sub_with_slashes"], "sub_slashes_worked")
- self.assertEqual(
- compiled_pillar["sub_init_dot"], "sub_with_init_dot_worked"
- )
- def _setup_test_include_sls(self, tempdir):
- top_file = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- top_file.write(
- b"""
- base:
- '*':
- - order: 1
- - test.sub2
- minion:
- - order: 2
- - test
- """
- )
- top_file.flush()
- init_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- init_sls.write(
- b"""
- include:
- - test.sub1
- - test.sub_wildcard*
- - .test.sub_with_init_dot
- - test/sub/with/slashes
- """
- )
- init_sls.flush()
- sub1_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- sub1_sls.write(
- b"""
- foo1:
- bar1
- """
- )
- sub1_sls.flush()
- sub2_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- sub2_sls.write(
- b"""
- foo2:
- bar2
- """
- )
- sub2_sls.flush()
- sub_wildcard_1_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- sub_wildcard_1_sls.write(
- b"""
- foo_wildcard:
- bar_wildcard
- """
- )
- sub_wildcard_1_sls.flush()
- sub_with_init_dot_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- sub_with_init_dot_sls.write(
- b"""
- sub_init_dot:
- sub_with_init_dot_worked
- """
- )
- sub_with_init_dot_sls.flush()
- sub_with_slashes_sls = tempfile.NamedTemporaryFile(dir=tempdir, delete=False)
- sub_with_slashes_sls.write(
- b"""
- sub_with_slashes:
- sub_slashes_worked
- """
- )
- sub_with_slashes_sls.flush()
- return {
- "top": {"path": "", "dest": top_file.name},
- "test": {"path": "", "dest": init_sls.name},
- "test.sub1": {"path": "", "dest": sub1_sls.name},
- "test.sub2": {"path": "", "dest": sub2_sls.name},
- "test.sub_wildcard_1": {"path": "", "dest": sub_wildcard_1_sls.name},
- "test.sub_with_init_dot": {"path": "", "dest": sub_with_init_dot_sls.name},
- "test.sub.with.slashes": {"path": "", "dest": sub_with_slashes_sls.name},
- }
- @patch("salt.transport.client.ReqChannel.factory", MagicMock())
- class RemotePillarTestCase(TestCase):
- """
- Tests for instantiating a RemotePillar in salt.pillar
- """
- def setUp(self):
- self.grains = {}
- def tearDown(self):
- for attr in ("grains",):
- try:
- delattr(self, attr)
- except AttributeError:
- continue
- def test_get_opts_in_pillar_override_call(self):
- mock_get_extra_minion_data = MagicMock(return_value={})
- with patch(
- "salt.pillar.RemotePillarMixin.get_ext_pillar_extra_minion_data",
- mock_get_extra_minion_data,
- ):
- salt.pillar.RemotePillar({}, self.grains, "mocked-minion", "dev")
- mock_get_extra_minion_data.assert_called_once_with({"saltenv": "dev"})
- def test_multiple_keys_in_opts_added_to_pillar(self):
- opts = {
- "renderer": "json",
- "path_to_add": "fake_data",
- "path_to_add2": {"fake_data2": ["fake_data3", "fake_data4"]},
- "pass_to_ext_pillars": ["path_to_add", "path_to_add2"],
- }
- pillar = salt.pillar.RemotePillar(opts, self.grains, "mocked-minion", "dev")
- self.assertEqual(
- pillar.extra_minion_data,
- {
- "path_to_add": "fake_data",
- "path_to_add2": {"fake_data2": ["fake_data3", "fake_data4"]},
- },
- )
- def test_subkey_in_opts_added_to_pillar(self):
- opts = {
- "renderer": "json",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": ["path_to_add2:fake_data5"],
- }
- pillar = salt.pillar.RemotePillar(opts, self.grains, "mocked-minion", "dev")
- self.assertEqual(
- pillar.extra_minion_data, {"path_to_add2": {"fake_data5": "fake_data6"}}
- )
- def test_non_existent_leaf_opt_in_add_to_pillar(self):
- opts = {
- "renderer": "json",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": ["path_to_add2:fake_data_non_exist"],
- }
- pillar = salt.pillar.RemotePillar(opts, self.grains, "mocked-minion", "dev")
- self.assertEqual(pillar.pillar_override, {})
- def test_non_existent_intermediate_opt_in_add_to_pillar(self):
- opts = {
- "renderer": "json",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": ["path_to_add_no_exist"],
- }
- pillar = salt.pillar.RemotePillar(opts, self.grains, "mocked-minion", "dev")
- self.assertEqual(pillar.pillar_override, {})
- def test_malformed_add_to_pillar(self):
- opts = {
- "renderer": "json",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": MagicMock(),
- }
- with self.assertRaises(salt.exceptions.SaltClientError) as excinfo:
- salt.pillar.RemotePillar(opts, self.grains, "mocked-minion", "dev")
- self.assertEqual(
- excinfo.exception.strerror, "'pass_to_ext_pillars' config is malformed."
- )
- def test_pillar_send_extra_minion_data_from_config(self):
- opts = {
- "renderer": "json",
- "pillarenv": "fake_pillar_env",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": ["path_to_add"],
- }
- mock_channel = MagicMock(
- crypted_transfer_decode_dictentry=MagicMock(return_value={})
- )
- with patch(
- "salt.transport.client.ReqChannel.factory",
- MagicMock(return_value=mock_channel),
- ):
- pillar = salt.pillar.RemotePillar(
- opts, self.grains, "mocked_minion", "fake_env"
- )
- ret = pillar.compile_pillar()
- self.assertEqual(pillar.channel, mock_channel)
- mock_channel.crypted_transfer_decode_dictentry.assert_called_once_with(
- {
- "cmd": "_pillar",
- "ver": "2",
- "id": "mocked_minion",
- "grains": {},
- "saltenv": "fake_env",
- "pillarenv": "fake_pillar_env",
- "pillar_override": {},
- "extra_minion_data": {"path_to_add": "fake_data"},
- },
- dictkey="pillar",
- )
- @patch("salt.transport.client.AsyncReqChannel.factory", MagicMock())
- class AsyncRemotePillarTestCase(TestCase):
- """
- Tests for instantiating a AsyncRemotePillar in salt.pillar
- """
- def setUp(self):
- self.grains = {}
- def tearDown(self):
- for attr in ("grains",):
- try:
- delattr(self, attr)
- except AttributeError:
- continue
- def test_get_opts_in_pillar_override_call(self):
- mock_get_extra_minion_data = MagicMock(return_value={})
- with patch(
- "salt.pillar.RemotePillarMixin.get_ext_pillar_extra_minion_data",
- mock_get_extra_minion_data,
- ):
- salt.pillar.RemotePillar({}, self.grains, "mocked-minion", "dev")
- mock_get_extra_minion_data.assert_called_once_with({"saltenv": "dev"})
- def test_pillar_send_extra_minion_data_from_config(self):
- opts = {
- "renderer": "json",
- "pillarenv": "fake_pillar_env",
- "path_to_add": "fake_data",
- "path_to_add2": {
- "fake_data5": "fake_data6",
- "fake_data2": ["fake_data3", "fake_data4"],
- },
- "pass_to_ext_pillars": ["path_to_add"],
- }
- mock_channel = MagicMock(
- crypted_transfer_decode_dictentry=MagicMock(return_value={})
- )
- with patch(
- "salt.transport.client.AsyncReqChannel.factory",
- MagicMock(return_value=mock_channel),
- ):
- pillar = salt.pillar.RemotePillar(
- opts, self.grains, "mocked_minion", "fake_env"
- )
- ret = pillar.compile_pillar()
- mock_channel.crypted_transfer_decode_dictentry.assert_called_once_with(
- {
- "cmd": "_pillar",
- "ver": "2",
- "id": "mocked_minion",
- "grains": {},
- "saltenv": "fake_env",
- "pillarenv": "fake_pillar_env",
- "pillar_override": {},
- "extra_minion_data": {"path_to_add": "fake_data"},
- },
- dictkey="pillar",
- )
|