How to use getState method of org.cerberus.crud.entity.TestCaseExecutionQueue class

Best Cerberus-source code snippet using org.cerberus.crud.entity.TestCaseExecutionQueue.getState

Source:TestCaseExecutionQueueService.java Github

copy

Full Screen

...158 targetrevisionList, creatorList, implementerList, buildList, revisionList, environmentList, countryList, browserList, tcestatusList,159 ip, port, tag, browserversion, comment, bugid, ticket);160 }161 @Override162 public AnswerItem<TestCaseExecutionQueue> create(TestCaseExecutionQueue object, boolean withNewDep, long exeQueueId, TestCaseExecutionQueue.State targetState) {163 LOG.debug("Creating Queue entry : " + object.getId() + " From : " + exeQueueId + " targetState : " + targetState.toString());164 // We create the link between the tag and the system if it does not exist yet.165 tagSystemService.createIfNotExist(object.getTag(), object.getSystem(), object.getUsrCreated());166 AnswerItem<TestCaseExecutionQueue> ret;167 if (StringUtil.isNullOrEmpty(object.getTag())) {168 // If tag is not defined, we do not insert any dependencies.169 ret = testCaseExecutionInQueueDAO.create(object);170 } else {171 if (withNewDep) {172 // Brand New execution Queue.173 // Inserting the record into the Queue forcing its state to QUWITHDEP (in order to secure it doesnt get triggered).174 object.setState(TestCaseExecutionQueue.State.QUWITHDEP);175 ret = testCaseExecutionInQueueDAO.create(object);176 // If insert was done correctly, we will try to add the dependencies.177 if (ret.getItem() != null) {178 // Get the QueueId Result from inserted record.179 long insertedQueueId = ret.getItem().getId();180 // Adding dependencies181 AnswerItem<Integer> retDep = testCaseExecutionQueueDepService.insertFromTestCaseDep(insertedQueueId, object.getEnvironment(), object.getCountry(), object.getTag(), object.getTest(), object.getTestCase());182 LOG.debug("Dep inserted : " + retDep.getItem());183 if (retDep.getItem() < 1) {184 // In case there are no dependencies, we release the execution moving to targetState State185 updateToState(insertedQueueId, "", targetState);186 } else {187 // In case there is at least 1 dependency, we leave the state to QUWITHDEP but move the prio to high so that when dependencies are released execution is triggered ASAP.188 object.setPriority(TestCaseExecutionQueue.PRIORITY_WHENDEPENDENCY); // pass prio to 100 if it's a QUWITHDEP189 updatePriority(insertedQueueId, TestCaseExecutionQueue.PRIORITY_WHENDEPENDENCY);190 }191 }192 } else {193 // New execution Queue from an existing one (duplicated from an existing queue entry).194 object.setState(targetState);195 ret = testCaseExecutionInQueueDAO.create(object);196 // We duplicate here the dependencies from the original exeQueue entry.197 if (ret.getItem() != null) {198 // Get the QueueId Result from inserted record.199 long insertedQueueId = ret.getItem().getId();200 // Adding dependencies201 AnswerItem<Integer> retDep = testCaseExecutionQueueDepService.insertFromExeQueueIdDep(insertedQueueId, exeQueueId);202 LOG.debug("Dep inserted from old entries : " + retDep.getItem());203 }204 }205 }206 return ret;207 }208 @Override209 public void checkAndReleaseQueuedEntry(long exeQueueId, String tag) {210 LOG.debug("Checking if we can move QUWITHDEP Queue entry to QUEUED : " + exeQueueId);211 AnswerItem ansNbWaiting = testCaseExecutionQueueDepService.readNbWaitingByExeQueueId(exeQueueId);212 int nbwaiting = (int) ansNbWaiting.getItem();213 if (nbwaiting < 1) {214 // No more waiting dependencies.215 AnswerItem ansNbReleasedNOK = testCaseExecutionQueueDepService.readNbReleasedWithNOKByExeQueueId(exeQueueId);216 int nbReleasedNOK = (int) ansNbReleasedNOK.getItem();217 if (nbReleasedNOK <= 0) {218 // If all execution of RELEASED dep are OK, we update ExeQueue status from QUWITHDEP to QUEUED in order to allow queue entry to be executed.219 updateToQueuedFromQuWithDep(exeQueueId, "All Dependencies RELEASED.");220 } else {221 try {222 String notExecutedMessage = nbReleasedNOK + " RELEASED dependency(ies) not OK.";223 updateToErrorFromQuWithDep(exeQueueId, notExecutedMessage);224 testCaseExecutionQueueDepService.manageDependenciesEndOfQueueExecution(exeQueueId);225 tagService.manageCampaignEndOfExecution(tag);226 } catch (CerberusException ex) {227 LOG.error(ex.toString(), ex);228 }229 }230 }231 }232 @Override233 public Answer update(TestCaseExecutionQueue object) {234 return testCaseExecutionInQueueDAO.update(object);235 }236 @Override237 public Answer updatePriority(long id, int priority) {238 return testCaseExecutionInQueueDAO.updatePriority(id, priority);239 }240 @Override241 public Answer updateComment(long id, String comment) {242 return testCaseExecutionInQueueDAO.updateComment(id, comment);243 }244 @Override245 public Answer updateToState(long id, String comment, TestCaseExecutionQueue.State targetState) {246 return testCaseExecutionInQueueDAO.updateToState(id, comment, targetState);247 }248 @Override249 public Answer updateToQueued(long id, String comment) {250 return testCaseExecutionInQueueDAO.updateToQueued(id, comment);251 }252 @Override253 public Answer updateAllTagToQueuedFromQuTemp(String tag, List<Long> queueIds) {254 return testCaseExecutionInQueueDAO.updateAllTagToQueuedFromQuTemp(tag, queueIds);255 }256 @Override257 public Answer updateToQueuedFromQuWithDep(long id, String comment) {258 return testCaseExecutionInQueueDAO.updateToQueuedFromQuWithDep(id, comment);259 }260 @Override261 public boolean updateToWaiting(final Long id) throws CerberusException {262 return testCaseExecutionInQueueDAO.updateToWaiting(id);263 }264 @Override265 public void updateToStarting(long id, String selectedRobot) throws CerberusException {266 testCaseExecutionInQueueDAO.updateToStarting(id, selectedRobot);267 }268 @Override269 public void updateToExecuting(long id, String comment, long exeId) throws CerberusException {270 testCaseExecutionInQueueDAO.updateToExecuting(id, comment, exeId);271 }272 @Override273 public void updateToError(long id, String comment) throws CerberusException {274 testCaseExecutionInQueueDAO.updateToError(id, comment);275 }276 @Override277 public void updateToErrorFromQuWithDep(long id, String comment) throws CerberusException {278 testCaseExecutionInQueueDAO.updateToErrorFromQuWithDep(id, comment);279 }280 @Override281 public void updateToDone(long id, String comment, long exeId) throws CerberusException {282 testCaseExecutionInQueueDAO.updateToDone(id, comment, exeId);283 }284 @Override285 public Answer updateToCancelled(long id, String comment) {286 return testCaseExecutionInQueueDAO.updateToCancelled(id, comment);287 }288 @Override289 public Answer updateToCancelledForce(long id, String comment) {290 return testCaseExecutionInQueueDAO.updateToCancelledForce(id, comment);291 }292 @Override293 public Answer updateToErrorForce(long id, String comment) {294 return testCaseExecutionInQueueDAO.updateToErrorForce(id, comment);295 }296 @Override297 public Answer delete(TestCaseExecutionQueue object) {298 return testCaseExecutionInQueueDAO.delete(object);299 }300 @Override301 public Answer delete(Long id) {302 return testCaseExecutionInQueueDAO.delete(id);303 }304 @Override305 public void cancelRunningOldQueueEntries() {306 /**307 * Automatic Cancellation job. That Job force to CANCELLED queue entries308 * that still in Executing state and too old to be still running.309 */310 Integer timeout = parameterService.getParameterIntegerByKey("cerberus_automaticqueuecancellationjob_timeout", "", 3600);311 testCaseExecutionInQueueDAO.updateToCancelledOldRecord(timeout, "Cancelled by automatic job.");312 }313 @Override314 public TestCaseExecutionQueue convert(AnswerItem<TestCaseExecutionQueue> answerItem) throws CerberusException {315 if (answerItem.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {316 //if the service returns an OK message then we can get the item317 return (TestCaseExecutionQueue) answerItem.getItem();318 }319 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));320 }321 @Override322 public List<TestCaseExecutionQueue> convert(AnswerList<TestCaseExecutionQueue> answerList) throws CerberusException {323 if (answerList.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {324 //if the service returns an OK message then we can get the item325 return (List<TestCaseExecutionQueue>) answerList.getDataList();326 }327 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));328 }329 @Override330 public void convert(Answer answer) throws CerberusException {331 if (answer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {332 //if the service returns an OK message then we can get the item333 return;334 }335 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));336 }337 @Override338 public TestCaseExecution convertToTestCaseExecution(TestCaseExecutionQueue testCaseExecutionInQueue) {339 String test = testCaseExecutionInQueue.getTest();340 String testCase = testCaseExecutionInQueue.getTestCase();341 String environment = testCaseExecutionInQueue.getEnvironment();342 String country = testCaseExecutionInQueue.getCountry();343 String browser = testCaseExecutionInQueue.getBrowser();344 String robotDecli = testCaseExecutionInQueue.getRobotDecli();345 if (StringUtil.isNullOrEmpty(robotDecli)) {346 if (!StringUtil.isNullOrEmpty(browser)) {347 robotDecli = browser;348 } else {349 robotDecli = "";350 }351 }352 String version = testCaseExecutionInQueue.getBrowserVersion();353 String platform = testCaseExecutionInQueue.getPlatform();354 long start = testCaseExecutionInQueue.getRequestDate() != null ? testCaseExecutionInQueue.getRequestDate().getTime() : 0;355 long end = 0;356 String controlStatus = TestCaseExecution.CONTROLSTATUS_QU;357 String controlMessage = "Queued with State : " + testCaseExecutionInQueue.getState().name() + " - " + testCaseExecutionInQueue.getComment();358 if (testCaseExecutionInQueue.getState().name().equals(TestCaseExecutionQueue.State.QUEUED.name())359 || testCaseExecutionInQueue.getState().name().equals(TestCaseExecutionQueue.State.WAITING.name())360 || testCaseExecutionInQueue.getState().name().equals(TestCaseExecutionQueue.State.QUWITHDEP.name())361 || testCaseExecutionInQueue.getState().name().equals(TestCaseExecutionQueue.State.STARTING.name())) {362 controlStatus = TestCaseExecution.CONTROLSTATUS_QU;363 } else {364 controlStatus = TestCaseExecution.CONTROLSTATUS_QE;365 }366 Application applicationObj = testCaseExecutionInQueue.getApplicationObj();367 String application = testCaseExecutionInQueue.getApplicationObj() != null ? testCaseExecutionInQueue.getApplicationObj().getApplication() : "";368 String robotHost = testCaseExecutionInQueue.getRobotIP();369 String robotPort = testCaseExecutionInQueue.getRobotPort();370 String tag = testCaseExecutionInQueue.getTag();371 int verbose = testCaseExecutionInQueue.getVerbose();372 int screenshot = testCaseExecutionInQueue.getScreenshot();373 int pageSource = testCaseExecutionInQueue.getPageSource();374 int seleniumLog = testCaseExecutionInQueue.getSeleniumLog();375 int retry = testCaseExecutionInQueue.getRetries();376 boolean synchroneous = true;377 String timeout = testCaseExecutionInQueue.getTimeout();378 String outputFormat = "";379 TestCase tCase = testCaseExecutionInQueue.getTestCaseObj();380 boolean manualURL = (testCaseExecutionInQueue.getManualURL() >= 1);381 String manualExecution = testCaseExecutionInQueue.getManualExecution();382 String myHost = testCaseExecutionInQueue.getManualHost();383 String myContextRoot = testCaseExecutionInQueue.getManualContextRoot();384 String myLoginRelativeURL = testCaseExecutionInQueue.getManualLoginRelativeURL();385 String myEnvData = testCaseExecutionInQueue.getManualEnvData();386 String seleniumIP = testCaseExecutionInQueue.getRobotIP();387 String seleniumPort = testCaseExecutionInQueue.getRobotPort();388 String description = "";389 if ((testCaseExecutionInQueue.getTestCaseObj() != null) && (testCaseExecutionInQueue.getTestCaseObj().getDescription() != null)) {390 description = testCaseExecutionInQueue.getTestCaseObj().getDescription();391 }392 TestCaseExecution result = factoryTestCaseExecution.create(0, test, testCase, description, null, null, environment, country, "", "", robotHost, robotPort, robotDecli,393 browser, version, platform,394 start, end, controlStatus, controlMessage, application, applicationObj, "", tag, verbose, screenshot, pageSource,395 seleniumLog, synchroneous, timeout, outputFormat, "", "", tCase, null, null, manualURL, myHost, myContextRoot, myLoginRelativeURL,396 myEnvData, seleniumIP, seleniumPort, null, null, null, retry, "", null, "", "", "", "", "", "", "", "", "", manualExecution, "", 0, 0, "", "", null, "", null);397 result.setQueueID(testCaseExecutionInQueue.getId());398 result.setQueueState(testCaseExecutionInQueue.getState().name());399 result.setId(testCaseExecutionInQueue.getExeId());400 return result;401 }402}...

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.TestCaseExecutionQueue;2import org.cerberus.crud.service.ITestCaseExecutionQueueService;3import org.springframework.beans.factory.annotation.Autowired;4import java.util.List;5import org.cerberus.crud.entity.TestCaseExecutionQueue;6import org.cerberus.crud.service.ITestCaseExecutionQueueService;7import org.springframework.beans.factory.annotation.Autowired;8import java.util.List;9import org.cerberus.crud.entity.TestCaseExecutionQueue;10import org.cerberus.crud.service.ITestCaseExecutionQueueService;11import org.springframework.beans.factory.annotation.Autowired;12import java.util.List;13import org.cerberus.crud.entity.TestCaseExecutionQueue;14import org.cerberus.crud.service.ITestCaseExecutionQueueService;15import org.springframework.beans.factory.annotation.Autowired;16import java.util.List;17import org.cerberus.crud.entity.TestCaseExecutionQueue;18import org.cerberus.crud.service.ITestCaseExecutionQueueService;19import org.springframework.beans.factory.annotation.Autowired;20import java.util.List;21import org.cerberus.crud.entity.TestCaseExecutionQueue;22import org.cerberus.crud.service.ITestCaseExecutionQueueService;23import org.springframework.beans.factory.annotation.Autowired;24import java.util.List;25import org.cerberus.crud.entity.TestCaseExecutionQueue;26import org.cerberus.crud.service.ITestCaseExecutionQueueService;27import org.springframework.beans.factory.annotation.Autowired;28import java.util.List;29import org.cerberus.crud.entity.TestCaseExecutionQueue;30import org.cerberus.crud.service.ITestCaseExecutionQueueService;31import org.springframework.beans.factory.annotation.Autowired;32import java.util.List;33import org.cerberus.crud.entity.TestCaseExecutionQueue;34import org.cerberus.crud.service.ITestCaseExecutionQueueService;35import org.springframework.beans.factory.annotation.Autowired;36import java.util.List;37import org.cerberus.crud.entity.TestCaseExecutionQueue;38import org.cerberus.crud.service.ITestCaseExecutionQueueService;39import org.springframework.beans.factory.annotation.Autowired;40import java.util.List;41import org.cerberus.crud.entity.TestCaseExecutionQueue;42import org.cerberus.crud.service.ITestCaseExecutionQueueService;43import org.springframework.beans.factory.annotation.Autowired;44import java.util.List;45import org.cerberus.crud.entity.TestCaseExecutionQueue;46import org.cerberus.crud.service.ITestCaseExecutionQueueService;47import org.springframework.beans.factory.annotation.Autowired

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();2queue.setState("PE");3org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();4queue.setState("PE");5org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();6queue.setState("PE");7org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();8queue.setState("PE");9org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();10queue.setState("PE");11org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();12queue.setState("PE");13org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();14queue.setState("PE");15org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();16queue.setState("PE");17org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();18queue.setState("PE");19org.cerberus.crud.entity.TestCaseExecutionQueue queue = new org.cerberus.crud.entity.TestCaseExecutionQueue();20queue.setState("PE");

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.TestCaseExecutionQueue;2import org.cerberus.crud.entity.TestCaseExecutionQueue.State;3import org.cerberus.crud.factory.IFactoryTestCaseExecutionQueue;4import org.cerberus.crud.service.ITestCaseExecutionQueueService;5import org.cerberus.crud.service.impl.TestCaseExecutionQueueService;6import org.cerberus.engine.execution.IExecutionThreadPoolService;7import org.cerberus.engine.execution.impl.ExecutionThreadPoolService;8import org.cerberus.engine.threadpool.ThreadPoolCerberusThread;9import org.cerberus.util.StringUtil;10import org.springframework.beans.factory.annotation.Autowired;11import org.springframework.stereotype.Service;12import java.util.List;13import java.util.concurrent.Future;14import java.util.concurrent.ThreadPoolExecutor;15public class ExecutionThreadPoolService implements IExecutionThreadPoolService {16 private IFactoryTestCaseExecutionQueue testCaseExecutionQueueFactory;17 private ITestCaseExecutionQueueService testCaseExecutionQueueService;18 private static final org.apache.logging.log4j.Logger LOG = org.apache.logging.log4j.LogManager.getLogger(ExecutionThreadPoolService.class);19 private static final int MAX_NUMBER_OF_THREAD = 5;20 private static final int MIN_NUMBER_OF_THREAD = 1;21 private ThreadPoolExecutor executor;22 public void executeTestCaseExecutionQueue(TestCaseExecutionQueue testCaseExecutionQueue) throws InterruptedException {23 LOG.debug("Starting execution of TestCaseExecutionQueue " + testCaseExecutionQueue.getId());24 Future<TestCaseExecutionQueue> future = executor.submit(new ThreadPoolCerberusThread(testCaseExecutionQueue));25 testCaseExecutionQueue.setFuture(future);26 testCaseExecutionQueue.setState(State.RUNNING);27 testCaseExecutionQueueService.updateTestCaseExecutionQueue(testCaseExecutionQueue);28 LOG.debug("Execution of TestCaseExecutionQueue " + testCaseExecutionQueue.getId() + " started");29 }30 public void init() {31 LOG.debug("Initializing ExecutionThreadPoolService");32 executor = new ThreadPoolExecutor(MIN_NUMBER_OF_THREAD, MAX_NUMBER_OF_THREAD, 10000L, java.util.concurrent.TimeUnit.MILLISECONDS,33 new java.util.concurrent.ArrayBlockingQueue<java.util.concurrent.Future>(MAX_NUMBER_OF_THREAD * 2));34 LOG.debug("ExecutionThreadPoolService initialized");35 }36 public void shutdown() {37 LOG.debug("Shutting down Execution

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.TestCaseExecutionQueue;2import org.cerberus.crud.entity.TestCaseExecutionQueueState;3import org.cerberus.crud.service.ITestCaseExecutionQueueService;4import java.util.List;5ITestCaseExecutionQueueService queueService = appContext.getBean(ITestCaseExecutionQueueService.class);6List<TestCaseExecutionQueue> queues = queueService.readAll();7TestCaseExecutionQueueState state = queues.get(0).getState();8System.out.println(state);

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.TestCaseExecutionQueue;2import org.cerberus.crud.factory.IFactoryTestCaseExecutionQueue;3import org.cerberus.crud.service.ITestCaseExecutionQueueService;4import org.springframework.beans.factory.annotation.Autowired;5import org.springframework.context.ApplicationContext;6import org.springframework.context.support.ClassPathXmlApplicationContext;7import java.util.List;8ApplicationContext appContext = new ClassPathXmlApplicationContext("applicationContext.xml");9ITestCaseExecutionQueueService testCaseExecutionQueueService = (ITestCaseExecutionQueueService) appContext.getBean("testCaseExecutionQueueService");10IFactoryTestCaseExecutionQueue testCaseExecutionQueueFactory = (IFactoryTestCaseExecutionQueue) appContext.getBean("testCaseExecutionQueueFactory");11List<TestCaseExecutionQueue> testCaseExecutionQueueList = testCaseExecutionQueueService.readByCriteria("WAITING", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);12for(TestCaseExecutionQueue testCaseExecutionQueue:testCaseExecutionQueueList){13 testCaseExecutionQueue.setStatus("RUNNING");14 testCaseExecutionQueueService.update(testCaseExecutionQueue);15}16((ClassPathXmlApplicationContext) appContext).close();

Full Screen

Full Screen

getState

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.TestCaseExecutionQueue2import org.cerberus.crud.entity.TestCaseExecutionQueue.State3def currentExecution = executorService.getCurrentExecution()4def state = currentExecution.getState()5log.info("Current execution state: " + state)6log.info("Current execution state: " + currentExecution.getState())7log.info("Current execution state: " + currentExecution.getState())

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