Skip to content

Commit

Permalink
wait_for_dv_success: adapt to Populators, add stop_status optional arg (
Browse files Browse the repository at this point in the history
#1247) (#1255)

Changes in wait_for_dv_success:

1. Moving wait for PVC Bound to the end of the function
   because CSI storage is now using Populators for DataVolumes.
   With Populators, PVC gets Bound only after DV succeeded.

2. Adding new DV phase 'PendingPopulation'
   for DVs provisioned on CSI WFFC storage.

3. Adding 'stop_status' optional arg (function)
   to exit if stop_status is True.

Co-authored-by: Jenia Peimer <[email protected]>
  • Loading branch information
myakove and jpeimer authored Jul 19, 2023
1 parent 4804c9d commit ebe09c6
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 14 deletions.
6 changes: 5 additions & 1 deletion ocp_resources/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@
}
PROTOCOL_ERROR_EXCEPTION_DICT = {ProtocolError: []}
NOT_FOUND_ERROR_EXCEPTION_DICT = {NotFoundError: []}

TIMEOUT_10SEC = 10
TIMEOUT_1MINUTE = 60
TIMEOUT_4MINUTES = 240
TIMEOUT_2MINUTES = 2 * 60
TIMEOUT_4MINUTES = 4 * 60
TIMEOUT_10MINUTES = 10 * 60
74 changes: 61 additions & 13 deletions ocp_resources/datavolume.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# -*- coding: utf-8 -*-

from ocp_resources.constants import TIMEOUT_4MINUTES
from ocp_resources.constants import (
TIMEOUT_1MINUTE,
TIMEOUT_2MINUTES,
TIMEOUT_4MINUTES,
TIMEOUT_10MINUTES,
TIMEOUT_10SEC,
)
from ocp_resources.persistent_volume_claim import PersistentVolumeClaim
from ocp_resources.resource import NamespacedResource, Resource
from ocp_resources.utils import TimeoutExpiredError, TimeoutSampler
Expand All @@ -27,6 +31,7 @@ class Status(NamespacedResource.Status):
UPLOAD_READY = "UploadReady"
UNKNOWN = "Unknown"
WAIT_FOR_FIRST_CONSUMER = "WaitForFirstConsumer"
PENDING_POPULATION = "PendingPopulation"

class AccessMode:
"""
Expand Down Expand Up @@ -222,7 +227,7 @@ def wait_deleted(self, timeout=TIMEOUT_4MINUTES):
super().wait_deleted(timeout=timeout)
return self.pvc.wait_deleted(timeout=timeout)

def wait(self, timeout=600, failure_timeout=120):
def wait(self, timeout=TIMEOUT_10MINUTES, failure_timeout=TIMEOUT_2MINUTES):
self._check_none_pending_status(failure_timeout=failure_timeout)

# If DV's status is not Pending, continue with the flow
Expand All @@ -247,14 +252,14 @@ def scratch_pvc(self):
client=self.client,
)

def _check_none_pending_status(self, failure_timeout=120):
def _check_none_pending_status(self, failure_timeout=TIMEOUT_2MINUTES):
# Avoid waiting for "Succeeded" status if DV's in Pending/None status
sample = None
# if garbage collector is enabled, DV will be deleted after success
try:
for sample in TimeoutSampler(
wait_timeout=failure_timeout,
sleep=10,
sleep=TIMEOUT_10SEC,
func=lambda: self.exists,
):
# If DV status is Pending (or Status is not yet updated) continue to wait, else exit the wait loop
Expand All @@ -272,26 +277,69 @@ def _check_none_pending_status(self, failure_timeout=120):
self.logger.error(f"{self.name} status is {sample}")
raise

def wait_for_dv_success(self, timeout=600, failure_timeout=120):
def wait_for_dv_success(
self,
timeout=TIMEOUT_10MINUTES,
failure_timeout=TIMEOUT_2MINUTES,
stop_status_func=None,
*stop_status_func_args,
**stop_status_func_kwargs,
):
"""
Wait until DataVolume succeeded with or without DV Garbage Collection enabled
Args:
timeout (int): Time to wait for the DataVolume to succeed.
failure_timeout (int): Time to wait for the DataVolume to have not Pending/None status
stop_status_func (function): function that is called inside the TimeoutSampler
if it returns True - stop the Sampler and raise TimeoutExpiredError
Example:
def dv_is_not_progressing(dv):
return True if dv.instance.status.conditions.restartCount > 3 else False
def test_dv():
...
stop_status_func_kwargs = {"dv": dv}
dv.wait_for_dv_success(stop_status_func=dv_is_not_progressing, **stop_status_func_kwargs)
Returns:
bool: True if DataVolume succeeded.
"""
self.logger.info(f"Wait DV success for {timeout} seconds")
self._check_none_pending_status(failure_timeout=failure_timeout)
self.pvc.wait_for_status(
status=PersistentVolumeClaim.Status.BOUND, timeout=timeout

sample = None
status_of_dv_str = (
f"Status of {self.kind} '{self.name}' in namespace '{self.namespace}':\n"
)
# if garbage collector enabled, the DV deleted once succeeded
try:
for sample in TimeoutSampler(
sleep=1,
wait_timeout=timeout,
func=lambda: self.exists,
):
# DV reach to success if the status is succeeded or if the DV does not exists
# DV reach to success if the status is succeeded or if the DV does not exist
if sample is None or sample.status.phase == self.Status.SUCCEEDED:
return
break
elif stop_status_func and stop_status_func(
*stop_status_func_args, **stop_status_func_kwargs
):
raise TimeoutExpiredError(
value=(
f"Exited on the stop_status_func {stop_status_func.__name__}. "
f"{status_of_dv_str} {sample.status}"
)
)

except TimeoutExpiredError:
self.logger.error(f"Status of {self.kind} {self.name} is {sample}")
self.logger.error(f"{status_of_dv_str} {sample.status}")
raise

# For CSI storage, PVC gets Bound after DV succeeded
return self.pvc.wait_for_status(
status=PersistentVolumeClaim.Status.BOUND, timeout=TIMEOUT_1MINUTE
)

def delete(self, wait=False, timeout=TIMEOUT_4MINUTES, body=None):
"""
Delete DataVolume
Expand Down

0 comments on commit ebe09c6

Please sign in to comment.