Skip to content

Commit

Permalink
[CV Eval] CV Version Test (#14949)
Browse files Browse the repository at this point in the history
* Add test reading CV Version table

* Add test reading CV Version table

* Add additional checks for table fields

* Add test reading CV Version table

* Add additional checks for table fields

* Fix caseimportance string

* Use only REPOS constant

* Read data from product to compare in table, and use smaller repo

(cherry picked from commit 83c2093)
  • Loading branch information
sambible authored and web-flow committed Jun 3, 2024
1 parent 1d272f6 commit fc425c7
Showing 1 changed file with 43 additions and 0 deletions.
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

0 comments on commit fc425c7

Please sign in to comment.