summaryrefslogtreecommitdiffstats
path: root/vnftest/contexts
diff options
context:
space:
mode:
authorMoshe <moshehoa@amdocs.com>2018-04-08 21:37:43 +0300
committerMoshe <moshehoa@amdocs.com>2018-05-14 18:05:32 +0300
commit82aeca18c66dc4c312a57f24ed3c4c33a2063070 (patch)
tree9fad6581a0722e866b937cf3955b1e2d2cd6d4fa /vnftest/contexts
parentdcfc64ef46b52769f03b6ed06e23b455c8ed69e5 (diff)
Refactor api definition yamls to support jinja2
Issue-ID: VNFSDK-181 Change-Id: Ibff00e985f95b400f08d4de4021dc3a8ab235ad7 Signed-off-by: Moshe <moshehoa@amdocs.com> Support creation of multiple vf-modules per vnf Issue-ID: VNFSDK-264 Change-Id: I45054bc4bb721d7df89653e99fafe61297939504 Signed-off-by: Moshe <moshehoa@amdocs.com> fix tests Issue-ID: VNFSDK-264 Change-Id: I077289bfcd4c68b0191fd74c4e02e07a67f5104f Signed-off-by: Moshe <moshehoa@amdocs.com>
Diffstat (limited to 'vnftest/contexts')
-rw-r--r--vnftest/contexts/base.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/vnftest/contexts/base.py b/vnftest/contexts/base.py
index 6cb90e9..abfef57 100644
--- a/vnftest/contexts/base.py
+++ b/vnftest/contexts/base.py
@@ -24,11 +24,14 @@ class Context(object):
"""Class that represents a context in the logical model"""
list = []
vnf_descriptor = {}
+ creds = {}
@classmethod
- def load_vnf_descriptor(cls, vnf_descriptor_path):
+ def initialize(cls, vnf_descriptor_path):
with open(vnf_descriptor_path) as f:
cls.vnf_descriptor = yaml.safe_load(f)
+ for key, value in openstack_utils.get_credentials().iteritems():
+ cls.creds[key] = value
@staticmethod
def split_name(name, sep='.'):
@@ -41,17 +44,9 @@ class Context(object):
def __init__(self):
Context.list.append(self)
- self.context_params = None
def init(self, attrs):
- self.context_params = {}
- for key, value in Context.vnf_descriptor.iteritems():
- key = "context|vnf_descriptor|" + key
- self.context_params[key] = value
-
- for key, value in openstack_utils.get_credentials().iteritems():
- key = "context|creds|" + key
- self.context_params[key] = value
+ pass
@staticmethod
def get_cls(context_type):