diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-09-01 11:30:43 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-09-04 09:26:19 +0000 |
commit | 6022ac2e68ece3720bcfa57b290d73ac0eb238c1 (patch) | |
tree | d451fe90d22c602f54e9f5b26d327837fe391f99 /src/onaptests/steps | |
parent | 27db04b176e4f9657603528c06e1febb04b5dd4d (diff) |
Add proxy support for pythonsdk-tests
Issue-ID: TEST-253
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Icc411e8418a698dd031bc5338d38311b85da113b
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'src/onaptests/steps')
-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.""" |