/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/pytests/unit/states/apache/test_module.py
73 строки
2 KB
Pedro Algarvio
Update pre-commit hook versions
29 фев 2024, 15:30
Не верифицирован
29 фев 2024, 15:30
f454911
Код
Авторство
О чём код?
""" :codeauthor: Jayesh Kariya <jayeshk@saltstack.com> """ import pytest import salt.states.apache_module as apache_module from tests.support.mock import MagicMock, patch @pytest.fixture def configure_loader_modules(): return {apache_module: {}} def test_enabled(): """ Test to ensure an Apache module is enabled. """ name = "cgi" ret = {"name": name, "result": True, "changes": {}, "comment": ""} mock = MagicMock(side_effect=[True, False, False]) mock_str = MagicMock(return_value={"Status": ["enabled"]}) with patch.dict( apache_module.__salt__, {"apache.check_mod_enabled": mock, "apache.a2enmod": mock_str}, ): comt = f"{name} already enabled." ret.update({"comment": comt}) assert apache_module.enabled(name) == ret comt = f"Apache module {name} is set to be enabled." ret.update( {"comment": comt, "result": None, "changes": {"new": "cgi", "old": None}} ) with patch.dict(apache_module.__opts__, {"test": True}): assert apache_module.enabled(name) == ret comt = f"Failed to enable {name} Apache module" ret.update({"comment": comt, "result": False, "changes": {}}) with patch.dict(apache_module.__opts__, {"test": False}): assert apache_module.enabled(name) == ret def test_disabled(): """ Test to ensure an Apache module is disabled. """ name = "cgi" ret = {"name": name, "result": None, "changes": {}, "comment": ""} mock = MagicMock(side_effect=[True, True, False]) mock_str = MagicMock(return_value={"Status": ["disabled"]}) with patch.dict( apache_module.__salt__, {"apache.check_mod_enabled": mock, "apache.a2dismod": mock_str}, ): comt = f"Apache module {name} is set to be disabled." ret.update({"comment": comt, "changes": {"new": None, "old": "cgi"}}) with patch.dict(apache_module.__opts__, {"test": True}): assert apache_module.disabled(name) == ret comt = f"Failed to disable {name} Apache module" ret.update({"comment": comt, "result": False, "changes": {}}) with patch.dict(apache_module.__opts__, {"test": False}): assert apache_module.disabled(name) == ret comt = f"{name} already disabled." ret.update({"comment": comt, "result": True}) assert apache_module.disabled(name) == ret