How to use findByTestTestCase method of org.cerberus.servlet.crud.test.ReadTestCaseLabel class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.test.ReadTestCaseLabel.findByTestTestCase

Source:ReadTestCaseLabel.java Github

copy

Full Screen

...90 AnswerItem answer = new AnswerItem(new MessageEvent(MessageEventEnum.DATA_OPERATION_OK));91 try {92 JSONObject jsonResponse = new JSONObject();93 if ((request.getParameter("test") != null) && (request.getParameter("testcase") != null)) {94 answer = findByTestTestCase(appContext, userHasPermissions, request);95 jsonResponse = (JSONObject) answer.getItem();96 } else {97 answer = findTestCaseLabelList(appContext, userHasPermissions, request);98 jsonResponse = (JSONObject) answer.getItem();99 }100 jsonResponse.put("messageType", answer.getResultMessage().getMessage().getCodeString());101 jsonResponse.put("message", answer.getResultMessage().getDescription());102 jsonResponse.put("sEcho", echo);103 response.getWriter().print(jsonResponse.toString());104 } catch (JSONException e) {105 LOG.warn(e);106 //returns a default error message with the json format that is able to be parsed by the client-side107 response.getWriter().print(AnswerUtil.createGenericErrorAnswer());108 }109 }110 // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">111 /**112 * Handles the HTTP <code>GET</code> method.113 *114 * @param request servlet request115 * @param response servlet response116 * @throws ServletException if a servlet-specific error occurs117 * @throws IOException if an I/O error occurs118 */119 @Override120 protected void doGet(HttpServletRequest request, HttpServletResponse response)121 throws ServletException, IOException {122 try {123 processRequest(request, response);124 } catch (CerberusException ex) {125 LOG.warn(ex);126 }127 }128 /**129 * Handles the HTTP <code>POST</code> method.130 *131 * @param request servlet request132 * @param response servlet response133 * @throws ServletException if a servlet-specific error occurs134 * @throws IOException if an I/O error occurs135 */136 @Override137 protected void doPost(HttpServletRequest request, HttpServletResponse response)138 throws ServletException, IOException {139 try {140 processRequest(request, response);141 } catch (CerberusException ex) {142 LOG.warn(ex);143 }144 }145 /**146 * Returns a short description of the servlet.147 *148 * @return a String containing servlet description149 */150 @Override151 public String getServletInfo() {152 return "Short description";153 }// </editor-fold>154 private AnswerItem findTestCaseLabelList(ApplicationContext appContext, boolean userHasPermissions, HttpServletRequest request) throws JSONException {155 AnswerItem item = new AnswerItem();156 JSONObject object = new JSONObject();157 testCaseLabelService = appContext.getBean(ITestCaseLabelService.class);158 int startPosition = Integer.valueOf(ParameterParserUtil.parseStringParam(request.getParameter("iDisplayStart"), "0"));159 int length = Integer.valueOf(ParameterParserUtil.parseStringParam(request.getParameter("iDisplayLength"), "0"));160 /*int sEcho = Integer.valueOf(request.getParameter("sEcho"));*/161 String searchParameter = ParameterParserUtil.parseStringParam(request.getParameter("sSearch"), "");162 int columnToSortParameter = Integer.parseInt(ParameterParserUtil.parseStringParam(request.getParameter("iSortCol_0"), "0"));163 String sColumns = ParameterParserUtil.parseStringParam(request.getParameter("sColumns"), "Label,Description,sort,type,system,subsystem,svnurl,bugtrackerurl,bugtrackernewurl,deploytype,mavengroupid");164 String columnToSort[] = sColumns.split(",");165 String columnName = columnToSort[columnToSortParameter];166 String sort = ParameterParserUtil.parseStringParam(request.getParameter("sSortDir_0"), "asc");167 Map<String, List<String>> individualSearch = new HashMap<>();168 for (int a = 0; a < columnToSort.length; a++) {169 if (null != request.getParameter("sSearch_" + a) && !request.getParameter("sSearch_" + a).isEmpty()) {170 List<String> search = new ArrayList(Arrays.asList(request.getParameter("sSearch_" + a).split(",")));171 individualSearch.put(columnToSort[a], search);172 }173 }174 AnswerList resp = testCaseLabelService.readByCriteria(startPosition, length, columnName, sort, searchParameter, individualSearch);175 JSONArray jsonArray = new JSONArray();176 if (resp.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {//the service was able to perform the query, then we should get all values177 for (TestCaseLabel label : (List<TestCaseLabel>) resp.getDataList()) {178 jsonArray.put(convertTestCaseLabelToJSONObject(label));179 }180 }181 object.put("hasPermissions", userHasPermissions);182 object.put("contentTable", jsonArray);183 object.put("iTotalRecords", resp.getTotalRows());184 object.put("iTotalDisplayRecords", resp.getTotalRows());185 item.setItem(object);186 item.setResultMessage(resp.getResultMessage());187 return item;188 }189 private AnswerItem findLabelByKey(Integer id, ApplicationContext appContext, boolean userHasPermissions) throws JSONException, CerberusException {190 AnswerItem item = new AnswerItem();191 JSONObject object = new JSONObject();192 ITestCaseLabelService labelService = appContext.getBean(ITestCaseLabelService.class);193 //finds the project 194 AnswerItem answer = labelService.readByKeyTech(id);195 if (answer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {196 //if the service returns an OK message then we can get the item and convert it to JSONformat197 TestCaseLabel label = (TestCaseLabel) answer.getItem();198 JSONObject response = convertTestCaseLabelToJSONObject(label);199 object.put("contentTable", response);200 }201 object.put("hasPermissions", userHasPermissions);202 item.setItem(object);203 item.setResultMessage(answer.getResultMessage());204 return item;205 }206 private JSONObject convertTestCaseLabelToJSONObject(TestCaseLabel testCaseLabel) throws JSONException {207 Gson gson = new Gson();208 JSONObject result = new JSONObject(gson.toJson(testCaseLabel));209 return result;210 }211 private AnswerItem findByTestTestCase(ApplicationContext appContext, boolean userHasPermissions, HttpServletRequest request) throws JSONException {212 AnswerItem item = new AnswerItem();213 JSONObject object = new JSONObject();214 testCaseLabelService = appContext.getBean(ITestCaseLabelService.class);215 String test = request.getParameter("test");216 String testcase = request.getParameter("testcase");217 AnswerList resp = testCaseLabelService.readByTestTestCase(test, testcase);218 JSONArray jsonArray = new JSONArray();219 if (resp.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {//the service was able to perform the query, then we should get all values220 for (TestCaseLabel label : (List<TestCaseLabel>) resp.getDataList()) {221 jsonArray.put(convertTestCaseLabelToJSONObject(label));222 }223 }224 object.put("hasPermissions", userHasPermissions);225 object.put("contentTable", jsonArray);...

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.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful