Skip to content

Commit

Permalink
[6.14.z & 6.13.z] add test steps, refresh uploaded manifest file (#14208
Browse files Browse the repository at this point in the history
)
  • Loading branch information
vijaysawant authored Feb 28, 2024
1 parent 3ccd7ac commit fed5206
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions tests/foreman/api/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -1557,14 +1557,22 @@ def test_positive_sync_kickstart_check_os(
),
indirect=True,
)
def test_missing_content_id(self, repo):
def test_missing_content_id(self, repo, function_entitlement_manifest_org, target_sat):
"""Handle several cases of missing content ID correctly
:id: f507790a-933b-4b3f-ac93-cade6967fbd2
:parametrized: yes
:expectedresults: Repository URL can be set to something new and the repo can be deleted
:setup:
1. Create product and repo, sync repo
:steps:
1. Try to update repo URL
2. Attempt to delete repo
3. Refresh manifest file
:expectedresults: Repo URL can be updated, repo can be deleted and manifest refresh works after repo delete
:BZ:2032040
"""
Expand All @@ -1582,6 +1590,10 @@ def test_missing_content_id(self, repo):
repo.delete()
with pytest.raises(HTTPError):
repo.read()
output = target_sat.cli.Subscription.refresh_manifest(
{'organization-id': function_entitlement_manifest_org.id}
)
assert 'Candlepin job status: SUCCESS' in output, 'Failed to refresh manifest'


class TestDockerRepository:
Expand Down

0 comments on commit fed5206

Please sign in to comment.