How to use processRequest method of org.cerberus.servlet.crud.testdata.BulkRenameDataLib class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.testdata.BulkRenameDataLib.processRequest

Source:BulkRenameDataLib.java Github

copy

Full Screen

...50 * @param response servlet response51 * @throws ServletException if a servlet-specific error occurs52 * @throws IOException if an I/O error occurs53 */54 protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {55 ApplicationContext appContext = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());56 ITestDataLibService tdls = appContext.getBean(ITestDataLibService.class);57 JSONObject jsonResponse = new JSONObject();58 response.setContentType("application/json");59 response.setCharacterEncoding("utf8");60 Answer ans = new Answer();61 List<Answer> ansList = new ArrayList<>();62 boolean error = true;63 try {64 /**65 * Parsing and securing all required parameters.66 */67 if ((request.getParameter("oldname") != null && !request.getParameter("oldname").isEmpty()) && (request.getParameter("newname") != null && !request.getParameter("newname").isEmpty())) {68 error = false;69 }70 } finally {71 if (error) {72 MessageEvent msg = new MessageEvent(MessageEventEnum.DATA_OPERATION_VALIDATIONS_ERROR);73 msg.setDescription(msg.getDescription().replace("%DESCRIPTION%", "at least one of the two required parameter is empty"));74 ans.setResultMessage(msg);75 } else {76 String oldname = request.getParameter("oldname");77 String newname = request.getParameter("newname");78 ansList = tdls.bulkRename(oldname, newname);79 /**80 * Update operation finished with success, then the logging81 * entry must be added.82 */83 ILogEventService logEventService = appContext.getBean(LogEventService.class);84 logEventService.createForPrivateCalls("/BulkRenameDataLib", "UPDATE", "Rename TestDataLib : ['" + oldname + "'] - new name: '" + newname + "'", request);85 MessageEvent msg = new MessageEvent(MessageEventEnum.GENERIC_OK);86 ans.setResultMessage(msg);87 }88 try {89 //sets the message returned by the operations90 jsonResponse.put("messageType", ans.getResultMessage().getMessage().getCodeString());91 jsonResponse.put("message", ans.getResultMessage().getDescription());92 if (!error) {93 // Datalib answer management94 String DataLibAnswer = ansList.get(0).getResultMessage().getDescription();95 jsonResponse.put("DataLibAnswer", DataLibAnswer);96 // Testcase Country Properties answer management97 String TestCaseCountryPropertiesAnswer = ansList.get(1).getResultMessage().getDescription();98 jsonResponse.put("TestCasePropertiesAnswer", TestCaseCountryPropertiesAnswer);99 }100 response.getWriter().print(jsonResponse);101 response.getWriter().flush();102 } catch (JSONException ex) {103 LOG.warn(ex);104 response.getWriter().print(AnswerUtil.createGenericErrorAnswer());105 response.getWriter().flush();106 }107 }108 }109 @Override110 protected void doGet(HttpServletRequest request, HttpServletResponse response)111 throws ServletException, IOException {112 processRequest(request, response);113 }114 @Override115 protected void doPost(HttpServletRequest request, HttpServletResponse response)116 throws ServletException, IOException {117 processRequest(request, response);118 }119 @Override120 public String getServletInfo() {121 return "Process a bulk rename for a Datalib name in the Datalib and TestCaseCountryProperties";122 }123}...

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 Cerberus-source automation tests on LambdaTest cloud grid

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

Most used method in BulkRenameDataLib

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful