-
Notifications
You must be signed in to change notification settings - Fork 115
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
Add test checking needs publish banner on cv index page #17154
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -325,3 +325,35 @@ def test_positive_delete_cv_promoted_to_multi_env( | |||||||||||||||||||||||||||||||||||||
assert cv['name'] not in str(lce_values['content_views']['resources']) | ||||||||||||||||||||||||||||||||||||||
library_values = session.lifecycleenvironment.read('Library') | ||||||||||||||||||||||||||||||||||||||
assert cv['name'] not in str(library_values['content_views']['resources']) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@pytest.mark.upgrade | ||||||||||||||||||||||||||||||||||||||
@pytest.mark.tier2 | ||||||||||||||||||||||||||||||||||||||
def test_cv_publish_warning(session, target_sat, function_sca_manifest_org, module_lce): | ||||||||||||||||||||||||||||||||||||||
"""Verify that the publish warning banner accurately reflects the state of a given CV | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
:id: 5d6187bf-2f36-46cd-bdfe-dfbda244af39 | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
:steps: | ||||||||||||||||||||||||||||||||||||||
1. Create and sync yum repository on satellite, add to a new content view. | ||||||||||||||||||||||||||||||||||||||
2. Check the publish wizard, and verify that the publish warning banner is visible | ||||||||||||||||||||||||||||||||||||||
3. Publish the CV | ||||||||||||||||||||||||||||||||||||||
4. Check the publish wizard again for the CV and verify the warning isn't visible | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
:expectedresults: The publish warning banner accurately reflects the status of the CV | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||
:CaseImportance: High | ||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||
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() | ||||||||||||||||||||||||||||||||||||||
cv = target_sat.api.ContentView(organization=function_sca_manifest_org).create() | ||||||||||||||||||||||||||||||||||||||
cv = target_sat.api.ContentView(id=cv.id, repository=[rh_repo]).update(["repository"]) | ||||||||||||||||||||||||||||||||||||||
with target_sat.ui_session() as session: | ||||||||||||||||||||||||||||||||||||||
session.organization.select(org_name=function_sca_manifest_org.name) | ||||||||||||||||||||||||||||||||||||||
result = session.contentview_new.check_publish_banner(cv.name) | ||||||||||||||||||||||||||||||||||||||
assert result | ||||||||||||||||||||||||||||||||||||||
cv.publish() | ||||||||||||||||||||||||||||||||||||||
result2 = session.contentview_new.check_publish_banner(cv.name) | ||||||||||||||||||||||||||||||||||||||
assert not result2 | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+355
to
+359
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Comment on lines
+355
to
+359
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't the logic be the opposite? The "no changes" warning displayed after publish, not before?
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't use tier markers anymore.