How to use generateStats method of org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats

Source:ReadTestCaseExecutionByTag.java Github

copy

Full Screen

...113 jsonResponse.put("functionChart", generateFunctionChart(testCaseExecutions, Tag, statusFilter, countryFilter));114 }115 // Global executions stats per Status116 if (outputReport.isEmpty() || outputReport.contains("statsChart")) {117 jsonResponse.put("statsChart", generateStats(request, testCaseExecutions, statusFilter, countryFilter, true));118 }119 // BugTracker Recap120 if (outputReport.isEmpty() || outputReport.contains("bugTrackerStat")) {121 jsonResponse.put("bugTrackerStat", generateBugStats(request, testCaseExecutions, statusFilter, countryFilter));122 }123 // Labels Stats124 if (outputReport.isEmpty() || outputReport.contains("labelStat")) {125 jsonResponse.put("labelStat", generateLabelStats(appContext, request, testCaseExecutions, statusFilter, countryFilter));126 }127 if (!outputReport.isEmpty()) {128 //currently used to optimize the homePage129 if (outputReport.contains("totalStatsCharts") && !outputReport.contains("statsChart")) {130 jsonResponse.put("statsChart", generateStats(request, testCaseExecutions, statusFilter, countryFilter, false));131 }132 //currently used to optimize the homePage133 if (outputReport.contains("resendTag")) {134 jsonResponse.put("tag", Tag);135 }136 }137 Tag mytag = tagService.convert(tagService.readByKey(Tag));138 JSONObject tagJSON = convertTagToJSONObject(mytag);139 jsonResponse.put("tagObject", tagJSON);140 jsonResponse.put("tagDuration", (mytag.getDateEndQueue().getTime() - mytag.getDateCreated().getTime()) / 60000);141 answer.setItem(jsonResponse);142 answer.setResultMessage(answer.getResultMessage().resolveDescription("ITEM", "Tag Statistics").resolveDescription("OPERATION", "Read"));143 jsonResponse.put("messageType", answer.getResultMessage().getMessage().getCodeString());144 jsonResponse.put("message", answer.getResultMessage().getDescription());145 jsonResponse.put("sEcho", echo);146 response.getWriter().print(jsonResponse.toString());147 } catch (ParseException ex) {148 LOG.error("Error on main call : " + ex);149 } catch (CerberusException ex) {150 LOG.error("Error on main call : " + ex);151 } catch (JSONException ex) {152 LOG.error("Error on main call : " + ex);153 } catch (Exception ex) {154 LOG.error("Error on main call : " + ex);155 }156 }157 private JSONObject testCaseExecutionToJSONObject(TestCaseExecution testCaseExecution) throws JSONException {158 JSONObject result = new JSONObject();159 result.put("ID", String.valueOf(testCaseExecution.getId()));160 result.put("QueueID", String.valueOf(testCaseExecution.getQueueID()));161 result.put("Test", JavaScriptUtils.javaScriptEscape(testCaseExecution.getTest()));162 result.put("TestCase", JavaScriptUtils.javaScriptEscape(testCaseExecution.getTestCase()));163 result.put("Environment", JavaScriptUtils.javaScriptEscape(testCaseExecution.getEnvironment()));164 result.put("Start", testCaseExecution.getStart());165 result.put("End", testCaseExecution.getEnd());166 result.put("Country", JavaScriptUtils.javaScriptEscape(testCaseExecution.getCountry()));167 result.put("RobotDecli", JavaScriptUtils.javaScriptEscape(testCaseExecution.getRobotDecli()));168 result.put("ControlStatus", JavaScriptUtils.javaScriptEscape(testCaseExecution.getControlStatus()));169 result.put("ControlMessage", JavaScriptUtils.javaScriptEscape(testCaseExecution.getControlMessage()));170 result.put("Status", JavaScriptUtils.javaScriptEscape(testCaseExecution.getStatus()));171 result.put("NbExecutions", String.valueOf(testCaseExecution.getNbExecutions()));172 if (testCaseExecution.getQueueState() != null) {173 result.put("QueueState", JavaScriptUtils.javaScriptEscape(testCaseExecution.getQueueState()));174 }175 String bugId;176 String comment;177 String function;178 String shortDesc;179 if ((testCaseExecution.getTestCaseObj() != null) && (testCaseExecution.getTestCaseObj().getTest() != null)) {180 if (testCaseExecution.getApplicationObj() != null && testCaseExecution.getApplicationObj().getBugTrackerUrl() != null181 && !"".equals(testCaseExecution.getApplicationObj().getBugTrackerUrl()) && testCaseExecution.getTestCaseObj().getBugID() != null) {182 bugId = testCaseExecution.getApplicationObj().getBugTrackerUrl().replace("%BUGID%", testCaseExecution.getTestCaseObj().getBugID());183 bugId = new StringBuffer("<a href='")184 .append(bugId)185 .append("' target='reportBugID'>")186 .append(testCaseExecution.getTestCaseObj().getBugID())187 .append("</a>")188 .toString();189 } else {190 bugId = testCaseExecution.getTestCaseObj().getBugID();191 }192 comment = JavaScriptUtils.javaScriptEscape(testCaseExecution.getTestCaseObj().getComment());193 function = JavaScriptUtils.javaScriptEscape(testCaseExecution.getTestCaseObj().getFunction());194 shortDesc = testCaseExecution.getTestCaseObj().getDescription();195 } else {196 bugId = "";197 comment = "";198 function = "";199 shortDesc = "";200 }201 result.put("BugID", bugId);202 result.put("Priority", JavaScriptUtils.javaScriptEscape(String.valueOf(testCaseExecution.getTestCaseObj().getPriority())));203 result.put("Comment", comment);204 result.put("Function", function);205 result.put("ShortDescription", shortDesc);206 result.put("Application", JavaScriptUtils.javaScriptEscape(testCaseExecution.getApplication()));207 return result;208 }209 private JSONObject getStatusList(HttpServletRequest request) {210 JSONObject statusList = new JSONObject();211 try {212 statusList.put("OK", ParameterParserUtil.parseStringParam(request.getParameter("OK"), "off"));213 statusList.put("KO", ParameterParserUtil.parseStringParam(request.getParameter("KO"), "off"));214 statusList.put("NA", ParameterParserUtil.parseStringParam(request.getParameter("NA"), "off"));215 statusList.put("NE", ParameterParserUtil.parseStringParam(request.getParameter("NE"), "off"));216 statusList.put("PE", ParameterParserUtil.parseStringParam(request.getParameter("PE"), "off"));217 statusList.put("FA", ParameterParserUtil.parseStringParam(request.getParameter("FA"), "off"));218 statusList.put("CA", ParameterParserUtil.parseStringParam(request.getParameter("CA"), "off"));219 statusList.put("QU", ParameterParserUtil.parseStringParam(request.getParameter("QU"), "off"));220 } catch (JSONException ex) {221 LOG.error("Error on getStatusList : " + ex);222 }223 return statusList;224 }225 private JSONObject getCountryList(HttpServletRequest request, ApplicationContext appContext) {226 JSONObject countryList = new JSONObject();227 try {228 IInvariantService invariantService = appContext.getBean(InvariantService.class);229 AnswerList answer = invariantService.readByIdname("COUNTRY"); //TODO: handle if the response does not turn ok230 for (Invariant country : (List<Invariant>) answer.getDataList()) {231 countryList.put(country.getValue(), ParameterParserUtil.parseStringParam(request.getParameter(country.getValue()), "off"));232 }233 } catch (JSONException ex) {234 LOG.error("Error on getCountryList : " + ex);235 }236 return countryList;237 }238 private JSONObject generateTestCaseExecutionTable(ApplicationContext appContext, List<TestCaseExecution> testCaseExecutions, JSONObject statusFilter, JSONObject countryFilter) {239 JSONObject testCaseExecutionTable = new JSONObject();240 LinkedHashMap<String, JSONObject> ttc = new LinkedHashMap<String, JSONObject>();241 LinkedHashMap<String, JSONObject> columnMap = new LinkedHashMap<String, JSONObject>();242 testCaseLabelService = appContext.getBean(ITestCaseLabelService.class);243 AnswerList testCaseLabelList = testCaseLabelService.readByTestTestCase(null, null);244 for (TestCaseExecution testCaseExecution : testCaseExecutions) {245 try {246 String controlStatus = testCaseExecution.getControlStatus();247 // We check is Country and status is inside the fitered values.248 if (statusFilter.get(controlStatus).equals("on") && countryFilter.get(testCaseExecution.getCountry()).equals("on")) {249 JSONObject executionJSON = testCaseExecutionToJSONObject(testCaseExecution);250 String execKey = testCaseExecution.getEnvironment() + " " + testCaseExecution.getCountry() + " " + testCaseExecution.getRobotDecli();251 String testCaseKey = testCaseExecution.getTest() + "_" + testCaseExecution.getTestCase();252 JSONObject execTab = new JSONObject();253 JSONObject ttcObject = new JSONObject();254 if (ttc.containsKey(testCaseKey)) {255 // We add an execution entry into the testcase line.256 ttcObject = ttc.get(testCaseKey);257 execTab = ttcObject.getJSONObject("execTab");258 execTab.put(execKey, executionJSON);259 ttcObject.put("execTab", execTab);260 Integer toto = (Integer) ttcObject.get("NbExecutionsTotal");261 toto += testCaseExecution.getNbExecutions() - 1;262 ttcObject.put("NbExecutionsTotal", toto);263 } else {264 // We add a new testcase entry (with The current execution).265 ttcObject.put("test", testCaseExecution.getTest());266 ttcObject.put("testCase", testCaseExecution.getTestCase());267 ttcObject.put("shortDesc", testCaseExecution.getDescription());268 ttcObject.put("status", testCaseExecution.getStatus());269 ttcObject.put("application", testCaseExecution.getApplication());270 boolean testExist = ((testCaseExecution.getTestCaseObj() != null) && (testCaseExecution.getTestCaseObj().getTest() != null));271 if (testExist) {272 ttcObject.put("function", testCaseExecution.getTestCaseObj().getFunction());273 ttcObject.put("priority", testCaseExecution.getTestCaseObj().getPriority());274 ttcObject.put("comment", testCaseExecution.getTestCaseObj().getComment());275 if ((testCaseExecution.getApplicationObj() != null) && (testCaseExecution.getApplicationObj().getBugTrackerUrl() != null) && (testCaseExecution.getTestCaseObj().getBugID() != null)) {276 ttcObject.put("bugId", new JSONObject("{\"bugId\":\"" + testCaseExecution.getTestCaseObj().getBugID() + "\",\"bugTrackerUrl\":\"" + testCaseExecution.getApplicationObj().getBugTrackerUrl().replace("%BUGID%", testCaseExecution.getTestCaseObj().getBugID()) + "\"}"));277 } else {278 ttcObject.put("bugId", new JSONObject("{\"bugId\":\"\",\"bugTrackerUrl\":\"\"}"));279 }280 } else {281 ttcObject.put("function", "");282 ttcObject.put("priority", 0);283 ttcObject.put("comment", "");284 ttcObject.put("bugId", new JSONObject("{\"bugId\":\"\",\"bugTrackerUrl\":\"\"}"));285 }286 // Flag that report if test case still exist.287 ttcObject.put("testExist", testExist);288 // Adding nb of execution on retry.289 ttcObject.put("NbExecutionsTotal", (testCaseExecution.getNbExecutions() - 1));290 execTab.put(execKey, executionJSON);291 ttcObject.put("execTab", execTab);292 /**293 * Iterate on the label retrieved and generate HashMap294 * based on the key Test_TestCase295 */296 LinkedHashMap<String, JSONArray> testCaseWithLabel = new LinkedHashMap();297 for (TestCaseLabel label : (List<TestCaseLabel>) testCaseLabelList.getDataList()) {298 if (Label.TYPE_STICKER.equals(label.getLabel().getType())) { // We only display STICKER Type Label in Reporting By Tag Page..299 String key = label.getTest() + "_" + label.getTestcase();300 JSONObject jo = new JSONObject().put("name", label.getLabel().getLabel()).put("color", label.getLabel().getColor()).put("description", label.getLabel().getDescription());301 if (testCaseWithLabel.containsKey(key)) {302 testCaseWithLabel.get(key).put(jo);303 } else {304 testCaseWithLabel.put(key, new JSONArray().put(jo));305 }306 }307 }308 ttcObject.put("labels", testCaseWithLabel.get(testCaseExecution.getTest() + "_" + testCaseExecution.getTestCase()));309 }310 ttc.put(testCaseExecution.getTest() + "_" + testCaseExecution.getTestCase(), ttcObject);311 JSONObject column = new JSONObject();312 column.put("country", testCaseExecution.getCountry());313 column.put("environment", testCaseExecution.getEnvironment());314 column.put("robotDecli", testCaseExecution.getRobotDecli());315 columnMap.put(testCaseExecution.getRobotDecli() + "_" + testCaseExecution.getCountry() + "_" + testCaseExecution.getEnvironment(), column);316 }317 Map<String, JSONObject> treeMap = new TreeMap<String, JSONObject>(columnMap);318 testCaseExecutionTable.put("tableContent", ttc.values());319 testCaseExecutionTable.put("iTotalRecords", ttc.size());320 testCaseExecutionTable.put("iTotalDisplayRecords", ttc.size());321 testCaseExecutionTable.put("tableColumns", treeMap.values());322 } catch (JSONException ex) {323 LOG.error("Error on generateTestCaseExecutionTable : " + ex);324 } catch (Exception ex) {325 LOG.error("Error on generateTestCaseExecutionTable : " + ex);326 }327 }328 return testCaseExecutionTable;329 }330 private JSONObject generateFunctionChart(List<TestCaseExecution> testCaseExecutions, String tag, JSONObject statusFilter, JSONObject countryFilter) throws JSONException {331 JSONObject jsonResult = new JSONObject();332 Map<String, JSONObject> axisMap = new HashMap<String, JSONObject>();333 String globalStart = "";334 String globalEnd = "";335 long globalStartL = 0;336 long globalEndL = 0;337 String globalStatus = "Finished";338 for (TestCaseExecution testCaseExecution : testCaseExecutions) {339 String key;340 JSONObject control = new JSONObject();341 JSONObject function = new JSONObject();342 String controlStatus = testCaseExecution.getControlStatus();343 if (statusFilter.get(controlStatus).equals("on") && countryFilter.get(testCaseExecution.getCountry()).equals("on")) {344 if (testCaseExecution.getTestCaseObj() != null && testCaseExecution.getTestCaseObj().getFunction() != null && !"".equals(testCaseExecution.getTestCaseObj().getFunction())) {345 key = testCaseExecution.getTestCaseObj().getFunction();346 } else {347 key = testCaseExecution.getTest();348 }349 controlStatus = testCaseExecution.getControlStatus();350 control.put("value", 1);351 control.put("color", getColor(controlStatus));352 control.put("label", controlStatus);353 function.put("name", key);354 if (axisMap.containsKey(key)) {355 function = axisMap.get(key);356 if (function.has(controlStatus)) {357 int prec = function.getJSONObject(controlStatus).getInt("value");358 control.put("value", prec + 1);359 }360 }361 function.put(controlStatus, control);362 axisMap.put(key, function);363 }364 if (testCaseExecution.getStart() != 0) {365 if ((globalStartL == 0) || (globalStartL > testCaseExecution.getStart())) {366 globalStartL = testCaseExecution.getStart();367 globalStart = String.valueOf(new Date(testCaseExecution.getStart()));368 }369 }370 if (!testCaseExecution.getControlStatus().equalsIgnoreCase("PE") && testCaseExecution.getEnd() != 0) {371 if ((globalEndL == 0) || (globalEndL < testCaseExecution.getEnd())) {372 globalEndL = testCaseExecution.getEnd();373 globalEnd = String.valueOf(new Date(testCaseExecution.getEnd()));374 }375 }376 if (testCaseExecution.getControlStatus().equalsIgnoreCase("PE")) {377 globalStatus = "Pending...";378 }379 }380 Gson gson = new Gson();381 jsonResult.put("axis", axisMap.values());382 jsonResult.put("tag", tag);383 jsonResult.put("globalEnd", gson.toJson(new Timestamp(globalEndL)).replace("\"", ""));384 jsonResult.put("globalStart", globalStart);385 jsonResult.put("globalStatus", globalStatus);386 return jsonResult;387 }388 private JSONObject generateStats(HttpServletRequest request, List<TestCaseExecution> testCaseExecutions, JSONObject statusFilter, JSONObject countryFilter, boolean splitStats) throws JSONException {389 JSONObject jsonResult = new JSONObject();390 boolean env = request.getParameter("env") != null || !splitStats;391 boolean country = request.getParameter("country") != null || !splitStats;392 boolean robotDecli = request.getParameter("robotDecli") != null || !splitStats;393 boolean app = request.getParameter("app") != null || !splitStats;394 HashMap<String, SummaryStatisticsDTO> statMap = new HashMap<String, SummaryStatisticsDTO>();395 for (TestCaseExecution testCaseExecution : testCaseExecutions) {396 String controlStatus = testCaseExecution.getControlStatus();397 if (statusFilter.get(controlStatus).equals("on") && countryFilter.get(testCaseExecution.getCountry()).equals("on")) {398 StringBuilder key = new StringBuilder();399 key.append((env) ? testCaseExecution.getEnvironment() : "");400 key.append("_");401 key.append((country) ? testCaseExecution.getCountry() : "");402 key.append("_");...

