aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/utils/resources.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/utils/resources.py')
-rw-r--r--src/onaptests/utils/resources.py21
1 files changed, 21 insertions, 0 deletions
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