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

[6.16]Podman Push - Podman Push Create and CV tests #14940

Merged
merged 14 commits into from
Aug 5, 2024
Merged
156 changes: 156 additions & 0 deletions tests/foreman/api/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,3 +603,159 @@ def test_positive_remove_docker_repo_ccv(
assert ak.content_view.id == comp_content_view.id
ak.content_view = None
assert ak.update(['content_view']).content_view is None


class TestPodman:
"""Tests specific to using podman push/pull on Satellite

:CaseComponent: Repositories

:team: Phoenix-content
"""

@pytest.fixture(scope='class')
def enable_podman(module_product, module_target_sat):
"""Enable base_os and appstream repos on the sat through cdn registration and install podman."""
module_target_sat.register_to_cdn()
if module_target_sat.os_version.major > 7:
module_target_sat.enable_repo(module_target_sat.REPOS['rhel_bos']['id'])
module_target_sat.enable_repo(module_target_sat.REPOS['rhel_aps']['id'])
else:
module_target_sat.enable_repo(module_target_sat.REPOS['rhscl']['id'])
module_target_sat.enable_repo(module_target_sat.REPOS['rhel']['id'])
result = module_target_sat.execute(
'dnf install -y --disableplugin=foreman-protector podman'
)
assert result.status == 0

def test_podman_push(self, module_target_sat, module_product, module_org, enable_podman):
"""Push a small and large container image to Pulp, and verify the results

:id: 488adc49-899e-4739-8bca-0cd255da63ae

:steps:
1. Using podman, pull a small and large image from the fedoraproject registry
2. Push one image to pulp using the /org_label/product_label format
3. Push the other image to pulp using the /id/org_id/product_id format

:expectedresults: A docker repository is created for both images. Both images are published in pulp,
as well as in separate repositories in the given product. All fields on both repositories contain correct information.
sambible marked this conversation as resolved.
Show resolved Hide resolved

:CaseImportance: High
"""
SMALL_REPO_NAME = 'arianna'
LARGE_REPO_NAME = 'fedora'
result = module_target_sat.execute(
f'podman pull registry.fedoraproject.org/{SMALL_REPO_NAME}'
)
assert result.status == 0
sambible marked this conversation as resolved.
Show resolved Hide resolved
result = module_target_sat.execute(
f'podman pull registry.fedoraproject.org/{LARGE_REPO_NAME}'
)
assert result.status == 0
sambible marked this conversation as resolved.
Show resolved Hide resolved
small_image_id = module_target_sat.execute(f'podman images {SMALL_REPO_NAME} -q')
assert small_image_id
sambible marked this conversation as resolved.
Show resolved Hide resolved
large_image_id = module_target_sat.execute(f'podman images {LARGE_REPO_NAME} -q')
assert small_image_id
sambible marked this conversation as resolved.
Show resolved Hide resolved
# Podman pushes require lowercase org and product labels
small_repo_cmd = (
f'{str.lower(module_org.label)}/{str.lower(module_product.label)}/{SMALL_REPO_NAME}'
sambible marked this conversation as resolved.
Show resolved Hide resolved
)
large_repo_cmd = (
f'{str.lower(module_org.label)}/{str.lower(module_product.label)}/{LARGE_REPO_NAME}'
sambible marked this conversation as resolved.
Show resolved Hide resolved
)
# Push both repos
module_target_sat.execute(
f'podman push --creds admin:changeme {small_image_id.stdout.strip()} {module_target_sat.hostname}/{small_repo_cmd}'
)
module_target_sat.execute(
f'podman push --creds admin:changeme {large_image_id.stdout.strip()} {module_target_sat.hostname}/{large_repo_cmd}'
)
result = module_target_sat.execute('pulp container repository -t push list')
assert (
f'{str.lower(module_org.label)}/{str.lower(module_product.label)}/{SMALL_REPO_NAME}'
sambible marked this conversation as resolved.
Show resolved Hide resolved
in result.stdout
)
assert (
f'{str.lower(module_org.label)}/{str.lower(module_product.label)}/{LARGE_REPO_NAME}'
sambible marked this conversation as resolved.
Show resolved Hide resolved
in result.stdout
)
product_contents = module_product.read()
for repo in product_contents.repository:
repo = module_target_sat.api.Repository(id=repo.id).read()
if repo.name == SMALL_REPO_NAME:
small_repo = repo
if repo.name == LARGE_REPO_NAME:
large_repo = repo
assert small_repo.name == SMALL_REPO_NAME
assert small_repo.label == SMALL_REPO_NAME
assert large_repo.name == LARGE_REPO_NAME
assert large_repo.label == LARGE_REPO_NAME
assert small_repo.is_container_push is True
assert large_repo.is_container_push is True
sambible marked this conversation as resolved.
Show resolved Hide resolved

def test_cv_podman(
self, module_target_sat, module_product, module_org, module_lce, enable_podman
):
"""Push a container image to Pulp and perform various Content View actions with it

:id: 2f2bfbea-a028-44fc-9802-e9bf19b8bc51

:steps:
1. Using podman, an image from the fedoraproject registry and publish it to pulp
sambible marked this conversation as resolved.
Show resolved Hide resolved
2. Add this image to a Content View
3. Publish and Promote the CV

:expectedresults: Podman published images can be added to a CV, and that CV can be published
and promoted successfully. You can filter podman repositories in a CV, and you can also delete
podman repositories and CVs will work properly.
sambible marked this conversation as resolved.
Show resolved Hide resolved

:CaseImportance: High
"""
REPO_NAME = 'fedora'
result = module_target_sat.execute(f'podman pull registry.fedoraproject.org/{REPO_NAME}')
assert result.status == 0
sambible marked this conversation as resolved.
Show resolved Hide resolved
large_image_id = module_target_sat.execute(f'podman images {REPO_NAME} -q')
assert large_image_id
sambible marked this conversation as resolved.
Show resolved Hide resolved
large_repo_cmd = (
f'{str.lower(module_org.label)}/{str.lower(module_product.label)}/{REPO_NAME}'
sambible marked this conversation as resolved.
Show resolved Hide resolved
)
module_target_sat.execute(
f'podman push --creds admin:changeme {large_image_id.stdout.strip()} {module_target_sat.hostname}/{large_repo_cmd}'
)
repo = module_target_sat.api.Repository(id=module_product.read().repository[0].id).read()
# Create a CV and add Podman repo to it, then publish
cv = module_target_sat.api.ContentView(organization=module_org.id).create()
cv.repository = [repo]
cv = cv.update(['repository'])
cv.publish()
cv = cv.read()
cvv = cv.version[0].read()
cvv.promote(data={'environment_ids': module_lce.id})
cvv_repo = cv.repository[0].read()
assert cvv_repo.id == repo.id
assert cvv.docker_tag_count == 1
assert cvv.docker_repository_count == 1
# Check to see if a CV with a Podman Repo can have it's repositories' metadata republished.
assert cvv.republish_repositories()
# Check to see if Podman Repos can be filtered by Tag
cv_filter = module_target_sat.api.DockerContentViewFilter(
content_view=cv,
inclusion=False,
).create()
module_target_sat.api.ContentViewFilterRule(
content_view_filter=cv_filter, name='latest'
).create()
cv.publish()
cv = cv.read()
cvv = cv.read().version[0].read()
assert cvv.docker_tag_count == 0
assert cvv.docker_repository_count == 1
# Check to see if Podman Repos can be deleted, and CVs behave properly
with pytest.raises(HTTPError):
repo.delete()
# assert repo can be deleted with remove_from_content_view_versions = True
assert repo.delete_with_args(data={'remove_from_content_view_versions': True})
cvv = cv.read().version[0].read()
assert cvv.docker_tag_count == 0
assert cvv.docker_repository_count == 0
Loading