How to use readToHashMapGp1IntegerByIdname method of org.cerberus.crud.service.impl.InvariantService class

Best Cerberus-source code snippet using org.cerberus.crud.service.impl.InvariantService.readToHashMapGp1IntegerByIdname

Source:ExecutionThreadPoolService.java Github

copy

Full Screen

...165 int poolSizeExecutorExt = parameterService.getParameterIntegerByKey("cerberus_queueexecution_defaultexecutorexthost_threadpoolsize", "", 2);166 constrains_current.put(const01_key, poolSizeGeneral);167 // Getting RobotHost PoolSize168 HashMap<String, Integer> robot_poolsize = new HashMap<>();169 robot_poolsize = invariantService.readToHashMapGp1IntegerByIdname("ROBOTHOST", poolSizeRobot);170 HashMap<String, Integer> robotext_poolsize = new HashMap<>();171 robotext_poolsize = invariantService.readToHashMapGp1IntegerByIdname("EXECUTOREXTENSIONHOST", poolSizeExecutorExt);172 // Getting all executions to be treated.173 answer = tceiqService.readQueueToTreatOrRunning();174 List<TestCaseExecutionQueueToTreat> executionsToTreat = answer.getDataList();175 // Calculate constrain values.176 for (TestCaseExecutionQueueToTreat exe : executionsToTreat) {177 String const02_key = TestCaseExecutionQueueToTreat.CONSTRAIN2_APPLIENV + CONST_SEPARATOR + exe.getSystem() + CONST_SEPARATOR + exe.getEnvironment() + CONST_SEPARATOR + exe.getCountry() + CONST_SEPARATOR + exe.getApplication();178 String const03_key = TestCaseExecutionQueueToTreat.CONSTRAIN3_APPLICATION + CONST_SEPARATOR + exe.getApplication();179 String const04_key = TestCaseExecutionQueueToTreat.CONSTRAIN4_ROBOT + CONST_SEPARATOR + exe.getSelectedRobotHost();180 String const05_key = TestCaseExecutionQueueToTreat.CONSTRAIN5_EXECUTOREXTENSION + CONST_SEPARATOR + exe.getSelectedRobotExtensionHost();181 constrains_current.put(const02_key, exe.getPoolSizeAppEnvironment());182 constrains_current.put(const03_key, exe.getPoolSizeApplication());183 // Getting Robot Host PoolSize from invariant hashmap.184 int robot_poolsize_final = 0;185 if (!StringUtil.isNullOrEmpty(exe.getSelectedRobotHost())) {186 if (robot_poolsize.containsKey(exe.getSelectedRobotHost())) {187 robot_poolsize_final = ParameterParserUtil.parseIntegerParam(robot_poolsize.get(exe.getSelectedRobotHost()), poolSizeRobot);188 } else {189 robot_poolsize_final = poolSizeRobot;190 }191 }192 constrains_current.put(const04_key, robot_poolsize_final);193 // Getting Robot Host PoolSize from invariant hashmap.194 int robotext_poolsize_final = 0;195 if (!StringUtil.isNullOrEmpty(exe.getSelectedRobotExtensionHost())) {196 if (robotext_poolsize.containsKey(exe.getSelectedRobotExtensionHost())) {197 robotext_poolsize_final = ParameterParserUtil.parseIntegerParam(robotext_poolsize.get(exe.getSelectedRobotExtensionHost()), poolSizeExecutorExt);198 } else {199 robotext_poolsize_final = poolSizeExecutorExt;200 }201 }202 constrains_current.put(const05_key, robotext_poolsize_final);203 }204 return constrains_current;205 }206 @Override207 public HashMap<String, Integer> getCurrentlyToTreat() throws CerberusException {208 AnswerList<TestCaseExecutionQueueToTreat> answer = new AnswerList<>();209 HashMap<String, Integer> constrains_current = new HashMap<>();210 // Getting all executions to be treated.211 answer = tceiqService.readQueueToTreat();212 List<TestCaseExecutionQueueToTreat> executionsToTreat = answer.getDataList();213 // Calculate constrain values.214 for (TestCaseExecutionQueueToTreat exe : executionsToTreat) {215 String const01_key = TestCaseExecutionQueueToTreat.CONSTRAIN1_GLOBAL;216 String const02_key = TestCaseExecutionQueueToTreat.CONSTRAIN2_APPLIENV + CONST_SEPARATOR + exe.getSystem() + CONST_SEPARATOR + exe.getEnvironment() + CONST_SEPARATOR + exe.getCountry() + CONST_SEPARATOR + exe.getApplication();217 String const03_key = TestCaseExecutionQueueToTreat.CONSTRAIN3_APPLICATION + CONST_SEPARATOR + exe.getApplication();218 String const04_key = TestCaseExecutionQueueToTreat.CONSTRAIN4_ROBOT + CONST_SEPARATOR + exe.getQueueRobotHost();219 String const05_key = TestCaseExecutionQueueToTreat.CONSTRAIN5_EXECUTOREXTENSION + CONST_SEPARATOR + "";220 if (constrains_current.containsKey(const01_key)) {221 constrains_current.put(const01_key, constrains_current.get(const01_key) + 1);222 } else {223 constrains_current.put(const01_key, 1);224 }225 if (constrains_current.containsKey(const02_key)) {226 constrains_current.put(const02_key, constrains_current.get(const02_key) + 1);227 } else {228 constrains_current.put(const02_key, 1);229 }230 if (constrains_current.containsKey(const03_key)) {231 constrains_current.put(const03_key, constrains_current.get(const03_key) + 1);232 } else {233 constrains_current.put(const03_key, 1);234 }235 if (constrains_current.containsKey(const04_key)) {236 constrains_current.put(const04_key, constrains_current.get(const04_key) + 1);237 } else {238 constrains_current.put(const04_key, 1);239 }240 }241 return constrains_current;242 }243 /**244 * {@inheritDoc}245 */246 @Override247 public void executeNextInQueue(boolean forceExecution) throws CerberusException {248 if (!isInstanceActive) {249 LOG.warn("Queue execution disable on that JVM instance.");250 return;251 }252 // Job can be desactivated by parameter.253 if (!(parameterService.getParameterBooleanByKey("cerberus_queueexecution_enable", "", true))) {254 LOG.debug("Queue_Processing_Job disabled by parameter : 'cerberus_queueexecution_enable'.");255 return;256 }257 // Flag in database that job is already running.258 if (myVersionService.flagMyVersionString("queueprocessingjobrunning") || forceExecution) {259 // Saving the timestamps when the job start in database.260 myVersionService.updateMyVersionString("queueprocessingjobstart", String.valueOf(new Date()));261 if (forceExecution) {262 LOG.debug("Forcing Start of Queue_Processing_Job.");263 }264 int nbqueuedexe = 0;265 // We try to submit new jobs until the job does not trigger any new execution.266 // In Other Words : As long as the job trigger new execution, we execute it.267 do {268 if (!(parameterService.getParameterBooleanByKey("cerberus_queueexecution_enable", "", true))) {269 LOG.debug("Queue_Processing_Job disabled by parameter : 'cerberus_queueexecution_enable'.");270 // Flag in database that job is finished.271 myVersionService.updateMyVersionString("queueprocessingjobrunning", "N");272 return;273 }274 nbqueuedexe = 0;275 // Job is not already running, we can trigger it.276 LOG.debug("Starting Queue_Processing_Job.");277 // Getting all executions to be treated.278 AnswerList<TestCaseExecutionQueueToTreat> answer = new AnswerList<>();279 answer = tceiqService.readQueueToTreat();280 List<TestCaseExecutionQueueToTreat> executionsInQueue = answer.getDataList();281 int poolSizeGeneral = 12;282 int poolSizeRobot = 10;283 int poolSizeExecutorExt = 2;284 int queueTimeout = 600000;285 // Init constrain counter (from list of already running execution.).286 int const01_current = 0;287 int const02_current = 0;288 int const03_current = 0;289 int const04_current = 0;290 int const05_current = 0;291 HashMap<String, Integer> constrains_current = new HashMap<>();292 HashMap<String, Integer> robothost_poolsize = new HashMap<>();293 HashMap<String, Integer> executorexthost_poolsize = new HashMap<>();294 HashMap<String, List<RobotExecutor>> robot_executor = new HashMap<>();295 HashMap<String, Robot> robot_header = new HashMap<>();296 poolSizeGeneral = parameterService.getParameterIntegerByKey("cerberus_queueexecution_global_threadpoolsize", "", 12);297 constrains_current = getCurrentlyRunning();298 LOG.debug("Current Constrains : " + constrains_current);299 if (!executionsInQueue.isEmpty()) {300 poolSizeRobot = parameterService.getParameterIntegerByKey("cerberus_queueexecution_defaultrobothost_threadpoolsize", "", 10);301 poolSizeExecutorExt = parameterService.getParameterIntegerByKey("cerberus_queueexecution_defaultexecutorexthost_threadpoolsize", "", 2);302 queueTimeout = parameterService.getParameterIntegerByKey("cerberus_queueexecution_timeout", "", 600000);303 // Init constrain counter (from list of already running execution.).304 const01_current = 0;305 const02_current = 0;306 const03_current = 0;307 const04_current = 0;308 const05_current = 0;309 // Getting RobotHost PoolSize310 robothost_poolsize = invariantService.readToHashMapGp1IntegerByIdname("ROBOTHOST", poolSizeRobot);311 // Getting CerberusExecutorHost PoolSize312 executorexthost_poolsize = invariantService.readToHashMapGp1IntegerByIdname("EXECUTOREXTENSIONHOST", poolSizeExecutorExt);313 // Getting the list of robot in scope of the queue entries. This is to avoid getting all robots from database.314 LOG.debug("Getting List of Robot Executor.");315 for (TestCaseExecutionQueueToTreat exe : executionsInQueue) {316 if (!StringUtil.isNullOrEmpty(exe.getQueueRobot())) {317 robot_executor.put(exe.getQueueRobot(), new ArrayList<>());318 }319 }320 LOG.debug("List of Robot from Queue entries : " + robot_executor);321 robot_executor = robotExecutorService.getExecutorListFromRobotHash(robot_executor);322 LOG.debug("Robot Executor List : " + robot_executor);323 LOG.debug("Getting List of Robot (Header).");324 List<String> listRobotS = new ArrayList<>();325 for (Map.Entry<String, List<RobotExecutor>> entry : robot_executor.entrySet()) {326 String key = entry.getKey();...

