Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions robottelo/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,24 @@
RHEL10_MARIADB_ERRATUM = 'RHSA-2026:0136'
# Use the first CVE as the primary one for single-CVE tests
RHEL10_VULNERABILITY_CVE_ID = RHEL10_VULNERABLE_MARIADB_CVES[0]
# Per-version vulnerability data for IoP vulnerability testing
VULNERABLE_PACKAGES = {
8: {
'rpm': 'mariadb-10.3.39-1.module+el8.8.0+19673+72b0d35f.x86_64',
'cves': ['CVE-2025-13699'],
'erratum': '',
},
9: {
'rpm': 'mariadb-3:10.5.29-2.el9_6.x86_64',
'cves': ['CVE-2025-13699'],
'erratum': '',
},
10: {
'rpm': RHEL10_VULNERABLE_MARIADB_RPM,
'cves': RHEL10_VULNERABLE_MARIADB_CVES,
'erratum': RHEL10_MARIADB_ERRATUM,
},
}
FAKE_1_YUM_REPOS_COUNT = 32
FAKE_3_YUM_REPOS_COUNT = 78
FAKE_9_YUM_SECURITY_ERRATUM = [
Expand Down
4 changes: 2 additions & 2 deletions tests/foreman/cli/test_rhcloud_iop.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@


@pytest.mark.no_containers
@pytest.mark.rhel_ver_match('N-0')
@pytest.mark.rhel_ver_match('N-2')
def test_positive_install_iop_custom_certs(
certs_data,
sat_ready_rhel,
Expand Down Expand Up @@ -171,7 +171,7 @@ def test_positive_install_iop_custom_certs(


@pytest.mark.no_containers
@pytest.mark.rhel_ver_match('N-0')
@pytest.mark.rhel_ver_match('N-2')
def test_disable_enable_iop(module_satellite_iop, module_sca_manifest, rhel_contenthost):
"""Disable and re-enable IoP on Satellite.

Expand Down
Loading
Loading