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

[main][storage] test coverage dataimportcron source pvc uptodated #597

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Ahmad-Hafe
Copy link
Contributor

@Ahmad-Hafe Ahmad-Hafe commented Mar 26, 2025

Short description:

qe coverage for new feature for dataimportcron, the feature is about:
A PVC from any namespace can be the source for a DataImportCron
Update detection when PVC is replaced

More details:

A PVC from any namespace can also be the source for a DataImportCron. The source digest is based on the PVC UID, which is polled according to the schedule, so when a new PVC is detected it will be imported.

What this PR does / why we need it:

adding test coverage to Verify_DataImportCron_with_PVC_source_is_ready after importing/cloning pvc

Which issue(s) this PR fixes:

addint test coverage for T2

Special notes for reviewer:
jira-ticket:

https://issues.redhat.com/browse/CNV-58329

@cnv-qe-bot1
Copy link

Report bugs in Issues

The following are automatically added:

  • Add reviewers from OWNER file (in the root of the repository) under reviewers section.
  • Set PR size label.
  • New issue is created for the PR. (Closed when PR is merged/closed)
  • Run pre-commit if .pre-commit-config.yaml exists in the repo.

Available user actions:

  • To mark PR as WIP comment /wip to the PR, To remove it from the PR comment /wip cancel to the PR.
  • To block merging of PR comment /hold, To un-block merging of PR comment /hold cancel.
  • To mark PR as verified comment /verified to the PR, to un-verify comment /verified cancel to the PR.
    verified label removed on each new commit push.
  • To cherry pick a merged PR comment /cherry-pick <target branch to cherry-pick to> in the PR.
    • Multiple target branches can be cherry-picked, separated by spaces. (/cherry-pick branch1 branch2)
    • Cherry-pick will be started when PR is merged
  • To build and push container image command /build-and-push-container in the PR (tag will be the PR number).
    • You can add extra args to the Podman build command
      • Example: /build-and-push-container --build-arg OPENSHIFT_PYTHON_WRAPPER_COMMIT=<commit_hash>
  • To add a label by comment use /<label name>, to remove, use /<label name> cancel
  • To assign reviewers based on OWNERS file use /assign-reviewers
  • To check if PR can be merged use /check-can-merge
  • to assign reviewer to PR use /assign-reviewer @<reviewer>
Supported /retest check runs
  • /retest tox: Retest tox
  • /retest build-container: Retest build-container
  • /retest all: Retest all
Supported labels
  • hold
  • verified
  • wip
  • lgtm

unprivileged_client=unprivileged_client,
name="data-import-cron-using-default-sc",
)
# @pytest.fixture()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove ?

create_dummy_first_consumer_pod(pvc=pvc)
pvc.wait_for_status(status=PersistentVolumeClaim.Status.BOUND, timeout=60)
yield pvc
# @pytest.fixture()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto..remove?

@Ahmad-Hafe Ahmad-Hafe force-pushed the PVC_SOURCE_DataImportCron_Test_coverage branch from 1b78428 to 6f8a0e9 Compare March 26, 2025 13:45
@Ahmad-Hafe Ahmad-Hafe changed the title test coverage dataimportcron source pvc uptodated [DO NOT REVIEW] test coverage dataimportcron source pvc uptodated Mar 26, 2025
@Ahmad-Hafe
Copy link
Contributor Author

/hold

@redhat-cnv-qe-bot1
Copy link

Ahmad-Hafe is not part of the approver, only approvers can mark pull request with hold

Copy link
Collaborator

@polarion-jenkins polarion-jenkins left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

D/S test tox -e verify-bugs-are-open failed: cnv-tests-tox-executor/9375

Comment on lines +35 to +39
dv.wait_for_status(
status=DataVolume.Status.IMPORT_IN_PROGRESS,
timeout=TIMEOUT_5MIN,
stop_status=DataVolume.Status.SUCCEEDED,
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To let it work with the WaitForFirstConsumer storage, let's remove this wait_for_status
And make sure your DV wasn't consumed (first consumer pod wasn't created)

Comment on lines +70 to +75
"sourceFormat": "pvc",
"volumeMode": storage_class_matrix__module__[storage_class_name_scope_module]["volume_mode"],
"storage": {
"storageClassName": storage_class_name_scope_module,
"accessModes": [storage_class_matrix__module__[storage_class_name_scope_module]["access_mode"]],
"resources": {"requests": {"storage": "20Gi"}},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can replace all this with only:

      storage:
        storageClassName: storage_class_name_scope_module
        resources:
          requests:
            storage: dv_source_for_data_import_cron.size
    status: {}

Comment on lines +24 to +27
@pytest.fixture()
def dv_vm_for_data_import_cron(
data_import_cron_pvc_source_namespace, storage_class_name_scope_module, rhel9_http_image_url
):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make separate fixtures for the DV and for the VM
You'll need the VM to write the data there
And you'll need the DV to access the PVC

def data_import_cron_pvc_source(
unprivileged_client,
data_import_cron_pvc_target_namespace,
storage_class_with_filesystem_volume_mode,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not needed

}
},
) as data_import_cron:
wait_for_condition_message_value(resource=data_import_cron, expected_message=LAST_IMPORT_IS_UP_TO_DATE_MESSAGE)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use wait_for_condition? Something like

        data_import_cron.wait_for_condition(
            condition=UpToDate,
            status=data_import_cron.Condition.Status.TRUE,
        )

@Ahmad-Hafe Ahmad-Hafe changed the title [DO NOT REVIEW][storage] test coverage dataimportcron source pvc uptodated [main][storage] test coverage dataimportcron source pvc uptodated Apr 3, 2025
@Ahmad-Hafe
Copy link
Contributor Author

/wip cancel

Comment on lines +487 to +492

def get_data_import_cron_conditions(namespace, name):
data_import_cron = DataImportCron(namespace=namespace, name=name)
for condition in data_import_cron.instance.status.get("conditions"):
if condition["type"] == "UpToDate":
return condition["status"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we will need this function, please move it to tests/storage/data_import_cron/utils.py



@pytest.fixture()
def data_import_cron_pvc_source_namespace(unprivileged_client):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can just use the namespace fixture for one of the namespaces

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants