How to use evaluateCondition_ifStringDifferent method of org.cerberus.engine.execution.impl.ConditionService class

Best Cerberus-source code snippet using org.cerberus.engine.execution.impl.ConditionService.evaluateCondition_ifStringDifferent

Source:ConditionService.java Github

copy

Full Screen

...98 ans = evaluateCondition_ifStringEqual(conditionOper, conditionValue1, conditionValue2);99 mes = ans.getResultMessage();100 break;101 case TestCaseStepAction.CONDITIONOPER_IFSTRINGDIFFERENT:102 ans = evaluateCondition_ifStringDifferent(conditionOper, conditionValue1, conditionValue2);103 mes = ans.getResultMessage();104 break;105 case TestCaseStepAction.CONDITIONOPER_IFSTRINGGREATER:106 ans = evaluateCondition_ifStringGreater(conditionOper, conditionValue1, conditionValue2);107 mes = ans.getResultMessage();108 break;109 case TestCaseStepAction.CONDITIONOPER_IFSTRINGMINOR:110 ans = evaluateCondition_ifStringMinor(conditionOper, conditionValue1, conditionValue2);111 mes = ans.getResultMessage();112 break;113 case TestCaseStepAction.CONDITIONOPER_IFSTRINGCONTAINS:114 ans = evaluateCondition_ifStringContains(conditionOper, conditionValue1, conditionValue2);115 mes = ans.getResultMessage();116 break;117 case TestCaseStepAction.CONDITIONOPER_NEVER:118 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_NEVER);119 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));120 break;121 default:122 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_UNKNOWNCONDITION);123 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));124 }125 LOG.debug("Finished Evaluation condition : " + mes.getCodeString());126 // the decision whether we execute the action/control/step is taken from the codeString of the message.127 if (mes.getCodeString().equals("OK")) { // If code is OK, we execute the Operation.128 execute_Operation = true;129 } else { // Any other status and we don't execute anything.130 execute_Operation = false;131 }132 ans.setItem(execute_Operation);133 ans.setResultMessage(mes);134 return ans;135 }136 private AnswerItem<Boolean> evaluateCondition_ifPropertyExist(String conditionOper, String conditionValue1, TestCaseExecution tCExecution) {137 if (LOG.isDebugEnabled()) {138 LOG.debug("Checking if property Exist");139 }140 AnswerItem ans = new AnswerItem();141 MessageEvent mes;142 if (StringUtil.isNullOrEmpty(conditionValue1)) {143 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_IFPROPERTYEXIST_MISSINGPARAMETER);144 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));145 } else {146 String myCountry = tCExecution.getCountry();147 String myProperty = conditionValue1;148 boolean execute_Action = false;149 for (TestCaseCountryProperties prop : tCExecution.getTestCaseCountryPropertyList()) {150 LOG.debug(prop.getCountry() + " - " + myCountry + " - " + prop.getProperty() + " - " + myProperty);151 if ((prop.getCountry().equals(myCountry)) && (prop.getProperty().equals(myProperty))) {152 execute_Action = true;153 }154 }155 if (execute_Action == false) {156 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_IFPROPERTYEXIST);157 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));158 mes.setDescription(mes.getDescription().replace("%PROP%", conditionValue1));159 mes.setDescription(mes.getDescription().replace("%COUNTRY%", tCExecution.getCountry()));160 } else {161 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_IFPROPERTYEXIST);162 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));163 mes.setDescription(mes.getDescription().replace("%PROP%", conditionValue1));164 mes.setDescription(mes.getDescription().replace("%COUNTRY%", tCExecution.getCountry()));165 }166 }167 ans.setResultMessage(mes);168 return ans;169 }170 private AnswerItem<Boolean> evaluateCondition_ifElementPresent(String conditionOper, String conditionValue1, TestCaseExecution tCExecution) {171 if (LOG.isDebugEnabled()) {172 LOG.debug("Checking if Element Present");173 }174 AnswerItem ans = new AnswerItem();175 MessageEvent mes;176 if (StringUtil.isNullOrEmpty(conditionValue1)) {177 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_IFELEMENTPRESENT_MISSINGPARAMETER);178 mes.setDescription(mes.getDescription().replace("%COND%", conditionOper));179 } else {180 boolean condition_result = false;181 Identifier identifier = identifierService.convertStringToIdentifier(conditionValue1);182 if (tCExecution.getApplicationObj().getType().equalsIgnoreCase(Application.TYPE_GUI)183 || tCExecution.getApplicationObj().getType().equalsIgnoreCase(Application.TYPE_APK)184 || tCExecution.getApplicationObj().getType().equalsIgnoreCase(Application.TYPE_IPA)) {185 try {186 if (this.webdriverService.isElementPresent(tCExecution.getSession(), identifier)) {187 condition_result = true;188 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_IFELEMENTPRESENT);189 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));190 } else {191 condition_result = false;192 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_IFELEMENTPRESENT);193 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));194 }195 } catch (WebDriverException exception) {196 condition_result = false;197 mes = parseWebDriverException(exception);198 }199 } else if (tCExecution.getApplicationObj().getType().equalsIgnoreCase(Application.TYPE_SRV)) {200 if (tCExecution.getLastServiceCalled() != null) {201 String responseBody = tCExecution.getLastServiceCalled().getResponseHTTPBody();202 switch (tCExecution.getLastServiceCalled().getResponseHTTPBodyContentType()) {203 case AppService.RESPONSEHTTPBODYCONTENTTYPE_XML:204 if (xmlUnitService.isElementPresent(responseBody, conditionValue1)) {205 condition_result = true;206 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_IFELEMENTPRESENT);207 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));208 } else {209 condition_result = false;210 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_IFELEMENTPRESENT);211 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));212 }213 case AppService.RESPONSEHTTPBODYCONTENTTYPE_JSON: {214 try {215 if (jsonService.getFromJson(responseBody, null, conditionValue1) != null) {216 condition_result = true;217 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_IFELEMENTPRESENT);218 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));219 } else {220 condition_result = false;221 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_IFELEMENTPRESENT);222 mes.setDescription(mes.getDescription().replace("%ELEMENT%", conditionValue1));223 }224 } catch (Exception ex) {225 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_GENERIC);226 mes.setDescription(mes.getDescription().replace("%ERROR%", ex.toString()));227 }228 }229 default:230 condition_result = false;231 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_NOTSUPPORTED_FOR_MESSAGETYPE);232 mes.setDescription(mes.getDescription().replace("%TYPE%", tCExecution.getLastServiceCalled().getResponseHTTPBodyContentType()));233 mes.setDescription(mes.getDescription().replace("%CONDITION%", conditionOper));234 }235 } else {236 condition_result = false;237 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_NOOBJECTINMEMORY);238 }239 } else {240 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FAILED_NOTSUPPORTED_FOR_APPLICATION);241 mes.setDescription(mes.getDescription().replace("%CONDITION%", conditionOper));242 mes.setDescription(mes.getDescription().replace("%APPLICATIONTYPE%", tCExecution.getApplicationObj().getType()));243 }244 }245 ans.setResultMessage(mes);246 return ans;247 }248 private AnswerItem<Boolean> evaluateCondition_ifStringEqual(String conditionOper, String conditionValue1, String conditionValue2) {249 if (LOG.isDebugEnabled()) {250 LOG.debug("Checking if String Equal");251 }252 AnswerItem ans = new AnswerItem();253 MessageEvent mes;254 if (conditionValue1.equals(conditionValue2)) {255 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_STRINGEQUAL);256 mes.setDescription(mes.getDescription()257 .replace("%COND%", conditionOper)258 .replace("%STR1%", conditionValue1).replace("%STR2%", conditionValue2)259 );260 } else {261 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_STRINGEQUAL);262 mes.setDescription(mes.getDescription()263 .replace("%COND%", conditionOper)264 .replace("%STR1%", conditionValue1).replace("%STR2%", conditionValue2)265 );266 }267 ans.setResultMessage(mes);268 return ans;269 }270 private AnswerItem<Boolean> evaluateCondition_ifStringDifferent(String conditionOper, String conditionValue1, String conditionValue2) {271 if (LOG.isDebugEnabled()) {272 LOG.debug("Checking if String Different");273 }274 AnswerItem ans = new AnswerItem();275 MessageEvent mes;276 boolean execute_Action = true;277 if (!(conditionValue1.equals(conditionValue2))) {278 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_TRUE_STRINGDIFFERENT);279 mes.setDescription(mes.getDescription()280 .replace("%COND%", conditionOper)281 .replace("%STR1%", conditionValue1).replace("%STR2%", conditionValue2)282 );283 } else {284 mes = new MessageEvent(MessageEventEnum.CONDITIONEVAL_FALSE_STRINGDIFFERENT);...

Full Screen

Full Screen

evaluateCondition_ifStringDifferent

Using AI Code Generation

copy

Full Screen

1String condition = "IFSTRINGDIFFERENT";2String param1 = "test";3String param2 = "test2";4String param3 = "test";5boolean expectedResult = true;6boolean actualResult = conditionService.evaluateCondition_ifStringDifferent(param1, param2, param3);7org.junit.Assert.assertEquals(expectedResult, actualResult);8package org.cerberus.engine.execution.impl;9import org.cerberus.crud.entity.TestCaseExecutionData;10import org.cerberus.crud.entity.TestCaseStepActionControlExecution;11import org.cerberus.crud.factory.IFactoryTestCaseExecutionData;12import org.cerberus.engine.entity.MessageEvent;13import org.cerberus.engine.entity.MessageGeneral;14import org.cerberus.engine.execution.IConditionService;15import org.cerberus.engine.execution.IControlService;16import org.cerberus.engine.execution.IPropertyService;17import org.cerberus.engine.execution.ISeleniumService;18import org.cerberus.engine.execution.impl.condition.*;19import org.cerberus.engine.queuemanagement.IExecutionThreadPoolService;20import org.cerberus.engine.queuemanagement.IInQueueService;21import org.cerberus.enums.MessageEventEnum;22import org.cerberus.enums.MessageGeneralEnum;23import org.cerberus.exception.CerberusEventException;24import org.cerberus.exception.CerberusException;25import org.cerberus.log.MyLogger;26import org.cerberus.service.datalib.IDataLibService;27import org.cerberus.service.json.IJsonService;28import org.cerberus.service.sikuli.ISikuliService;29import org.cerberus.service.soap.ISoapService;30import org.cerberus.service.sql.ISQLService;31import org.cerberus.service.webdriver.IAppService;32import org.cerberus.service.webdriver.IElementService;33import org.cerberus.service.webdriver.IHtmlService;34import org.cerberus.service.webdriver.IWebDriverService;35import org.cerberus.util.answer.AnswerItem;36import org.cerberus.util.answer.AnswerList;37import org.cerberus.util.answer.AnswerUtil;38import org.cerberus.util.string.StringUtil

Full Screen

Full Screen

evaluateCondition_ifStringDifferent

Using AI Code Generation

copy

Full Screen

1var result = false;2var string1 = "string1";3var string2 = "string2";4result = org.cerberus.engine.execution.impl.ConditionService.evaluateCondition_ifStringDifferent(string1,string2);5log("result: " + result);6var result = false;7var string1 = "string1";8var string2 = "string2";

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