Full Screen

Full Screen

readToHashMapGp1IntegerByIdname

Using AI Code Generation

copy

Full Screen

1This file has been truncated. [show original](github.com/vertigo17/Cerberus/...) 2[github.com](github.com/vertigo17/Cerberus/...) 3#### [vertigo17/Cerberus/blob/master/source/src/main/java/org/cerberus/crud/service/impl/InvariantService.java#L91](github.com/vertigo17/Cerberus/...)4 85. public void loadInvariant() {5 87. List<Invariant> invariantList = invariantDAO.findAll();6 90. for (Invariant invariant : invariantList) {7 91. if (invariant.getGp1() == null) {8 92. this.invariantMap.put(invariant.getIdName(), invariant.getValue());9 93. } else {10 94. this.invariantMapGp1.put(invariant.getIdName() + "##" + invariant.getGp1(), invariant.getValue());11 95. }12 96. }13 97. }

Full Screen

Full Screen

readToHashMapGp1IntegerByIdname

Using AI Code Generation

copy

Full Screen

1import groovy.json.JsonOutput2import org.cerberus.crud.service.impl.InvariantService3def invariantService = new InvariantService()4def map = invariantService.readToHashMapGp1IntegerByIdname("GP1_INTEGER")5println JsonOutput.prettyPrint(JsonOutput.toJson(map))6{7}8def gp1 = map.get(idname)9println JsonOutput.prettyPrint(JsonOutput.toJson(gp1))10def idname = map.find{it.value == gp1}.key11println JsonOutput.prettyPrint(JsonOutput.toJson(idname))

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