How to use publishEvent method of com.testsigma.service.ElementService class

Best Testsigma code snippet using com.testsigma.service.ElementService.publishEvent

Source:ElementService.java Github

copy

Full Screen

...66 }67 public Element create(Element element) {68 element = this.save(element);69 this.markAsDuplicated(element);70 publishEvent(element, EventType.CREATE);71 return element;72 }73 public Element update(Element element, String oldName, String previousLocatorValue, LocatorType previousLocatorType, Long previousScreenNameId)74 throws ResourceNotFoundException {75 element = this.save(element);76 if (!Objects.equals(element.getLocatorValue(), previousLocatorValue) || element.getLocatorType() != previousLocatorType77 || !Objects.equals(element.getScreenNameId(), previousScreenNameId)) {78 this.markAsDuplicated(element);79 this.resetDuplicate(element.getWorkspaceVersionId(), previousLocatorValue, previousLocatorType, previousScreenNameId);80 }81 this.eventCallForUpdate(oldName, element);82 return element;83 }84 public Element update(Element element, String oldName) {85 element = this.save(element);86 this.eventCallForUpdate(oldName, element);87 return element;88 }89 public void delete(Element element) {90 elementRepository.delete(element);91 this.resetDuplicate(element.getWorkspaceVersionId(), element.getLocatorValue(), element.getLocatorType(), element.getScreenNameId());92 publishEvent(element, EventType.DELETE);93 }94 public void bulkDelete(Long[] ids, Long workspaceVersionId) throws Exception {95 Boolean allIdsDeleted = true;96 TestCaseSpecificationsBuilder builder = new TestCaseSpecificationsBuilder();97 for (Long id : ids) {98 List<SearchCriteria> params = new ArrayList<>();99 Element element = this.find(id);100 params.add(new SearchCriteria("element", SearchOperation.EQUALITY, element.getName()));101 params.add(new SearchCriteria("workspaceVersionId", SearchOperation.EQUALITY, workspaceVersionId));102 builder.setParams(params);103 Specification<TestCase> spec = builder.build();104 Page<TestCase> linkedTestCases = testCaseService.findAll(spec, PageRequest.of(0, 1));105 if (linkedTestCases.getTotalElements() == 0) {106 this.delete(element);107 } else {108 allIdsDeleted = false;109 }110 }111 if (!allIdsDeleted) {112 throw new DataIntegrityViolationException("dataIntegrityViolationException: Failed to delete some of the Elements " +113 "since they are already associated to some Test Cases.");114 }115 }116 public void bulkUpdateScreenNameAndTags(Long[] ids, String screenName, String[] tags) throws ResourceNotFoundException {117 for (Long id : ids) {118 Element element = find(id);119 if (screenName.length() > 0) {120 ElementScreenNameRequest elementScreenNameRequest = new ElementScreenNameRequest();121 elementScreenNameRequest.setName(screenName);122 elementScreenNameRequest.setWorkspaceVersionId(element.getWorkspaceVersionId());123 ElementScreenName elementScreenName = screenNameService.save(elementScreenNameRequest);124 element.setScreenNameId(elementScreenName.getId());125 }126 update(element, element.getName(), element.getLocatorValue(), element.getLocatorType(), element.getScreenNameId());127 tagService.updateTags(Arrays.asList(tags), TagType.ELEMENT, id);128 }129 }130 public void updateByName(String name, ElementRequest elementRequest) {131 Element element = findByNameAndVersionId(name, elementRequest.getWorkspaceVersionId());132 String oldName = element.getName();133 elementMapper.merge(elementRequest, element);134 update(element, oldName);135 }136 public void publishEvent(Element element, EventType eventType) {137 ElementEvent<Element> event = createEvent(element, eventType);138 log.info("Publishing event - " + event.toString());139 applicationEventPublisher.publishEvent(event);140 }141 public ElementEvent<Element> createEvent(Element element, EventType eventType) {142 ElementEvent<Element> event = new ElementEvent<>();143 event.setEventData(element);144 event.setEventType(eventType);145 return event;146 }147 public void export(BackupDTO backupDTO) throws IOException, ResourceNotFoundException {148 if (!backupDTO.getIsElementEnabled()) return;149 log.debug("backup process for element initiated");150 writeXML("elements", backupDTO, PageRequest.of(0, 25));151 log.debug("backup process for element completed");152 }153 public Specification<Element> getExportXmlSpecification(BackupDTO backupDTO) {154 SearchCriteria criteria = new SearchCriteria("workspaceVersionId", SearchOperation.EQUALITY, backupDTO.getWorkspaceVersionId());155 List<SearchCriteria> params = new ArrayList<>();156 params.add(criteria);157 ElementSpecificationsBuilder elementSpecificationsBuilder = new ElementSpecificationsBuilder();158 elementSpecificationsBuilder.params = params;159 return elementSpecificationsBuilder.build();160 }161 @Override162 protected List<ElementXMLDTO> mapToXMLDTOList(List<Element> list) {163 return elementMapper.mapElements(list);164 }165 private void eventCallForUpdate(String oldName, Element element){166 if (!oldName.equals(element.getName())) {167 testStepService.updateElementName(oldName, element.getName());168 testStepService.updateAddonElementsName(oldName, element.getName());169 }170 publishEvent(element, EventType.UPDATE);171 }172 public List<Element> findAllMatchedElements(Long applicationVersionId, String definition,173 LocatorType locatorType, Long screenNameId, Boolean duplicatedStatus) {174 return this.elementRepository.findAllMatchedElements(applicationVersionId, definition, locatorType, screenNameId, duplicatedStatus);175 }176 public List<Element> findAllMatchedElements(Long applicationVersionId, String definition,177 LocatorType locatorType, Long screenNameId) {178 return this.elementRepository.findAllMatchedElements(applicationVersionId, definition, locatorType, screenNameId);179 }180 private void markAsDuplicated(Element element) {181 List<Element> matchedElements = this.findAllMatchedElements182 (element.getWorkspaceVersionId(), element.getLocatorValue(), element.getLocatorType(),183 element.getScreenNameId());184 if(matchedElements.size() == 1){...

Full Screen

Full Screen

publishEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.ElementService;2ElementService.publishEvent("myTopic", "myEvent", "myData");3import com.testsigma.service.ElementService;4ElementService.publishEvent("myTopic", "myEvent", "myData");5import com.testsigma.service.ElementService;6ElementService.publishEvent("myTopic", "myEvent", "myData");7import com.testsigma.service.ElementService;8ElementService.publishEvent("myTopic", "myEvent", "myData");9import com.testsigma.service.ElementService;10ElementService.publishEvent("myTopic", "myEvent", "myData");11import com.testsigma.service.ElementService;12ElementService.publishEvent("myTopic", "myEvent", "myData");13import com.testsigma.service.ElementService;14ElementService.publishEvent("myTopic", "myEvent", "myData");15import com

Full Screen

Full Screen

publishEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.service.ElementService;2ElementService elementService = new ElementService();3elementService.publishEvent("test");4import com.testsigma.service.ElementService;5ElementService elementService = new ElementService();6elementService.publishEvent("test");7import com.testsigma.service.ElementService;8ElementService elementService = new ElementService();9elementService.publishEvent("test");10import com.testsigma.service.ElementService;11ElementService elementService = new ElementService();12elementService.publishEvent("test");13import com.testsigma.service.ElementService;14ElementService elementService = new ElementService();15elementService.publishEvent("test");16import com.testsigma.service.ElementService;17ElementService elementService = new ElementService();18elementService.publishEvent("test");19import com.testsigma.service.ElementService;20ElementService elementService = new ElementService();21elementService.publishEvent("test");22import com.testsigma.service.ElementService;23ElementService elementService = new ElementService();24elementService.publishEvent("test");25import com.testsigma.service.ElementService;26ElementService elementService = new ElementService();27elementService.publishEvent("test");

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