| 139 | self.consumerTopicsString = "" |
| 140 | |
| 141 | def initWithKnownTestCasePathName(self, testCasePathName): |
| 142 | testcaseDirName = os.path.basename(testCasePathName) |
| 143 | self.testcaseResultsDict["_test_case_name"] = testcaseDirName |
| 144 | self.testCaseBaseDir = testCasePathName |
| 145 | self.testCaseLogsDir = self.testCaseBaseDir + "/logs" |
| 146 | self.testCaseDashboardsDir = self.testCaseBaseDir + "/dashboards" |
| 147 | |
| 148 | # find testcase properties json file |
| 149 | self.testcasePropJsonPathName = system_test_utils.get_testcase_prop_json_pathname(testCasePathName) |
| 150 | |
| 151 | # get the dictionary that contains the testcase arguments and description |
| 152 | self.testcaseNonEntityDataDict = system_test_utils.get_json_dict_data(self.testcasePropJsonPathName) |
| 153 | |
| 154 | def printTestCaseDescription(self, testcaseDirName): |
| 155 | testcaseDescription = "" |