-
Notifications
You must be signed in to change notification settings - Fork 25
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
base: main
Are you sure you want to change the base?
[main][storage] test coverage dataimportcron source pvc uptodated #597
Conversation
Report bugs in Issues The following are automatically added:
Available user actions:
Supported /retest check runs
Supported labels
|
unprivileged_client=unprivileged_client, | ||
name="data-import-cron-using-default-sc", | ||
) | ||
# @pytest.fixture() |
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.
remove ?
create_dummy_first_consumer_pod(pvc=pvc) | ||
pvc.wait_for_status(status=PersistentVolumeClaim.Status.BOUND, timeout=60) | ||
yield pvc | ||
# @pytest.fixture() |
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.
ditto..remove?
1b78428
to
6f8a0e9
Compare
/hold |
Ahmad-Hafe is not part of the approver, only approvers can mark pull request with hold |
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.
D/S test tox -e verify-bugs-are-open
failed: cnv-tests-tox-executor/9375
dv.wait_for_status( | ||
status=DataVolume.Status.IMPORT_IN_PROGRESS, | ||
timeout=TIMEOUT_5MIN, | ||
stop_status=DataVolume.Status.SUCCEEDED, | ||
) |
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.
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)
"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"}}, |
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.
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: {}
@pytest.fixture() | ||
def dv_vm_for_data_import_cron( | ||
data_import_cron_pvc_source_namespace, storage_class_name_scope_module, rhel9_http_image_url | ||
): |
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.
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, |
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.
Not needed
} | ||
}, | ||
) as data_import_cron: | ||
wait_for_condition_message_value(resource=data_import_cron, expected_message=LAST_IMPORT_IS_UP_TO_DATE_MESSAGE) |
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.
Can you use wait_for_condition? Something like
data_import_cron.wait_for_condition(
condition=UpToDate,
status=data_import_cron.Condition.Status.TRUE,
)
/wip cancel |
e2b742d
to
0f1f66b
Compare
|
||
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"] |
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.
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): |
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 can just use the namespace
fixture for one of the namespaces
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 aDataImportCron
. The source digest is based on thePVC
UID
, which is polled according to the schedule, so when a newPVC
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