diff options
Diffstat (limited to 'src/onaptests/steps/base.py')
-rw-r--r-- | src/onaptests/steps/base.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/onaptests/steps/base.py b/src/onaptests/steps/base.py index 5f66935..5407a85 100644 --- a/src/onaptests/steps/base.py +++ b/src/onaptests/steps/base.py @@ -4,6 +4,7 @@ import logging.config from abc import ABC, abstractmethod from typing import List from onapsdk.configuration import settings +from onapsdk.aai.business import Customer class BaseStep(ABC): """Base step class.""" @@ -18,6 +19,12 @@ class BaseStep(ABC): super().__init_subclass__() cls._logger: logging.Logger = logging.getLogger("") logging.config.dictConfig(settings.LOG_CONFIG) + # Setup Proxy if SOCK_HTTP is defined in settings + try: + cls.set_proxy(settings.SOCK_HTTP) + except AttributeError: + pass + def __init__(self, cleanup: bool = False) -> None: """Step initialization. @@ -30,8 +37,6 @@ class BaseStep(ABC): self._cleanup: bool = cleanup self._parent: "BaseStep" = None - - def add_step(self, step: "BaseStep") -> None: """Add substep. @@ -83,6 +88,14 @@ class BaseStep(ABC): for step in self._steps: step.cleanup() + @classmethod + def set_proxy(cls, sock_http): + """Set sock proxy.""" + onap_proxy = {} + onap_proxy['http'] = sock_http + onap_proxy['https'] = sock_http + Customer.set_proxy(onap_proxy) + class YamlTemplateBaseStep(BaseStep, ABC): """Base YAML template step.""" |