From 22664610f99038223f996ef1c1661872a92e4ee4 Mon Sep 17 00:00:00 2001 From: Lukasz Rajewski Date: Thu, 23 Dec 2021 13:40:11 +0100 Subject: [TEST] Basic CNF macro Basic CNF macro added with refactoring that enables debugging under IDE Also SDK upgraded to 9.2 what required adaptation in existing tests Issue-ID: TEST-376 Signed-off-by: Lukasz Rajewski Change-Id: I697857bc0c13e86b88b71c3b46e0c4b59751939c Signed-off-by: mrichomme --- src/onaptests/utils/resources.py | 21 +++++++++++++++++++++ src/onaptests/utils/simulators.py | 13 ------------- 2 files changed, 21 insertions(+), 13 deletions(-) create mode 100644 src/onaptests/utils/resources.py delete mode 100644 src/onaptests/utils/simulators.py (limited to 'src/onaptests/utils') diff --git a/src/onaptests/utils/resources.py b/src/onaptests/utils/resources.py new file mode 100644 index 0000000..46c6c6e --- /dev/null +++ b/src/onaptests/utils/resources.py @@ -0,0 +1,21 @@ +"""Standard functions for the simulator wrapper.""" +import os +from importlib.resources import path +import onaptests + + +def get_resource_location(relative_path: str): + return os.path.join(os.path.dirname(os.path.realpath(onaptests.__file__)), + relative_path) + + +def get_local_dir(): + """Get the default path for helm charts. + + Returns: + chart_directory (Path): + local helm chart folder relative to the package. + """ + with path('onaptests', 'templates') as templates: + chart_directory = templates / 'helm_charts' + return chart_directory diff --git a/src/onaptests/utils/simulators.py b/src/onaptests/utils/simulators.py deleted file mode 100644 index 08acdbd..0000000 --- a/src/onaptests/utils/simulators.py +++ /dev/null @@ -1,13 +0,0 @@ -"""Standard functions for the simulator wrapper.""" -from importlib.resources import path - -def get_local_dir(): - """Get the default path for helm charts. - - Returns: - chart_directory (Path): - local helm chart folder relative to the package. - """ - with path('onaptests', 'templates') as templates: - chart_directory = templates / 'helm_charts' - return chart_directory -- cgit 1.2.3-korg