123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: Justin Anderson <janderson@saltstack.com>
- """
- from __future__ import absolute_import, print_function, unicode_literals
- import os
- import pytest
- from salt.exceptions import CommandExecutionError
- from tests.support.case import ModuleCase
- from tests.support.helpers import slowTest
- from tests.support.runtests import RUNTIME_VARS
- from tests.support.unit import skipIf
- @pytest.mark.windows_whitelisted
- class BeaconsAddDeleteTest(ModuleCase):
- """
- Tests the add and delete functions
- """
- def setUp(self):
- self.minion_conf_d_dir = os.path.join(
- RUNTIME_VARS.TMP_CONF_DIR,
- os.path.dirname(self.minion_opts["default_include"]),
- )
- if not os.path.isdir(self.minion_conf_d_dir):
- os.makedirs(self.minion_conf_d_dir)
- self.beacons_config_file_path = os.path.join(
- self.minion_conf_d_dir, "beacons.conf"
- )
- self.run_function("beacons.reset", f_timeout=300)
- def tearDown(self):
- if os.path.isfile(self.beacons_config_file_path):
- os.unlink(self.beacons_config_file_path)
- # Reset beacons
- self.run_function("beacons.reset", f_timeout=300)
- @slowTest
- def test_add_and_delete(self):
- """
- Test adding and deleting a beacon
- """
- _add = self.run_function(
- "beacons.add",
- ["ps", [{"processes": {"apache2": "stopped"}}]],
- f_timeout=300,
- )
- self.assertTrue(_add["result"])
- # save added beacon
- _save = self.run_function("beacons.save", f_timeout=300)
- self.assertTrue(_save["result"])
- # delete the beacon
- _delete = self.run_function("beacons.delete", ["ps"], f_timeout=300)
- self.assertTrue(_delete["result"])
- # save the results
- self.run_function("beacons.save", f_timeout=300)
- @slowTest
- def test_add_and_delete_beacon_module(self):
- """
- Test adding and deleting a beacon
- """
- _add = self.run_function(
- "beacons.add",
- [
- "watch_apache",
- [{"processes": {"apache2": "stopped"}}, {"beacon_module": "ps"}],
- ],
- f_timeout=300,
- )
- self.assertTrue(_add["result"])
- # save added beacon
- _save = self.run_function("beacons.save", f_timeout=300)
- self.assertTrue(_save["result"])
- # delete the beacon
- _delete = self.run_function("beacons.delete", ["ps"], f_timeout=300)
- self.assertTrue(_delete["result"])
- # save the results
- self.run_function("beacons.save", f_timeout=300)
- @pytest.mark.windows_whitelisted
- class BeaconsTest(ModuleCase):
- """
- Tests the beacons execution module
- """
- beacons_config_file_path = minion_conf_d_dir = None
- @classmethod
- def tearDownClass(cls):
- if cls.beacons_config_file_path and os.path.isfile(
- cls.beacons_config_file_path
- ):
- os.unlink(cls.beacons_config_file_path)
- def setUp(self):
- if self.minion_conf_d_dir is None:
- self.minion_conf_d_dir = os.path.join(
- RUNTIME_VARS.TMP_CONF_DIR,
- os.path.dirname(self.minion_opts["default_include"]),
- )
- if not os.path.isdir(self.minion_conf_d_dir):
- os.makedirs(self.minion_conf_d_dir)
- self.__class__.beacons_config_file_path = os.path.join(
- self.minion_conf_d_dir, "beacons.conf"
- )
- self.run_function("beacons.reset", f_timeout=300)
- try:
- # Add beacon to disable
- self.run_function(
- "beacons.add",
- ["ps", [{"processes": {"apache2": "stopped"}}]],
- f_timeout=300,
- )
- self.run_function("beacons.save", f_timeout=300)
- except CommandExecutionError:
- self.skipTest("Unable to add beacon")
- def tearDown(self):
- # delete added beacon
- self.run_function("beacons.delete", ["ps"], f_timeout=300)
- self.run_function("beacons.save", f_timeout=300)
- # Reset beacons
- self.run_function("beacons.reset", f_timeout=300)
- @slowTest
- def test_disable(self):
- """
- Test disabling beacons
- """
- # assert beacon exists
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertIn("ps", _list)
- ret = self.run_function("beacons.disable", f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacons are disabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertFalse(_list["enabled"])
- # disable added beacon
- ret = self.run_function("beacons.disable_beacon", ["ps"], f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacon ps is disabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- for bdict in _list["ps"]:
- if "enabled" in bdict:
- self.assertFalse(bdict["enabled"])
- break
- @slowTest
- def test_enable(self):
- """
- Test enabling beacons
- """
- # assert beacon exists
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertIn("ps", _list)
- # enable beacons on minion
- ret = self.run_function("beacons.enable", f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacons are enabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertTrue(_list["enabled"])
- @skipIf(
- True,
- "Skip until https://github.com/saltstack/salt/issues/31516 "
- "problems are resolved.",
- )
- def test_enabled_beacons(self):
- """
- Test enabled specific beacon
- """
- # enable added beacon
- ret = self.run_function("beacons.enable_beacon", ["ps"], f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacon ps is enabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertTrue(_list["ps"]["enabled"])
- @slowTest
- def test_list(self):
- """
- Test listing the beacons
- """
- # list beacons
- ret = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- if "enabled" in ret:
- self.assertEqual(
- ret, {"ps": [{"processes": {"apache2": "stopped"}}], "enabled": True}
- )
- else:
- self.assertEqual(ret, {"ps": [{"processes": {"apache2": "stopped"}}]})
- @slowTest
- def test_list_available(self):
- """
- Test listing the beacons
- """
- # list beacons
- ret = self.run_function(
- "beacons.list_available", return_yaml=False, f_timeout=300
- )
- self.assertTrue(ret)
- class BeaconsWithBeaconTypeTest(ModuleCase):
- """
- Tests the beacons execution module
- """
- beacons_config_file_path = minion_conf_d_dir = None
- @classmethod
- def tearDownClass(cls):
- if cls.beacons_config_file_path and os.path.isfile(
- cls.beacons_config_file_path
- ):
- os.unlink(cls.beacons_config_file_path)
- def setUp(self):
- if self.minion_conf_d_dir is None:
- self.minion_conf_d_dir = os.path.join(
- RUNTIME_VARS.TMP_CONF_DIR,
- os.path.dirname(self.minion_opts["default_include"]),
- )
- if not os.path.isdir(self.minion_conf_d_dir):
- os.makedirs(self.minion_conf_d_dir)
- self.__class__.beacons_config_file_path = os.path.join(
- self.minion_conf_d_dir, "beacons.conf"
- )
- self.run_function("beacons.reset", f_timeout=300)
- try:
- # Add beacon to disable
- self.run_function(
- "beacons.add",
- [
- "watch_apache",
- [{"processes": {"apache2": "stopped"}}, {"beacon_module": "ps"}],
- ],
- f_timeout=300,
- )
- self.run_function("beacons.save", f_timeout=300)
- except CommandExecutionError:
- self.skipTest("Unable to add beacon")
- def tearDown(self):
- # delete added beacon
- self.run_function("beacons.delete", ["watch_apache"], f_timeout=300)
- self.run_function("beacons.save", f_timeout=300)
- @slowTest
- def test_disable(self):
- """
- Test disabling beacons
- """
- ret = self.run_function("beacons.enable", f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacon exists
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertIn("watch_apache", _list)
- ret = self.run_function("beacons.disable", f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacons are disabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertFalse(_list["enabled"])
- # disable added beacon
- ret = self.run_function(
- "beacons.disable_beacon", ["watch_apache"], f_timeout=300
- )
- self.assertTrue(ret["result"])
- # assert beacon ps is disabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- for bdict in _list["watch_apache"]:
- if "enabled" in bdict:
- self.assertFalse(bdict["enabled"])
- break
- @slowTest
- def test_enable(self):
- """
- Test enabling beacons
- """
- # assert beacon exists
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertIn("watch_apache", _list)
- # enable beacons on minion
- ret = self.run_function("beacons.enable", f_timeout=300)
- self.assertTrue(ret["result"])
- # assert beacons are enabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertTrue(_list["enabled"])
- @skipIf(
- True,
- "Skip until https://github.com/saltstack/salt/issues/31516 problems are resolved.",
- )
- def test_enabled_beacons(self):
- """
- Test enabled specific beacon
- """
- # enable added beacon
- ret = self.run_function(
- "beacons.enable_beacon", ["watch_apache"], f_timeout=300
- )
- self.assertTrue(ret["result"])
- # assert beacon ps is enabled
- _list = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- self.assertTrue(_list["watch_apache"]["enabled"])
- @slowTest
- def test_list(self):
- """
- Test listing the beacons
- """
- # list beacons
- ret = self.run_function("beacons.list", return_yaml=False, f_timeout=300)
- _expected = {
- "watch_apache": [
- {"processes": {"apache2": "stopped"}},
- {"beacon_module": "ps"},
- ]
- }
- _enabled_expected = {
- "watch_apache": [
- {"processes": {"apache2": "stopped"}},
- {"beacon_module": "ps"},
- ],
- "enabled": True,
- }
- if "enabled" in ret:
- self.assertEqual(ret, _enabled_expected)
- else:
- self.assertEqual(ret, _expected)
|