mixins_test.py 749 B

1234567891011121314151617181920212223
  1. import pytest
  2. from openshift_checks import OpenShiftCheck, OpenShiftCheckException
  3. from openshift_checks.mixins import NotContainerizedMixin
  4. class NotContainerizedCheck(NotContainerizedMixin, OpenShiftCheck):
  5. name = "not_containerized"
  6. run = NotImplemented
  7. @pytest.mark.parametrize('task_vars,expected', [
  8. (dict(openshift_is_containerized=False), True),
  9. (dict(openshift_is_containerized=True), False),
  10. ])
  11. def test_is_active(task_vars, expected):
  12. assert NotContainerizedCheck(None, task_vars).is_active() == expected
  13. def test_is_active_missing_task_vars():
  14. with pytest.raises(OpenShiftCheckException) as excinfo:
  15. NotContainerizedCheck().is_active()
  16. assert 'openshift_is_containerized' in str(excinfo.value)