diff --git a/pyproject.toml b/pyproject.toml index 61982c48c08..4f5c8af613f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ select = [ ] ignore = [ + "B019", # lru_cache can lead to memory leaks - acceptable tradeoff "E501", # line too long - handled by black "PT004", # pytest underscrore prefix for non-return fixtures "PT005", # pytest no underscrore prefix for return fixtures diff --git a/robottelo/host_helpers/cli_factory.py b/robottelo/host_helpers/cli_factory.py index ba82a80e7ff..efb5a8fb4b8 100644 --- a/robottelo/host_helpers/cli_factory.py +++ b/robottelo/host_helpers/cli_factory.py @@ -4,7 +4,7 @@ example: my_satellite.cli_factory.make_org() """ import datetime -from functools import partial +from functools import lru_cache, partial import inspect import os from os import chmod @@ -14,7 +14,6 @@ from time import sleep from box import Box -from cachetools import cachedmethod from fauxfactory import ( gen_alpha, gen_alphanumeric, @@ -250,6 +249,7 @@ def __init__(self, satellite): self._satellite = satellite self.__dict__.update(initiate_repo_helpers(self._satellite)) + @lru_cache def __getattr__(self, name): """We intercept the usual attribute behavior on this class to emulate make_entity methods The keys in the dictionary above correspond to potential make_ methods @@ -295,7 +295,7 @@ def _evaluate_functions(self, iterable): if not key.startswith('_') } - @cachedmethod + @lru_cache def _find_entity_class(self, entity_name): entity_name = entity_name.replace('_', '').lower() for name, class_obj in self._satellite.cli.__dict__.items(): diff --git a/robottelo/host_helpers/satellite_mixins.py b/robottelo/host_helpers/satellite_mixins.py index 312ec7e49f4..4b56326f8c1 100644 --- a/robottelo/host_helpers/satellite_mixins.py +++ b/robottelo/host_helpers/satellite_mixins.py @@ -1,10 +1,10 @@ import contextlib +from functools import lru_cache import io import os import random import re -from cachetools import cachedmethod import requests from robottelo.cli.proxy import CapsuleTunnelError @@ -235,7 +235,7 @@ def available_capsule_port(self): :rtype: int """ port_pool_range = settings.fake_capsules.port_range - if isinstance(port_pool_range, list): + if isinstance(port_pool_range, str): port_pool_range = tuple(port_pool_range.split('-')) if isinstance(port_pool_range, tuple) and len(port_pool_range) == 2: port_pool = range(int(port_pool_range[0]), int(port_pool_range[1])) @@ -358,6 +358,6 @@ def api_factory(self): self._api_factory = APIFactory(self) return self._api_factory - @cachedmethod + @lru_cache def ui_factory(self, session): return UIFactory(self, session=session) diff --git a/robottelo/hosts.py b/robottelo/hosts.py index ed313eaeede..8e48f963fe1 100644 --- a/robottelo/hosts.py +++ b/robottelo/hosts.py @@ -17,7 +17,6 @@ from box import Box from broker import Broker from broker.hosts import Host -from cachetools import cachedmethod from dynaconf.vendor.box.exceptions import BoxKeyError from fauxfactory import gen_alpha, gen_string from manifester import Manifester @@ -2283,7 +2282,7 @@ def get_rhsso_client_id(self): break return client_id - @cachedmethod + @lru_cache def get_rhsso_user_details(self, username): """Getter method to receive the user id""" result = self.execute( @@ -2292,7 +2291,7 @@ def get_rhsso_user_details(self, username): result_json = json.loads(result.stdout) return result_json[0] - @cachedmethod + @lru_cache def get_rhsso_groups_details(self, group_name): """Getter method to receive the group id""" result = self.execute(f"{KEY_CLOAK_CLI} get groups -r {settings.rhsso.realm}")