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

fix recovery points test cases for release 2.0 #531

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@
- actual_expiration_time == expected_expiration_time
- result.response.status == "COMPLETE"
- result.response.recovery_point_type == "CRASH_CONSISTENT"
- result.response.vm_recovery_points[0].vm_ext_id == "{{ vm_ext_id_1 }}"
- result.response.vm_recovery_points[1].vm_ext_id == "{{ vm_ext_id_2 }}"
- result.response.vm_recovery_points[0].vm_ext_id in "{{ vm_todelete[0:2] }}"
- result.response.vm_recovery_points[1].vm_ext_id in "{{ vm_todelete[0:2] }}"
fail_msg: "Unable to create VM recovery point with multiple VMs"
success_msg: "VM recovery point created successfully with multiple VMs"

Expand Down Expand Up @@ -328,8 +328,8 @@
- actual_expiration_time == expected_expiration_time
- result.response.status == "COMPLETE"
- result.response.recovery_point_type == "CRASH_CONSISTENT"
- result.response.volume_group_recovery_points[0].volume_group_ext_id == "{{ vg_ext_id_1 }}"
- result.response.volume_group_recovery_points[1].volume_group_ext_id == "{{ vg_ext_id_2 }}"
- result.response.volume_group_recovery_points[0].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
- result.response.volume_group_recovery_points[1].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
fail_msg: "Unable to create VG recovery point with multiple VGs"
success_msg: "VG recovery point created successfully with multiple VGs"

Expand Down Expand Up @@ -370,8 +370,8 @@
- actual_expiration_time == expected_expiration_time
- result.response.status == "COMPLETE"
- result.response.recovery_point_type == "CRASH_CONSISTENT"
- result.response.vm_recovery_points[0].vm_ext_id == "{{ vm_ext_id_1 }}"
- result.response.vm_recovery_points[1].vm_ext_id == "{{ vm_ext_id_2 }}"
- result.response.vm_recovery_points[0].vm_ext_id in "{{ vm_todelete[0:2] }}"
- result.response.vm_recovery_points[1].vm_ext_id in "{{ vm_todelete[0:2] }}"
- result.response.volume_group_recovery_points[0].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
- result.response.volume_group_recovery_points[1].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
- result.task_ext_id is defined
Expand Down Expand Up @@ -588,8 +588,8 @@
- result.response.ext_id == "{{ recovery_point_ext_id_2 }}"
- result.response.name == "{{ recovery_point_name }}_2"
- result.response.recovery_point_type == "CRASH_CONSISTENT"
- result.response.vm_recovery_points[0].vm_ext_id == "{{ vm_ext_id_1 }}"
- result.response.vm_recovery_points[1].vm_ext_id == "{{ vm_ext_id_2 }}"
- result.response.vm_recovery_points[0].vm_ext_id in "{{ vm_todelete[0:2] }}"
- result.response.vm_recovery_points[1].vm_ext_id in "{{ vm_todelete[0:2] }}"
- result.response.vm_recovery_points[0].ext_id is defined
- result.response.vm_recovery_points[1].ext_id is defined
fail_msg: "Unable to get recovery point details"
Expand Down Expand Up @@ -701,8 +701,8 @@
- result.response.ext_id == "{{ recovery_point_ext_id_4 }}"
- result.response.name == "{{ recovery_point_name }}_4"
- result.response.recovery_point_type == "CRASH_CONSISTENT"
- result.response.volume_group_recovery_points[0].volume_group_ext_id == "{{ vg_ext_id_1 }}"
- result.response.volume_group_recovery_points[1].volume_group_ext_id == "{{ vg_ext_id_2 }}"
- result.response.volume_group_recovery_points[0].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
- result.response.volume_group_recovery_points[1].volume_group_ext_id in "{{ vg_todelete[0:2] }}"
- result.response.volume_group_recovery_points[0].ext_id is defined
- result.response.volume_group_recovery_points[1].ext_id is defined
fail_msg: "Unable to get recovery point details"
Expand Down
Loading