How to use updateResultCounts method of com.testsigma.service.TestPlanResultService class

Best Testsigma code snippet using com.testsigma.service.TestPlanResultService.updateResultCounts

Source:TestDeviceResultService.java Github

copy

Full Screen

...107 StatusConstant.STATUS_COMPLETED, message, 0L, currentTime, currentTime, testDeviceResult.getId(),108 StatusConstant.STATUS_COMPLETED);109 List<TestSuiteResult> suiteResultList = this.testSuiteResultService.findAllByEnvironmentResultId(testDeviceResult.getId());110 suiteResultList.forEach(result -> {111 this.testSuiteResultService.updateResultCounts(result.getId());112 });113 }114 public void markEnvironmentResultAsInPreFlight(TestDeviceResult testDeviceResult, StatusConstant inStatus) throws ResourceNotFoundException {115 log.info(String.format("Updating environment result with status - %s, message - %s where environment result id " +116 "is - %s ", StatusConstant.STATUS_PRE_FLIGHT, AutomatorMessages.MSG_EXECUTION_PRE_FLIGHT, testDeviceResult.getId()));117 testDeviceResult.setExecutionInitiatedOn(new Timestamp(java.lang.System.currentTimeMillis()));118 testDeviceResult.setStatus(StatusConstant.STATUS_PRE_FLIGHT);119 testDeviceResult.setMessage(AutomatorMessages.MSG_EXECUTION_PRE_FLIGHT);120 this.update(testDeviceResult);121 Timestamp currentTime = new Timestamp(java.lang.System.currentTimeMillis());122 this.testSuiteResultService.updateResult(ResultConstant.QUEUED, StatusConstant.STATUS_PRE_FLIGHT,123 AutomatorMessages.MSG_EXECUTION_PRE_FLIGHT, 0L,124 currentTime, currentTime, testDeviceResult.getId(), inStatus125 );126 this.testCaseResultService.updateResultByEnvironmentId(ResultConstant.QUEUED, StatusConstant.STATUS_PRE_FLIGHT,127 AutomatorMessages.MSG_EXECUTION_PRE_FLIGHT, 0L,128 currentTime, currentTime, testDeviceResult.getId(), inStatus129 );130 }131 public void markEnvironmentResultAsInProgress(TestDeviceResult testDeviceResult, StatusConstant inStatus,132 Boolean cascade) {133 log.info("Moving EnvironmentResult[" + testDeviceResult.getId() + "] from status " + testDeviceResult.getStatus()134 + " to STATUS_IN_PROGRESS");135 if (testDeviceResult.getStatus() != StatusConstant.STATUS_IN_PROGRESS) {136 log.info(String.format("Updating environment result with status - %s, message - %s where environment result id " +137 "is - %s ", StatusConstant.STATUS_IN_PROGRESS, AutomatorMessages.MSG_EXECUTION_IN_PROGRESS, testDeviceResult.getId()));138 testDeviceResult.setExecutionInitiatedOn(new Timestamp(java.lang.System.currentTimeMillis()));139 testDeviceResult.setStatus(StatusConstant.STATUS_IN_PROGRESS);140 testDeviceResult.setMessage(AutomatorMessages.MSG_EXECUTION_IN_PROGRESS);141 this.update(testDeviceResult);142 }143 if (cascade) {144 Timestamp currentTime = new Timestamp(java.lang.System.currentTimeMillis());145 this.testSuiteResultService.updateResult(ResultConstant.QUEUED, StatusConstant.STATUS_IN_PROGRESS,146 AutomatorMessages.MSG_EXECUTION_IN_PROGRESS, 0L,147 currentTime, currentTime, testDeviceResult.getId(), inStatus148 );149 this.testCaseResultService.updateResultByEnvironmentId(ResultConstant.QUEUED, StatusConstant.STATUS_IN_PROGRESS,150 AutomatorMessages.MSG_EXECUTION_IN_PROGRESS, 0L,151 currentTime, currentTime, testDeviceResult.getId(), inStatus152 );153 }154 }155 public void markEnvironmentResultAsFailed(TestDeviceResult testDeviceResult, String message, StatusConstant inStatus) {156 log.info(String.format("Updating environment result with result - %s, status - %s, message - %s where environment " +157 "result id is - %s ", ResultConstant.FAILURE, StatusConstant.STATUS_COMPLETED, message, testDeviceResult.getId()));158 Timestamp currentTime = new Timestamp(java.lang.System.currentTimeMillis());159 testDeviceResult.setResult(ResultConstant.FAILURE);160 testDeviceResult.setStatus(StatusConstant.STATUS_COMPLETED);161 testDeviceResult.setMessage(message);162 testDeviceResult.setEndTime(currentTime);163 testDeviceResult.setDuration(currentTime.getTime() - testDeviceResult.getStartTime().getTime());164 this.update(testDeviceResult);165 List<TestSuiteResult> testSuiteResults = this.testSuiteResultService.findPendingTestSuiteResults(166 testDeviceResult, inStatus);167 testDeviceResult.setSuiteResults(testSuiteResults);168 for (TestSuiteResult testSuiteResult : testDeviceResult.getSuiteResults()) {169 log.info(String.format("Updating test suite result with result - %s, status - %s, message - %s where test suite " +170 "result id is - %s ", ResultConstant.FAILURE, StatusConstant.STATUS_COMPLETED, message, testSuiteResult.getId()));171 testSuiteResult.setResult(ResultConstant.FAILURE);172 testSuiteResult.setStatus(StatusConstant.STATUS_COMPLETED);173 testSuiteResult.setMessage(message);174 testSuiteResult.setStartTime(currentTime);175 testSuiteResult.setEndTime(currentTime);176 testSuiteResult.setDuration(0L);177 testSuiteResultService.update(testSuiteResult);178 this.testCaseResultService.updateResultByTestSuiteId(ResultConstant.FAILURE, StatusConstant.STATUS_COMPLETED,179 message, 0L, currentTime, currentTime, testSuiteResult.getId(), inStatus180 );181 }182 }183 public void updateEnvironmentConsolidateResult(Long environmentResultId) {184 testDeviceResultRepository.updateEnvironmentConsolidateResult(environmentResultId);185 }186 public void updateEnvironmentConsolidatedResults(TestDeviceResult testDeviceResult) throws TestsigmaException {187 try {188 Integer pendingTestSuiteResultCount = testSuiteResultService189 .countAllByEnvironmentResultIdAndStatusIsNot(testDeviceResult.getId(), StatusConstant.STATUS_COMPLETED);190 if (pendingTestSuiteResultCount == 0) {191 ResultConstant maxResult = testSuiteResultService.findMaxResultByEnvironmentResultId(testDeviceResult.getId());192 log.info("All test suite results in environment result[" + testDeviceResult.getId()193 + "] are done. Updating the environment result with final result - " + maxResult);194 String message = ResultConstant.SUCCESS.equals(maxResult) ? AutomatorMessages.MSG_ENVIRONMENT_COMPLETED :195 (ResultConstant.STOPPED.equals(maxResult)) ?196 AutomatorMessages.MSG_TEST_PLAN_STOPPED : AutomatorMessages.MSG_ENVIRONMENT_FAILURE;197 testDeviceResult.setResult(maxResult);198 testDeviceResult.setStatus(StatusConstant.STATUS_COMPLETED);199 testDeviceResult.setMessage(message);200 testDeviceResult.setEndTime(new Timestamp(java.lang.System.currentTimeMillis()));201 testDeviceResult.setDuration(testDeviceResult.getEndTime().getTime() - testDeviceResult.getStartTime().getTime());202 testDeviceResultRepository.save(testDeviceResult);203 this.updateResultCounts(testDeviceResult.getId());204 } else {205 log.info("Some test suite results in environment result[" + testDeviceResult.getTestPlanResultId()206 + "] are still pending. Waiting for them to finish before updating the final result");207 testDeviceResult.setResult(ResultConstant.QUEUED);208 testDeviceResult.setStatus(StatusConstant.STATUS_IN_PROGRESS);209 testDeviceResult.setMessage(AutomatorMessages.MSG_EXECUTION_IN_PROGRESS);210 testDeviceResult.setEndTime(null);211 testDeviceResult.setDuration(0L);212 testDeviceResultRepository.save(testDeviceResult);213 }214 } catch (Exception e) {215 throw new TestsigmaException(e.getMessage(), e);216 }217 }218 public void updateExecutionConsolidatedResults(Long testPlanResultId, Boolean updateMaxStatus)219 throws TestsigmaException {220 try {221 TestPlanResult testPlanResult = testPlanResultService.find(testPlanResultId);222 Integer incompleteEnvironments = this.countByTestPlanResultIdAndStatusIsNot(testPlanResultId,223 StatusConstant.STATUS_COMPLETED);224 if (incompleteEnvironments == 0) {225 ResultConstant maxResult = this.maxResultByTestPlanResultId(testPlanResultId);226 log.info("All environment results in execution result[" + testPlanResultId227 + "] are done. Updating the test plan result with final result. Max Result - " + maxResult);228 testPlanResultService.updateExecutionResult(maxResult, testPlanResult);229 testPlanResultService.updateResultCounts(testPlanResult);230 } else {231 log.info("Some environment results in execution result[" + testPlanResultId232 + "] are still pending. Waiting for them to finish before updating the final result");233 if (updateMaxStatus) {234 StatusConstant maxStatus = this.maxStatusByExecutionRunId(testPlanResultId);235 if ((maxStatus == StatusConstant.STATUS_COMPLETED) || (maxStatus == StatusConstant.STATUS_PRE_FLIGHT)) {236 maxStatus = StatusConstant.STATUS_IN_PROGRESS;237 }238 log.info("Received update request for max status for execution - " + testPlanResultId239 + "]. Updating the test plan result with max status. Max Status - " + maxStatus);240 String message = (maxStatus == StatusConstant.STATUS_IN_PROGRESS) ? AutomatorMessages.MSG_EXECUTION_IN_PROGRESS :241 (maxStatus == StatusConstant.STATUS_QUEUED) ? AutomatorMessages.MSG_EXECUTION_QUEUED :242 AutomatorMessages.MSG_EXECUTION_IN_PROGRESS;243 testPlanResultService.markTestPlanResultstatus(testPlanResult, maxStatus, message);244 }245 }246 } catch (Exception e) {247 throw new TestsigmaException(e.getMessage(), e);248 }249 }250 public void updateResultCounts(Long environmentResultId) {251 this.testDeviceResultRepository.updateTotalTestCaseResultsCount(environmentResultId);252 this.testDeviceResultRepository.updatePassedTestCaseResultsCount(environmentResultId);253 this.testDeviceResultRepository.updateFailedTestCaseResultsCount(environmentResultId);254 this.testDeviceResultRepository.updateAbortedTestCaseResultsCount(environmentResultId);255 this.testDeviceResultRepository.updateNotExecutedTestCaseResultsCount(environmentResultId);256 this.testDeviceResultRepository.updateQueuedTestCaseResultsCount(environmentResultId);257 this.testDeviceResultRepository.updateStoppedTestCaseResultsCount(environmentResultId);258 }259 public void sendPendingTestPlans() {260 List<Long> environmentResultIds = testDeviceResultRepository.findAllPendingEnvironments();261 List<TestDeviceResult> testDeviceResults = testDeviceResultRepository.findAllById(environmentResultIds);262 if (testDeviceResults.size() > 0) {263 log.info("Found " + testDeviceResults.size() + " pending environments, proceeding with execution...");264 if (!testDeviceResults.isEmpty()) {265 try {266 Map<Long, List<TestDeviceResult>> envResultMap = new HashMap<>();267 Map<Long, AbstractTestPlan> executionMap = new HashMap<>();268 Map<Long, TestPlanResult> testPlanResultMap = new HashMap<>();269 for (TestDeviceResult pendingTestDeviceResult : testDeviceResults) {270 TestPlanResult pendingTestPlanResult = testPlanResultService.find(271 pendingTestDeviceResult.getTestPlanResultId());272 AbstractTestPlan execution;273 if (pendingTestPlanResult.getTestPlan() != null)274 execution = pendingTestPlanResult.getTestPlan();275 else276 execution = pendingTestPlanResult.getDryTestPlan();277 List<TestDeviceResult> pendingTestDeviceResults = envResultMap.getOrDefault(278 execution.getId(), new ArrayList<>());279 pendingTestDeviceResults.add(pendingTestDeviceResult);280 envResultMap.put(execution.getId(), pendingTestDeviceResults);281 executionMap.put(execution.getId(), execution);282 testPlanResultMap.put(execution.getId(), pendingTestPlanResult);283 }284 for (Long key : envResultMap.keySet()) {285 AbstractTestPlan testPlan = executionMap.get(key);286 TestPlanResult testPlanResult = testPlanResultMap.get(key);287 List<TestDeviceResult> envResults = envResultMap.get(key);288 try {289 AgentExecutionService agentExecutionService = agentExecutionServiceObjectFactory.getObject();290 agentExecutionService.setTestPlan(testPlan);291 agentExecutionService.setTestPlanResult(testPlanResult);292 agentExecutionService.processResultEntries(envResults, StatusConstant.STATUS_QUEUED);293 } catch (Exception e) {294 log.error(e.getMessage(), e);295 String message = " Error while sending pending test plans for test plan result - " + testPlanResult.getId();296 log.error(message);297 throw e;298 }299 }300 } catch (Exception e) {301 log.error(e.getMessage(), e);302 String environmentIds = testDeviceResults.stream().map(er -> er.getId().toString())303 .collect(Collectors.joining(","));304 String message = "Error while processing environment results [" + environmentIds + "]";305 log.error(message);306 }307 }308 } else {309 log.info("There are no pending environments to run");310 }311 }312 public List<EnvironmentEntityDTO> getHybridEnvironmentEntitiesInPreFlight(List<TestDeviceResult> testDeviceResults) {313 List<EnvironmentEntityDTO> environmentEntityDTOS = new ArrayList<>();314 Map<Long, List<TestDeviceResult>> envResultMap = new HashMap<>();315 Map<Long, AbstractTestPlan> executionMap = new HashMap<>();316 Map<Long, TestPlanResult> testPlanResultMap = new HashMap<>();317 try {318 for (TestDeviceResult pendingTestDeviceResult : testDeviceResults) {319 TestPlanResult pendingTestPlanResult = testPlanResultService.find(pendingTestDeviceResult.getTestPlanResultId());320 AbstractTestPlan execution;321 if (pendingTestPlanResult.getTestPlan() != null)322 execution = pendingTestPlanResult.getTestPlan();323 else324 execution = pendingTestPlanResult.getDryTestPlan();325 List<TestDeviceResult> pendingTestDeviceResults = envResultMap.getOrDefault(execution.getId(), new ArrayList<>());326 pendingTestDeviceResults.add(pendingTestDeviceResult);327 envResultMap.put(execution.getId(), pendingTestDeviceResults);328 executionMap.put(execution.getId(), execution);329 testPlanResultMap.put(execution.getId(), pendingTestPlanResult);330 }331 for (Long key : envResultMap.keySet()) {332 AbstractTestPlan exe = executionMap.get(key);333 TestPlanResult exeResult = testPlanResultMap.get(key);334 List<TestDeviceResult> envResults = envResultMap.get(key);335 try {336 AgentExecutionService agentExecutionService = agentExecutionServiceObjectFactory.getObject();337 agentExecutionService.setTestPlan(exe);338 agentExecutionService.setTestPlanResult(exeResult);339 for (TestDeviceResult testDeviceResult : envResults) {340 Boolean cascade = Boolean.TRUE;341 EnvironmentEntityDTO environmentEntityDTO = agentExecutionService.loadEnvironment(testDeviceResult,342 StatusConstant.STATUS_PRE_FLIGHT);343 environmentEntityDTOS.add(environmentEntityDTO);344 this.markEnvironmentResultAsInProgress(testDeviceResult, StatusConstant.STATUS_PRE_FLIGHT, cascade);345 }346 this.updateExecutionConsolidatedResults(exeResult.getId(), Boolean.TRUE);347 } catch (Exception e) {348 log.error(" Error while sending pending test plans for test plan result - " + exeResult.getId());349 throw e;350 }351 }352 } catch (Exception e) {353 log.error(e.getMessage(), e);354 String environmentIds = testDeviceResults.stream().map(er -> er.getId().toString())355 .collect(Collectors.joining(","));356 String message = "Error while processing environment results [" + environmentIds + "]";357 log.error(message);358 }359 return environmentEntityDTOS;360 }361 public void propagateVisualResult(TestDeviceResult testDeviceResult) {362 List<TestDeviceResult> failedList = findAllByTestPlanResultIdAndIsVisuallyPassed(testDeviceResult.getTestPlanResultId(), false);363 TestPlanResult testPlanResult = testDeviceResult.getTestPlanResult();364 testPlanResultService.updateVisualResult(testPlanResult, failedList.isEmpty());365 }366 public void updateResult(EnvironmentRunResultRequest environmentResultRequest) throws Exception {367 TestDeviceResult testDeviceResult = find(environmentResultRequest.getId());368 Timestamp firstTestCase = testCaseResultService.findMinTimeStampByEnvironmentResultId(testDeviceResult.getId());369 testDeviceResult.setSessionCreatedOn(ObjectUtils.defaultIfNull(firstTestCase, new Timestamp(System.currentTimeMillis())));370 testDeviceResultMapper.merge(environmentResultRequest, testDeviceResult);371 testDeviceResult = update(testDeviceResult);372 if (environmentResultRequest.getErrorCode() != null) {373 updateResultOnError(environmentResultRequest.getMessage(),environmentResultRequest.getResult(), environmentResultRequest.getId());374 }375 updateEnvironmentConsolidatedResults(testDeviceResult);376 updateExecutionConsolidatedResults(testDeviceResult.getTestPlanResultId(),377 Boolean.FALSE);378 sendPendingTestPlans();379 updateResultCounts(testDeviceResult.getId());380 }381 public void updateResultData(TestDeviceResultRequest testDeviceResultRequest) throws ResourceNotFoundException {382 TestDeviceResult testDeviceResult = find(testDeviceResultRequest.getId());383 testDeviceResultMapper.mergeRequest(testDeviceResultRequest, testDeviceResult);384 update(testDeviceResult);385 }386}...

Full Screen

Full Screen

Source:TestCaseResultService.java Github

copy

Full Screen

...114 TestsigmaDatabaseException, UnsupportedEncodingException {115 TestCaseResult testCaseResult = find(testCaseResultRequest.getId());116 if (testCaseResultRequest.getResult() == null || testCaseResultRequest.getResult().equals(ResultConstant.QUEUED)) {117 this.updateTestCaseSteps(testCaseResultRequest);118 this.updateResultCounts(testCaseResult);119 } else {120 this.updateTestCaseSteps(testCaseResultRequest);121 testCaseResultMapper.merge(testCaseResultRequest, testCaseResult);122 testCaseResult.setStatus(StatusConstant.STATUS_COMPLETED);123 update(testCaseResult);124 if (testCaseResultRequest.isVisualTestingEnabled() && !storageConfigService.getStorageConfig().getStorageType().equals(StorageType.ON_PREMISE))125 initiateScreenshotAnalysis(testCaseResult);126 if (!testCaseResult.getIsDataDriven())127 updateResultCounts(testCaseResult);128 if (testCaseResult.getParentId() != null) {129 updateIterationResultCount(testCaseResult.getParentResult());130 }131 testSuiteResultService.updateResultCounts(testCaseResult.getSuiteResultId());132 testDeviceResultService.updateResultCounts(testCaseResult.getEnvironmentResultId());133 }134 }135 public void updateTestCaseSteps(TestCaseResultRequest testCaseResultRequest) throws TestsigmaDatabaseException,136 UnsupportedEncodingException,137 ResourceNotFoundException {138 TestDataSet testDataSet = null;139 TestData testData = null;140 Map<String, TestDataSet> testDataSetList;141 if (testCaseResultRequest.getTestDataId() != null) {142 testData = testDataProfileService.find(testCaseResultRequest.getTestDataId());143 testDataSetList = testDataProfileMapper.map(testData);144 if (!testDataSetList.isEmpty()) {145 testDataSet = testDataSetList.get(testCaseResultRequest.getTestDataSetName());146 }147 }148 List<TestStepResultRequest> testCaseStepResultList = testCaseResultRequest.getTestCaseStepResults();149 if (!testCaseStepResultList.isEmpty()) {150 if (testCaseResultRequest.getCurrentIndex() == 0) {151 Integer removedSteps = testStepResultService.deleteByTestCaseResultIdAndEnvironmentResultId(152 testCaseResultRequest.getId(), testCaseResultRequest.getEnvRunId());153 }154 testStepResultService.createTestCaseSteps(testCaseResultRequest, testData, testDataSet);155 } else {156 log.info("There are no test step results in this test case result[" + testCaseResultRequest.getId() + "]...");157 }158 }159 public void updateParentResult(TestCaseResult result) throws Exception {160 TestCaseResult parentTestCaseResult = find(result.getParentId());161 if (result.getResult() == ResultConstant.QUEUED) {162 parentTestCaseResult.setResult(result.getResult());163 parentTestCaseResult.setStatus(StatusConstant.STATUS_IN_PROGRESS);164 parentTestCaseResult.setMessage(result.getMessage());165 parentTestCaseResult.setEndTime(new Timestamp(System.currentTimeMillis()));166 parentTestCaseResult.setDuration(0L);167 } else {168 Integer pendingTestCaseResultCount = testCaseResultRepository.countAllByParentIdAndStatusIsNot(169 parentTestCaseResult.getId(), StatusConstant.STATUS_COMPLETED);170 if (pendingTestCaseResultCount == 0) {171 ResultConstant maxResult =172 testCaseResultRepository.findMaximumResultByParentId(parentTestCaseResult.getId());173 Timestamp endTime = testCaseResultRepository.findMaximumEndTimeByParentId(parentTestCaseResult.getId());174 Timestamp startTime = testCaseResultRepository.findMinimumStartTimeByParentId(parentTestCaseResult.getId());175 startTime = ObjectUtils.defaultIfNull(startTime, result.getStartTime());176 endTime = ObjectUtils.defaultIfNull(endTime, result.getEndTime());177 parentTestCaseResult.setResult(maxResult);178 parentTestCaseResult.setStatus(StatusConstant.STATUS_COMPLETED);179 parentTestCaseResult.setMessage(result.getMessage());180 parentTestCaseResult.setStartTime(startTime);181 parentTestCaseResult.setEndTime(endTime);182 parentTestCaseResult.setDuration(startTime.getTime() - endTime.getTime());183 }184 }185 update(parentTestCaseResult);186 updateIterationResultCount(parentTestCaseResult);187 }188 public void updateResultCounts(TestCaseResult testCaseResult) {189 log.info("Updating result counts for test case result - " + testCaseResult.getId());190 this.testCaseResultRepository.updateTotalTestCaseResultsCount(testCaseResult.getId());191 this.testCaseResultRepository.updatePassedTestCaseResultsCount(testCaseResult.getId());192 this.testCaseResultRepository.updateFailedTestCaseResultsCount(testCaseResult.getId());193 this.testCaseResultRepository.updateAbortedTestCaseResultsCount(testCaseResult.getId());194 this.testCaseResultRepository.updateNotExecutedTestCaseResultsCount(testCaseResult.getId());195 this.testCaseResultRepository.updateQueuedTestCaseResultsCount(testCaseResult.getId());196 this.testCaseResultRepository.updateStoppedTestCaseResultsCount(testCaseResult.getId());197 this.testPlanResultService.updateResultCounts(testCaseResult.getTestPlanResult());198 }199 public void updateIterationResultCount(TestCaseResult testCaseResult) {200 log.info("Updating iteration result counts for test case result - " + testCaseResult.getId());201 this.testCaseResultRepository.updateIterationTotalTestCaseResultsCount(testCaseResult.getId());202 this.testCaseResultRepository.updateIterationPassedTestCaseResultsCount(testCaseResult.getId());203 this.testCaseResultRepository.updateIterationFailedTestCaseResultsCount(testCaseResult.getId());204 this.testCaseResultRepository.updateIterationAbortedTestCaseResultsCount(testCaseResult.getId());205 this.testCaseResultRepository.updateIterationNotExecutedTestCaseResultsCount(testCaseResult.getId());206 this.testCaseResultRepository.updateIterationQueuedTestCaseResultsCount(testCaseResult.getId());207 this.testCaseResultRepository.updateIterationStoppedTestCaseResultsCount(testCaseResult.getId());208 }209 public void propagateVisualResult(TestCaseResult testCaseResult) throws ResourceNotFoundException {210 TestCaseResult result = testCaseResult;211 if (testCaseResult.getParentId() != null) {212 result = find(testCaseResult.getParentId());213 updateVisualResult(result, true);214 }215 List<TestCaseResult> failedList = findAllBySuiteResultIdAndIsVisuallyPassed(result.getSuiteResultId());216 TestSuiteResult testSuiteResult = testSuiteResultService.find(result.getSuiteResultId());217 testSuiteResultService.updateVisualResult(testSuiteResult, failedList.isEmpty());218 List<TestSuiteResult> pendingList = testSuiteResultService.findAllByEnvironmentResultIdAndIsVisuallyPassedIsNull(testSuiteResult.getEnvironmentResultId());219 if (pendingList.isEmpty()) {220 testSuiteResultService.propagateVisualResult(testSuiteResult);221 }222 }223 public void updateVisualResult(TestCaseResult testCaseResult, boolean isVisuallyPassed) {224 this.testCaseResultRepository.updateVisualResult(testCaseResult.getId(), isVisuallyPassed);225 }226 public void markTestCaseResultAsInProgress(TestCaseResult testCaseResult) throws ResourceNotFoundException {227 log.info(String.format("Updating test case result with status - %s, message - %s with id %s",228 StatusConstant.STATUS_IN_PROGRESS, AutomatorMessages.MSG_EXECUTION_IN_PROGRESS, testCaseResult.getId()));229 testCaseResult.setStatus(StatusConstant.STATUS_IN_PROGRESS);230 testCaseResult.setMessage(AutomatorMessages.MSG_EXECUTION_IN_PROGRESS);231 testCaseResult.setStartTime(new Timestamp(java.lang.System.currentTimeMillis()));232 testCaseResultRepository.save(testCaseResult);233 if (testCaseResult.getParentId() != null) {234 TestCaseResult parentTestCaseResult = this.find(testCaseResult.getParentId());235 if (parentTestCaseResult.getStatus() != StatusConstant.STATUS_IN_PROGRESS) {236 log.info(String.format("Updating test case result(parent) with status - %s, message - %s with id %s",237 StatusConstant.STATUS_IN_PROGRESS, AutomatorMessages.MSG_EXECUTION_IN_PROGRESS, parentTestCaseResult.getId()));238 parentTestCaseResult.setStatus(StatusConstant.STATUS_IN_PROGRESS);239 parentTestCaseResult.setMessage(AutomatorMessages.MSG_EXECUTION_IN_PROGRESS);240 this.update(parentTestCaseResult);241 }242 }243 }244 public void stopIncompleteTestCaseResults(ResultConstant result, StatusConstant status,245 String message, Long duration, Timestamp startTime,246 Timestamp endTime, Long environmentRunId,247 StatusConstant notInStatus) {248 log.info(String.format("Updating test cases with result - %s, status - %s, message - %s" +249 "with environment result id - %s and status not in %s", result, status, message, environmentRunId, notInStatus));250 testCaseResultRepository.stopIncompleteTestCaseResults(result, status, message, duration, startTime,251 endTime, environmentRunId, notInStatus);252 testStepResultService.stopIncompleteTestStepResults(result, message, duration, startTime,253 endTime, environmentRunId);254 List<TestCaseResult> testCaseResults = testCaseResultRepository.findAllByEnvironmentResultId(environmentRunId);255 testCaseResults.forEach(testCaseResult -> {256 updateResultCounts(testCaseResult);257 });258 }259 public void stopTestCaseResultsByEnvironmentResult(String message, ResultConstant result, Long environmentRunId) {260 log.info(String.format("Updating test cases with result - %s, message - %s with environment result id %s",261 result, message, environmentRunId));262 Timestamp currentTime = new Timestamp(java.lang.System.currentTimeMillis());263 testCaseResultRepository.updateResultForStopped(result, message, currentTime, currentTime,264 0L, environmentRunId);265 }266 private void initiateScreenshotAnalysis(TestCaseResult result) {267 try {268 new VisualTestingTask(result, visualTestingService).start();269 } catch (Exception e) {270 log.error("Error in screenshot comparison/analysis", e);...

Full Screen

Full Screen

Source:TestPlanResultsController.java Github

copy

Full Screen

...90 agentExecutionService.stop();91 }92 testPlanResultMapper.merge(testPlanResultRequest, testPlanResult);93 testPlanResult = testPlanResultService.update(testPlanResult);94 this.testPlanResultService.updateResultCounts(testPlanResult);95 return testPlanResultMapper.mapTo(testPlanResult);96 }97 @RequestMapping(value = {"/running-counts"}, method = RequestMethod.GET)98 public Page<TestPlanResultDTO> counts() {99 List<TestPlanResult> ongoingTestPlans = testPlanResultService100 .countOngoingEnvironmentResultsGroupByExecutionResult();101 List<TestPlanResultAndCount> ongoingNonParallelEnvironmentResultCounts = testPlanResultService102 .countOngoingNonParallelEnvironmentResultsGroupByTestPlanResult();103 List<TestPlanResultAndCount> ongoingParallelTestSuiteResultCounts = testPlanResultService104 .countOngoingParallelTestSuiteResultsGroupByTestPlanResult();105 List<TestPlanResultAndCount> queuedNonParallelEnvironmentResultCounts = testPlanResultService106 .countQueuedNonParallelEnvironmentResultsGroupByTestPlanResult();107 List<TestPlanResultAndCount> queuedParallelTestSuiteResultCounts = testPlanResultService108 .countQueuedParallelTestSuiteResultsGroupByTestPlanResult(); ...

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.TestPlanResultService;2public class TestPlanResultServiceTest {3 public static void main(String[] args) {4 TestPlanResultService testPlanResultService = new TestPlanResultService();5 testPlanResultService.updateResultCounts("testPlanId", "testPlanName", "testPlanVersion", "testPlanResult", "testPlanResultStatus", "testPlanResultMessage", "testPlanResultStackTrace", "testPlanResultDuration");6 }7}8import com.testsigma.service.TestPlanResultService;9public class TestPlanResultServiceTest {10 public static void main(String[] args) {11 TestPlanResultService testPlanResultService = new TestPlanResultService();12 testPlanResultService.updateResultCounts("testPlanId", "testPlanName", "testPlanVersion", "testPlanResult", "testPlanResultStatus", "testPlanResultMessage", "testPlanResultStackTrace", "testPlanResultDuration");13 }14}15import com.testsigma.service.TestPlanResultService;16public class TestPlanResultServiceTest {17 public static void main(String[] args) {18 TestPlanResultService testPlanResultService = new TestPlanResultService();19 testPlanResultService.updateResultCounts("testPlanId", "testPlanName", "testPlanVersion", "testPlanResult", "testPlanResultStatus", "testPlanResultMessage", "testPlanResultStackTrace", "testPlanResultDuration");20 }21}22import com.testsigma.service.TestPlanResultService;23public class TestPlanResultServiceTest {24 public static void main(String[] args) {25 TestPlanResultService testPlanResultService = new TestPlanResultService();26 testPlanResultService.updateResultCounts("testPlanId", "testPlanName", "testPlanVersion", "testPlanResult", "testPlanResultStatus", "testPlanResultMessage", "testPlanResultStackTrace", "testPlanResultDuration");27 }28}

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1import java.util.HashMap;2import java.util.Map;3import com.testsigma.service.TestPlanResultService;4public class TestPlanResultServiceExample {5public static void main(String[] args) {6TestPlanResultService testPlanResultService = new TestPlanResultService();7Map<String, Integer> resultCounts = new HashMap<String, Integer>();8resultCounts.put("passed", 1);9resultCounts.put("failed", 0);10resultCounts.put("skipped", 0);11resultCounts.put("blocked", 0);12resultCounts.put("notExecuted", 0);13testPlanResultService.updateResultCounts("testPlanId", "testPlanVersion", "testPlanInstanceId", "testPlanInstanceVersion", resultCounts);14}15}16import java.util.List;17import com.testsigma.service.TestPlanResultService;18import com.testsigma.service.TestPlanResultService.TestPlanResult;19public class TestPlanResultServiceExample {20public static void main(String[] args) {21TestPlanResultService testPlanResultService = new TestPlanResultService();22List<TestPlanResult> testPlanResults = testPlanResultService.getTestPlanInstanceResults("testPlanId", "testPlanVersion", "testPlanInstanceId", "testPlanInstanceVersion");23}24}25import java.util.List;26import com.testsigma.service.TestPlanResultService;27import com.testsigma.service.TestPlanResultService.TestPlanResult;28public class TestPlanResultServiceExample {29public static void main(String[] args) {30TestPlanResultService testPlanResultService = new TestPlanResultService();31List<TestPlanResult> testPlanResults = testPlanResultService.getTestPlanInstanceResults("testPlanId", "testPlanVersion", "testPlanInstanceId", "testPlanInstanceVersion", 0, 10);32}33}34import java.util.List;35import com.testsigma.service.TestPlanResultService;36import com.testsigma.service.TestPlanResultService.TestPlanResult;37public class TestPlanResultServiceExample {38public static void main(String[] args) {

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1package com.testsigma.service;2import com.testsigma.service.TestPlanResultService;3import java.util.HashMap;4import java.util.Map;5public class TestPlanResultServiceTest {6 public static void main(String[] args) {7 TestPlanResultService testPlanResultService = new TestPlanResultService();8 Map<String, String> resultCounts = new HashMap<String, String>();9 resultCounts.put("pass", "1");10 resultCounts.put("fail", "2");11 resultCounts.put("skip", "3");12 resultCounts.put("blocked", "4");13 resultCounts.put("notexecuted", "5");14 resultCounts.put("total", "6");15 testPlanResultService.updateResultCounts("123", "456", resultCounts);16 }17}18package com.testsigma.service;19import com.testsigma.service.TestPlanResultService;20import java.util.HashMap;21import java.util.Map;22public class TestPlanResultServiceTest {23 public static void main(String[] args) {24 TestPlanResultService testPlanResultService = new TestPlanResultService();25 Map<String, String> resultCounts = new HashMap<String, String>();26 resultCounts.put("pass", "1");27 resultCounts.put("fail", "2");28 resultCounts.put("skip", "3");29 resultCounts.put("blocked", "4");30 resultCounts.put("notexecuted", "5");31 resultCounts.put("total", "6");32 testPlanResultService.updateResultCounts("123", "456", resultCounts);33 }34}35package com.testsigma.service;36import com.testsigma.service.TestPlanResultService;37import java.util.HashMap;38import java.util.Map;39public class TestPlanResultServiceTest {40 public static void main(String[] args) {41 TestPlanResultService testPlanResultService = new TestPlanResultService();42 Map<String, String> resultCounts = new HashMap<String, String>();43 resultCounts.put("pass", "1");44 resultCounts.put("fail", "2");45 resultCounts.put("skip", "3");46 resultCounts.put("blocked", "4");47 resultCounts.put("notexecuted", "5");48 resultCounts.put("

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.TestPlanResultService;2import com.testsigma.service.TestPlanResultServiceService;3import com.testsigma.service.TestPlanResultServiceServiceLocator;4import com.testsigma.service.TestPlanResultServiceSoapBindingStub;5import com.testsigma.service.TestPlanResultServicePortType;6public class 2 {7public static void main(String[] args) {8try {9TestPlanResultServiceService service = new TestPlanResultServiceServiceLocator();10TestPlanResultServicePortType port = service.getTestPlanResultServiceSoapBindingPort();

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.TestPlanResultService;2import com.testsigma.service.TestPlanResultServiceServiceLocator;3import com.testsigma.service.TestPlanResultServicePortType;4import java.rmi.RemoteException;5public class UpdateResultCounts {6 public static void main(String[] args) {7 try {8 TestPlanResultServiceServiceLocator locator = new TestPlanResultServiceServiceLocator();

Full Screen

Full Screen

updateResultCounts

Using AI Code Generation

copy

Full Screen

1package com.testsigma.service;2import com.testsigma.testplan.TestPlanResult;3public class TestPlanResultService {4 public static void updateResultCounts(TestPlanResult testPlanResult, int testCasesPassed, int testCasesFailed, int testCasesSkipped) {5 testPlanResult.setTestCasesPassed(testCasesPassed);6 testPlanResult.setTestCasesFailed(testCasesFailed);7 testPlanResult.setTestCasesSkipped(testCasesSkipped);8 }9}10package com.testsigma.service;11import com.testsigma.testplan.TestPlanResult;12public class TestPlanResultService {13 public static void updateResultCounts(TestPlanResult testPlanResult, int testCasesPassed, int testCasesFailed, int testCasesSkipped) {14 testPlanResult.setTestCasesPassed(testCasesPassed);15 testPlanResult.setTestCasesFailed(testCasesFailed);16 testPlanResult.setTestCasesSkipped(testCasesSkipped);17 }18}19package com.testsigma.service;20import com.testsigma.testplan.TestPlanResult;21public class TestPlanResultService {22 public static void updateResultCounts(TestPlanResult testPlanResult, int testCasesPassed, int testCasesFailed, int testCasesSkipped) {23 testPlanResult.setTestCasesPassed(testCasesPassed);24 testPlanResult.setTestCasesFailed(testCasesFailed);25 testPlanResult.setTestCasesSkipped(testCasesSkipped);26 }27}28package com.testsigma.service;29import com.testsigma.testplan.TestPlanResult;30public class TestPlanResultService {31 public static void updateResultCounts(TestPlanResult testPlanResult, int testCasesPassed, int testCasesFailed, int testCasesSkipped) {32 testPlanResult.setTestCasesPassed(testCasesPassed);33 testPlanResult.setTestCasesFailed(testCasesFailed);34 testPlanResult.setTestCasesSkipped(testCasesSkipped);35 }36}37package com.testsigma.service;38import com.testsigma.testplan.TestPlan

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