Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CV Eval] CV Version Test #14949

Merged
merged 12 commits into from
Jun 3, 2024
43 changes: 43 additions & 0 deletions tests/foreman/ui/test_contentview.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
from fauxfactory import gen_string
import pytest

from robottelo.constants import REPOS


@pytest.mark.tier2
def test_positive_create_cv(session, target_sat):
Expand All @@ -36,6 +38,47 @@ def test_positive_create_cv(session, target_sat):
assert session.contentview_new.search(cv)[0]['Name'] == cv


@pytest.mark.tier2
def test_version_table_read(session, function_sca_manifest_org, target_sat):
"""Able to read CV version package details, which includes the Epoch tab

:id: fe2a87c7-f148-40f2-b11a-c209a4807016

:steps:
1. Enable and Sync RHEL8 Base OS Repo
2. Add repo to a CV
3. Publish the CV
4. Navigate to the published Version's page
5. Filter packages to only an arbitrary package

:expectedresults: The package is present, has the appropriate name, and has the epoch tab present

:CaseImportance: Critical

:BZ: 1911545

:customerscenario: true
"""
rh_repo_id = target_sat.api_factory.enable_sync_redhat_repo(
REPOS['rhae2.9_el8'], function_sca_manifest_org.id
)
rh_repo = target_sat.api.Repository(id=rh_repo_id).read()
packages = target_sat.api.Repository(id=rh_repo_id).packages()
cv = target_sat.api.ContentView(organization=function_sca_manifest_org).create()
cv = target_sat.api.ContentView(id=cv.id, repository=[rh_repo]).update(["repository"])
cv.publish()
with target_sat.ui_session() as session:
session.organization.select(org_name=function_sca_manifest_org.name)
response = session.contentview_new.read_version_table(
cv.name, 'Version 1.0', 'rpmPackages', search_param=packages['results'][0]['nvra']
)
assert response[0]['Epoch'] == packages['results'][0]['epoch']
assert response[0]['Name'] == packages['results'][0]['nvra']
assert response[0]['Version'] == packages['results'][0]['version']
assert response[0]['Release'] == packages['results'][0]['release']
assert response[0]['Arch'] == packages['results'][0]['arch']


@pytest.mark.tier2
def test_no_blank_page_on_language_switch(session, target_sat, module_org):
"""Able to view the new CV UI when the language is set to something other
Expand Down
Loading