diff --git a/robottelo/utils/issue_handlers/__init__.py b/robottelo/utils/issue_handlers/__init__.py index 803b5800080..19b7802141a 100644 --- a/robottelo/utils/issue_handlers/__init__.py +++ b/robottelo/utils/issue_handlers/__init__.py @@ -3,7 +3,7 @@ # Methods related to issue handlers in general from robottelo.utils.issue_handlers import bugzilla, jira -handler_methods = {'BZ': bugzilla.is_open_bz, 'SAT': jira.is_open_jira} +handler_methods = {'BZ': bugzilla.is_open_bz, 'SAT': jira.is_open_jira, 'RHELC': jira.is_open_jira} SUPPORTED_HANDLERS = tuple(f"{handler}" for handler in handler_methods) diff --git a/tests/foreman/api/test_convert2rhel.py b/tests/foreman/api/test_convert2rhel.py index 5ae7a3ed392..28dea0b67ee 100644 --- a/tests/foreman/api/test_convert2rhel.py +++ b/tests/foreman/api/test_convert2rhel.py @@ -19,6 +19,7 @@ from robottelo.config import settings from robottelo.constants import DEFAULT_ARCHITECTURE, REPOS +from robottelo.utils.issue_handlers import is_open def create_repo(sat, org, repo_url, ssl_cert=None): @@ -328,7 +329,9 @@ def test_convert2rhel_oracle_with_pre_conversion_template_check( assert host_content['facts']['conversions::success'] == 'true' convert2rhel_facts = json.loads(oracle.execute('cat /etc/rhsm/facts/convert2rhel.facts').stdout) assert convert2rhel_facts['conversions.env.CONVERT2RHEL_THROUGH_FOREMAN'] == '1' - assert target_os_name in convert2rhel_facts['conversions.target_os.name'] + # https://issues.redhat.com/browse/RHELC-1737 + if not is_open('RHELC-1737'): + assert target_os_name in convert2rhel_facts['conversions.target_os.name'] assert convert2rhel_facts['conversions.success'] is True @@ -422,5 +425,7 @@ def test_convert2rhel_centos_with_pre_conversion_template_check( assert host_content['facts']['conversions::success'] == 'true' convert2rhel_facts = json.loads(centos.execute('cat /etc/rhsm/facts/convert2rhel.facts').stdout) assert convert2rhel_facts['conversions.env.CONVERT2RHEL_THROUGH_FOREMAN'] == '1' - assert target_os_name in convert2rhel_facts['conversions.target_os.name'] + # https://issues.redhat.com/browse/RHELC-1737 + if not is_open('RHELC-1737'): + assert target_os_name in convert2rhel_facts['conversions.target_os.name'] assert convert2rhel_facts['conversions.success'] is True