From d6d8f355630760a1c035ea4fa40d96d9610d21c1 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 23 Jul 2018 00:07:07 -0400 Subject: [PATCH] validate: Let testsuites define scenarios path The code was not taking into account the fact that testsuite could be located in a different folder that the default one. Now the testsuite is responsible for providing a path if it wants to set extra scenarios or the user can set one by hand. --- tests/validate/geslaunch.py | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/tests/validate/geslaunch.py b/tests/validate/geslaunch.py index 162bdc8244..ad1e111fe1 100644 --- a/tests/validate/geslaunch.py +++ b/tests/validate/geslaunch.py @@ -280,9 +280,7 @@ Available options:""") "ges-projects"), help="Paths in which to look for moved medias") group.add_argument("--ges-scenario-paths", dest="scenarios_path", - default=os.path.join(utils.DEFAULT_GST_QA_ASSETS, - "ges", - "scenarios"), + default=None, help="Paths in which to look for moved medias") group.add_argument("-r", "--disable-recurse-paths", dest="disable_recurse", default=False, action="store_true", @@ -300,7 +298,7 @@ Available options:""") def list_tests(self): return self.tests - def register_defaults(self, project_paths=None): + def register_defaults(self, project_paths=None, scenarios_path=None): projects = list() all_scenarios = list() if not self.args: @@ -315,11 +313,15 @@ Available options:""") continue projects.append(utils.path2url(os.path.join(path, root, f))) - for root, dirs, files in os.walk(self.options.scenarios_path): - for f in files: - if not f.endswith(".scenario"): - continue - all_scenarios.append(os.path.join(root, f)) + if self.options.scenarios_path: + scenarios_path = self.options.scenarios_path + + if scenarios_path: + for root, dirs, files in os.walk(scenarios_path): + for f in files: + if not f.endswith(".scenario"): + continue + all_scenarios.append(os.path.join(root, f)) else: for proj_uri in self.args: if not utils.isuri(proj_uri): @@ -364,9 +366,10 @@ Available options:""") self.reporter, project, combination=comb) ) - for scenario in self._scenarios.discover_scenarios(all_scenarios): - classname = "scenario.%s" % scenario.name - self.add_test(GESScenarioTest(classname, - self.options, - self.reporter, - scenario=scenario)) \ No newline at end of file + if all_scenarios: + for scenario in self._scenarios.discover_scenarios(all_scenarios): + classname = "scenario.%s" % scenario.name + self.add_test(GESScenarioTest(classname, + self.options, + self.reporter, + scenario=scenario)) \ No newline at end of file