Full Screen

Full Screen

generateStats

Using AI Code Generation

copy

Full Screen

1import org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag;2import java.io.File;3import java.io.FileNotFoundException;4import java.io.PrintWriter;5import java.util.ArrayList;6import java.util.List;7ReadTestCaseExecutionByTag readTestCaseExecutionByTag = new ReadTestCaseExecutionByTag();8List<String> tagList = new ArrayList<>();9tagList.add("TAG1");10tagList.add("TAG2");11String result = readTestCaseExecutionByTag.generateStats(tagList);12File file = new File("C:\\Users\\Public\\Documents\\cerberus\\test.txt");13try (PrintWriter out = new PrintWriter(file)) {14 out.println(result);15}

Full Screen

Full Screen

generateStats

Using AI Code Generation

copy

Full Screen

1$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}2$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}3$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}4$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}5$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}6$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}7$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}8$stats = ${org.cerberus.servlet.crud.testexecution.ReadTestCaseExecutionByTag.generateStats("MyTag")}

Full Screen

Full Screen

generateStats

Using AI Code Generation

copy

Full Screen

1[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())2[[]] #set($stats = $stats.get("stats"))3[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())4[[]] #set($stats = $stats.get("stats"))5[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())6[[]] #set($stats = $stats.get("stats"))7[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())8[[]] #set($stats = $stats.get("stats"))9[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())10[[]] #set($stats = $stats.get("stats"))11[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())12[[]] #set($stats = $stats.get("stats"))13[[]] #set($stats = $servletContext.getAttribute("ReadTestCaseExecutionByTag").generateStats())14[[]] #set($stats = $stats.get("stats"))

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful