summaryrefslogtreecommitdiffstats
path: root/dovetail/testcase.py
diff options
context:
space:
mode:
authorhongbo tian <hongbo.tianhongbo@huawei.com>2016-11-29 01:31:04 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-29 01:31:04 +0000
commitcd94a6e124ae98f85bc2f7c3c26e052bb3f5e549 (patch)
tree6da81dc5e6badbafacfbc2e226260df2fb4f838a /dovetail/testcase.py
parent57e5b616ddbb32f87c660269642b8da86b30b3c1 (diff)
parent3bf95fd09e2128f1cd762905c5d69cf66b56fd75 (diff)
Merge "dovetail tool: testarea argument added"
Diffstat (limited to 'dovetail/testcase.py')
-rw-r--r--dovetail/testcase.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/dovetail/testcase.py b/dovetail/testcase.py
index 6f0552b6..b5d28aa1 100644
--- a/dovetail/testcase.py
+++ b/dovetail/testcase.py
@@ -155,10 +155,10 @@ class Testcase:
return None
-class Scenario:
+class Testsuite:
- def __init__(self, scenario):
- self.scenario = scenario
+ def __init__(self, testsuite):
+ self.testsuite = testsuite
self.testcase_list = {}
def get_test(self, testcase_name):
@@ -166,20 +166,20 @@ class Scenario:
return self.testcase_list[testcase_name]
return None
- scenario_list = {}
+ testsuite_list = {}
@classmethod
def load(cls):
- for root, dirs, files in os.walk(dt_config.CERT_PATH):
- for scenario_yaml in files:
- with open(os.path.join(root, scenario_yaml)) as f:
- scenario_yaml = yaml.safe_load(f)
- cls.scenario_list.update(scenario_yaml)
+ for root, dirs, files in os.walk(dt_config.COMPLIANCE_PATH):
+ for testsuite_yaml in files:
+ with open(os.path.join(root, testsuite_yaml)) as f:
+ testsuite_yaml = yaml.safe_load(f)
+ cls.testsuite_list.update(testsuite_yaml)
- logger.debug(cls.scenario_list)
+ logger.debug(cls.testsuite_list)
@classmethod
- def get(cls, scenario_name):
- if scenario_name in cls.scenario_list:
- return cls.scenario_list[scenario_name]
+ def get(cls, testsuite_name):
+ if testsuite_name in cls.testsuite_list:
+ return cls.testsuite_list[testsuite_name]
return None