How to use update method of com.testsigma.service.StepResultScreenshotComparisonService class

Best Testsigma code snippet using com.testsigma.service.StepResultScreenshotComparisonService.update

Source:VisualTestingService.java Github

copy

Full Screen

...67 initScreenshotComparision(stepResult, testCaseResult);68 }69 List<StepResultScreenshotComparison> failedList = stepResultScreenshotComparisonService.findAllByTestCaseResultIdAndDiffCoordinatesNot(testCaseResult.getId(), "[]");70 if (failedList.isEmpty()) {71 testCaseResultService.updateVisualResult(testCaseResult, true);72 testCaseResultService.propagateVisualResult(testCaseResult);73 }74 }75 public StepResultScreenshotComparison updateVisualResponse(Map<String, Object> result) throws ResourceNotFoundException {76 Long id = new Long((Integer) result.get(SCREENSHOT_RESULT_ID));77 StepResultScreenshotComparison resultScreenshotComparison = stepResultScreenshotComparisonService.find(id);78 resultScreenshotComparison.setImageShape(result.get(JSON_KEY_IMAGE_SHAPE).toString());79 resultScreenshotComparison.setErrorMessage((String) result.get(JSON_KEY_ERROR));80 resultScreenshotComparison.setSimilarityScore(getDoubleValue(result.get(JSON_KEY_PER_SIMILAR)));81 resultScreenshotComparison.setDiffCoordinates(result.get(JSON_KEY_DIFF_COORDS).toString());82 resultScreenshotComparison = stepResultScreenshotComparisonService.update(resultScreenshotComparison);83 List<StepResultScreenshotComparison> pendingList = stepResultScreenshotComparisonService.findAllByTestCaseResultIdAndSimilarityScoreIsNull(resultScreenshotComparison.getTestCaseResultId());84 stepResultScreenshotComparisonService.propagateVisualResult(resultScreenshotComparison);85 return resultScreenshotComparison;86 }87 private Double getDoubleValue(Object strObj) {88 if (strObj == null || org.apache.commons.lang3.StringUtils.isEmpty(strObj.toString())) {89 return null;90 }91 DecimalFormat df = new DecimalFormat("#.##");92 Double input = (Double) strObj;93 df.setRoundingMode(RoundingMode.DOWN);94 return Double.parseDouble(df.format(input));95 }96 private void initScreenshotComparision(TestStepResult testStepResult, TestCaseResult testCaseResult) throws Exception {97 TestDeviceSettings envSettings = testCaseResult.getTestDeviceResult().getTestDeviceSettings();98 log.info("Starting Screenshot comparision for testStepResult" + testStepResult + " | with envSettings::" + envSettings.toString());99 Optional<TestStepScreenshot> baseScreenshot = getBaseScreenshot(testCaseResult, testStepResult, envSettings);100 if ((!baseScreenshot.isPresent() || baseScreenshot.get().getBaseImageName() == null) && testStepResult.getResult().equals(ResultConstant.SUCCESS)) {101 log.info("Base Screenshot identified just now so saving to for future runs... :");102 saveAsBaseScreenshot(testCaseResult, testStepResult, envSettings);103 return;104 }105 if (baseScreenshot.isPresent()) {106 StepResultScreenshotComparison stepResultScreenshotComparison = addResultScreenshotComparison(testStepResult, baseScreenshot.get());107 postImageAnalysisRequest(testStepResult, stepResultScreenshotComparison, baseScreenshot.get());108 }109 }110 private Optional<TestStepScreenshot> getBaseScreenshot(TestCaseResult testCaseResult, TestStepResult testStepResult, TestDeviceSettings settings) throws Exception {111 String deviceName = checkNull(settings.getDeviceName(), null);112 String browserVersion = checkNull(settings.getBrowser(), null);113 String resolution = checkNull(settings.getResolution(), null);114// String platformString = checkNull(settings.getPlatform(), "");115 String currentImagePresignedURL = getCurrentRunScreenshotPath(testStepResult);116 String imageSize = getScreenshotImageSize(currentImagePresignedURL);117 if (imageSize == null) {118 return Optional.ofNullable(null);119 }120 String testDataSetName = getTestDataSetName(testCaseResult, testStepResult);121 Long testDataId = getTestDataId(testCaseResult, testStepResult);122 Optional<TestStepScreenshot> baseScreenshot;123 baseScreenshot = testStepScreenshotService.findBaseScreenshotForWeb(testStepResult.getStepId(),deviceName, browserVersion, resolution, testDataSetName, testDataId, imageSize);124 return baseScreenshot;125 }126 private String getScreenshotImageSize(String imagePresignedURL) {127 //128 BufferedImage imageObj = null;129 for (int i = 1; i <= 12; i++) {130 try {131 imageObj = ImageIO.read(new URL(imagePresignedURL));132 if (imageObj != null) {133 break;134 }135 Thread.sleep(10000);136 } catch (Exception e) {137 log.error("Unable to download base image.", e);138 }139 }140 return (imageObj == null ? null : String.format("%sx%s", imageObj.getWidth(), imageObj.getHeight()));141 }142 private Long getTestDataId(TestCaseResult testCaseResult, TestStepResult testStepResult) throws ResourceNotFoundException {143 Long testDataId = null;144 //First we need to check FOR loop bcz there can be a for loop inside a data driven test. In this case for loop executes with for loops test data.145 if (testStepResult.getParentResultId() != null) {146 TestStepResult parentStepResult = testStepResultService.find(testStepResult.getParentResultId());147 TestStep testStep = testStepService.find(parentStepResult.getStepId());148 return (testStep.getForLoopTestDataId() == null) ? testStep.getForLoopTestDataId() : 0;149 }150 if (testCaseResult.getParentId() != null && testCaseResult.getTestDataId() != null) {151 testDataId = testCaseResult.getTestDataId();152 }153 return testDataId;154 }155 private String getTestDataSetName(TestCaseResult testCaseResult, TestStepResult testStepResult) throws ResourceNotFoundException {156 String testDataSetName = null;157 //First we need to check FOR loop bcz there can be a for loop inside a data driven test. In this case for loop executes with for loops test data.158 if (testStepResult.getParentResultId() != null) {159 TestStepResult parentStepResult = testStepResultService.find(testStepResult.getParentResultId());160 StepResultMetadata metadata = parentStepResult.getMetadata();161 if (metadata != null) {162 StepResultForLoopMetadata forLoopData = parentStepResult.getMetadata().getForLoop();163 StepResultWhileLoopMetadata whileLoopData = parentStepResult.getMetadata().getWhileLoop();164 if (forLoopData != null) {165 return forLoopData.getIteration();166 } else if (whileLoopData != null) {167 return null;168 }169 }170 }171 if (testCaseResult.getParentId() != null && testCaseResult.getTestDataId() != null) {172 testDataSetName = testCaseResult.getTestDataSetName();173 }174 return testDataSetName;175 }176 private void saveAsBaseScreenshot(TestCaseResult testCaseResult, TestStepResult testStepResult, TestDeviceSettings envSettings) throws Exception {177 Double browserVer = 0.0;178 try {179 browserVer = Double.parseDouble(checkNull(envSettings.getBrowserVersion(), ""));180 } catch (Exception e) {181 e.printStackTrace();182 }183 String currentImagePresignedURL = getCurrentRunScreenshotPath(testStepResult);184 String baseImageSize = getScreenshotImageSize(currentImagePresignedURL);185 String testDataSetName = getTestDataSetName(testCaseResult, testStepResult);186 Long testDataId = getTestDataId(testCaseResult, testStepResult);187 TestStepScreenshot entity = new TestStepScreenshot();188 entity.setTestCaseResultId(testStepResult.getTestCaseResultId());189 entity.setTestStepId(testStepResult.getStepId());190 entity.setTestStepResultId(testStepResult.getId());191 entity.setEnvironmentResultId(testStepResult.getEnvRunId());192 entity.setBaseImageName(testStepResult.getScreenshotName());193 entity.setBrowser(checkNull(envSettings.getBrowser(), null));194 entity.setBrowserVersion(browserVer);195 entity.setScreenResolution(checkNull(envSettings.getResolution(), null));196 entity.setIgnoredCoordinates(null);197 entity.setDeviceName(checkNull(envSettings.getDeviceName(), null));198 entity.setDeviceOsVersion(checkNull(envSettings.getBrowser(), null));199 entity.setTestDataSetName(testDataSetName);200 entity.setTestDataId(testDataId);201 entity.setBaseImageSize(baseImageSize);202 testStepScreenshotService.create(entity);203 }204 private StepResultScreenshotComparison addResultScreenshotComparison(TestStepResult stepResult, TestStepScreenshot baseScreenshot) {205 StepResultScreenshotComparison result = new StepResultScreenshotComparison();206 result.setTestStepId(stepResult.getStepId());207 result.setTestStepResultId(stepResult.getId());208 result.setTestStepBaseScreenshotId(baseScreenshot.getId());209 result.setTestCaseResultId(stepResult.getTestCaseResultId());210 return this.stepResultScreenshotComparisonService.create(result);211 }212 private void postImageAnalysisRequest(TestStepResult testStepResult, StepResultScreenshotComparison stepResultScreenshotComparison, TestStepScreenshot baseScreenshot) throws TestsigmaException {213 VisualAnalysisRequest requestBean = new VisualAnalysisRequest();214 requestBean.setScreenshotResultId(stepResultScreenshotComparison.getId());215 requestBean.setAction("COMPARE");216 requestBean.setBaseImagePath(getBaseScreenshotURL(baseScreenshot));217 requestBean.setCurrentRunScreenshotPath(getCurrentRunScreenshotPath(testStepResult));218 requestBean.setIgnoreCoordinates("[]");219 if (baseScreenshot.getIgnoredCoordinates() != null)220 requestBean.setIgnoreCoordinates(baseScreenshot.getIgnoredCoordinates());221 com.testsigma.util.HttpResponse<Map<String, Object>> response = httpClient.post(222 testsigmaOSConfigService.getUrl() + URLConstants.VISUAL_API_URL,223 getHeaderList(), requestBean, new TypeReference<>() {224 });225 updateVisualResponse(response.getResponseEntity());226 log.debug(String.format("Posted image analysis request status for TestStepResult ID: %s, Test-Step_id: %s is::%s",227 testStepResult.getId(), testStepResult.getStepId(), response.getStatusCode()));228 }229 private List<Header> getHeaderList() {230 Header authorization = new BasicHeader(org.apache.http.HttpHeaders.AUTHORIZATION, "Bearer " + testsigmaOSConfigService.find().getAccessKey());231 Header contentType = new BasicHeader(org.apache.http.HttpHeaders.CONTENT_TYPE, "application/json; " + StandardCharsets.UTF_8);232 return Lists.newArrayList(contentType, authorization);233 }234 private String getBaseScreenshotURL(TestStepScreenshot testStepScreenshot) {235 String baseLineImageName = testStepScreenshot.getBaseImageName();236 String screenShotPath =237 "executions/" + testStepScreenshot.getTestCaseResultId() + "/" + baseLineImageName;238 return storageServiceFactory.getStorageService().generatePreSignedURL(screenShotPath, StorageAccessLevel.READ).toString();239 }...

Full Screen

Full Screen

Source:ScreenshotComparisonsController.java Github

copy

Full Screen

...70 testStepScreenshot.setTestStepResultId(testStepResult.getId());71 testStepScreenshot.setEnvironmentResultId(testStepResult.getEnvRunId());72 testStepScreenshot.setTestCaseResultId(testStepResult.getTestCaseResultId());73 testStepScreenshot.setBaseImageName(testStepResult.getScreenshotName());74 testStepScreenshotService.update(testStepScreenshot);75 comparison.setDiffCoordinates("[]");76 comparison = service.update(comparison);77 service.propagateVisualResult(comparison);78 return mapper.map(comparison);79 }80}...

