1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
import logging
import time
from typing import Optional, TYPE_CHECKING
import pytest
import gitlab
import gitlab.base
import gitlab.exceptions
SLEEP_INTERVAL = 0.5
TIMEOUT = 60 # seconds before timeout will occur
MAX_ITERATIONS = int(TIMEOUT / SLEEP_INTERVAL)
def get_gitlab_plan(gl: gitlab.Gitlab) -> Optional[str]:
"""Determine the license available on the GitLab instance"""
try:
license = gl.get_license()
except gitlab.exceptions.GitlabLicenseError:
# Without a license we assume only Free features are available
return None
if TYPE_CHECKING:
assert isinstance(license["plan"], str)
return license["plan"]
def safe_delete(
object: gitlab.base.RESTObject,
*,
hard_delete: bool = False,
) -> None:
"""Ensure the object specified can not be retrieved. If object still exists after
timeout period, fail the test"""
manager = object.manager
for index in range(MAX_ITERATIONS):
try:
object = manager.get(object.get_id()) # type: ignore[attr-defined]
except gitlab.exceptions.GitlabGetError:
return
if index:
logging.info(f"Attempt {index+1} to delete {object!r}.")
try:
if hard_delete:
object.delete(hard_delete=True)
else:
object.delete()
except gitlab.exceptions.GitlabDeleteError:
logging.info(f"{object!r} already deleted.")
pass
time.sleep(SLEEP_INTERVAL)
pytest.fail(f"{object!r} was not deleted")
|