Full Screen

Full Screen

update

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.StepResultScreenshotComparisonService;2import com.testsigma.service.StepResultScreenshotComparisonServiceFactory;3import com.testsigma.service.StepResultScreenshotComparisonServiceFactory.StepResultScreenshotComparisonServiceType;4import com.testsigma.service.StepResultScreenshotComparisonServiceFactory;5import com.testsigma.service.StepResultScreenshotComparisonService;6import com.testsigma.service.StepResultScreenshotCompariso

Full Screen

Full Screen

update

Using AI Code Generation

copy

Full Screen

1package com.testsigma.service;2import java.io.IOException;3import java.net.MalformedURLException;4import java.net.URL;5import java.util.ArrayList;6import java.util.HashMap;7import java.util.List;8import java.util.Map;9import org.openqa.selenium.JavascriptExecutor;10import org.openqa.selenium.WebDriver;11import org.openqa.selenium.WebElement;12import org.openqa.selenium.remote.DesiredCapabilities;13import org.openqa.selenium.remote.RemoteWebDriver;14import org.openqa.selenium.support.ui.ExpectedConditions;15import org.openqa.selenium.support.ui.WebDriverWait;16import com.testsigma.service.StepResultScreenshotComparisonService;17import io.appium.java_client.android.AndroidDriver;18import io.appium.java_client.android.AndroidElement;19import io.appium.java_client.remote.MobileCapabilityType;20public class StepResultScreenshotComparisonService {21public static void main(String[] args) throws MalformedURLException, IOException {

Full Screen

Full Screen

update

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.StepResultScreenshotComparisonService;2public class 2 {3 public static void main(String[] args) {4 int result = StepResultScreenshotComparisonService.update("C:\\Users\\TestSigma\\Desktop\\actual.png",5"C:\\Users\\TestSigma\\Desktop\\expected.png","C:\\Users\\TestSigma\\Desktop\\result.png",80,5);6 System.out.println(result);7 }8}9StepResultScreenshotComparisonService.update("C:\\Users\\TestSigma\\Desktop\\actual.png",10The result of the comparison is saved in the result image which is passed as the third parameter. The result of the comparison is also returned by the method. Result: 0 - Images are same, 1 - Images are similar, 2 - Images are different Example: StepResultScreenshotComparisonService.update("C:\\Users\\TestSigma

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.

Run Testsigma automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful