How to use getSortingInformation method of org.cerberus.servlet.crud.test.testcase.ReadTestCase class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.test.testcase.ReadTestCase.getSortingInformation

Source:ReadTestCase.java Github

copy

Full Screen

...136 String searchParameter = ParameterParserUtil.parseStringParam(request.getParameter("sSearch"), "");137 String sColumns = ParameterParserUtil.parseStringParam(request.getParameter("sColumns"), "tec.test,tec.testcase,tec.application,project,ticket,description,detailedDescription,readonly,bugtrackernewurl,deploytype,mavengroupid");138 String columnToSort[] = sColumns.split(",");139 List<String> individualLike = new ArrayList<>(Arrays.asList(ParameterParserUtil.parseStringParam(request.getParameter("sLike"), "").split(",")));140 StringBuilder sortInformation = getSortingInformation(columnToSort, request);141 Map<String, List<String>> individualSearch = getIndivualSearch(request, columnToSort, individualLike);142 AnswerList<TestCase> testCases = testCaseService.findTestCasesByTestByCriteriaWithDependencies(system, test, startPosition, length, sortInformation.toString(), searchParameter, individualSearch, isCalledFromListPage);143 JSONArray jsonArray = new JSONArray();144 for (TestCase testCase : testCases.getDataList()) {145 JSONObject jsonTestCase = testCase.toJson();146 jsonTestCase.put("hasPermissionsUpdate", testCaseService.hasPermissionsUpdate(testCase, request));147 jsonTestCase.put("hasPermissionsDelete", testCaseService.hasPermissionsDelete(testCase, request));148 jsonArray.put(jsonTestCase);149 }150 object.put("hasPermissionsCreate", testCaseService.hasPermissionsCreate(null, request));151 object.put("contentTable", jsonArray);152 object.put("iTotalRecords", testCases.getTotalRows());153 object.put("iTotalDisplayRecords", testCases.getTotalRows());154 answer.setItem(object);155 answer.setResultMessage(testCases.getResultMessage());156 return answer;157 }158 private AnswerItem<JSONObject> findTestCaseByTestTestCase(String test, String testCase, HttpServletRequest request, boolean withSteps) throws JSONException, CerberusException {159 AnswerItem<JSONObject> answerItem = new AnswerItem<>();160 JSONObject jsonResponse = new JSONObject();161 AnswerItem<TestCase> answerTestCase;162 answerTestCase = testCaseService.findTestCaseByKeyWithDependencies(test, testCase, withSteps);163 if (answerTestCase.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode()) && answerTestCase.getItem() != null) {164 TestCase tc = answerTestCase.getItem();165 if (withSteps) {166 jsonResponse.put("hasPermissionsStepLibrary", (request.isUserInRole("TestStepLibrary")));167 }168 jsonResponse.put("hasPermissionsUpdate", testCaseService.hasPermissionsUpdate(tc, request));169 jsonResponse.put("hasPermissionsDelete", testCaseService.hasPermissionsDelete(tc, request));170 jsonResponse.put("contentTable", new JSONArray().put(tc.toJson()));171 } else {172 answerItem.setResultMessage(new MessageEvent(MessageEventEnum.DATA_OPERATION_NOT_FOUND_OR_NOT_AUTHORIZE));173 return answerItem;174 }175 answerItem.setItem(jsonResponse);176 answerItem.setResultMessage(answerTestCase.getResultMessage());177 LOG.debug(answerItem.getItem());178 return answerItem;179 }180 private AnswerItem<JSONObject> findTestCaseByVarious(HttpServletRequest request) throws JSONException {181 AnswerItem<JSONObject> item = new AnswerItem<>();182 JSONObject object = new JSONObject();183 JSONArray dataArray = new JSONArray();184 String[] test = request.getParameterValues("test");185 String[] idProject = request.getParameterValues("project");186 String[] app = request.getParameterValues("application");187 String[] creator = request.getParameterValues("creator");188 String[] implementer = request.getParameterValues("implementer");189 String[] system = request.getParameterValues("system");190 String[] campaign = request.getParameterValues("campaign");191 String[] priority = request.getParameterValues("priority");192 String[] type = request.getParameterValues("type");193 String[] status = request.getParameterValues("status");194 String[] labelid = request.getParameterValues("labelid");195 List<Integer> labels = new ArrayList<>();196 if (labelid != null) {197 for (int i = 0; i < labelid.length; i++) {198 String string = labelid[i];199 labels.add(Integer.valueOf(string));200 }201 labels = labelService.enrichWithChild(labels);202 }203 int length = ParameterParserUtil.parseIntegerParam(request.getParameter("length"), -1);204 AnswerList<TestCase> answer = testCaseService.readByVarious(test, app, creator, implementer, system, campaign, labels, priority, type, status, length);205 if (answer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {206 for (TestCase tc : answer.getDataList()) {207 JSONObject value = tc.toJson();208 dataArray.put(value);209 }210 }211 object.put("contentTable", dataArray);212 item.setItem(object);213 item.setResultMessage(answer.getResultMessage());214 return item;215 }216 private AnswerItem<JSONObject> findTestCaseByCampaign(String campaign) throws JSONException {217 AnswerItem<JSONObject> answerItem = new AnswerItem<>();218 JSONObject jsonResponse = new JSONObject();219 JSONArray dataArray = new JSONArray();220 AnswerList<TestCase> testCases = testCaseService.findTestCaseByCampaign(campaign);221 if (testCases.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {//the service was able to perform the query, then we should get all values222 for (TestCase testCase : testCases.getDataList()) {223 JSONObject jsonTestCase = testCase.toJson();224 dataArray.put(jsonTestCase);225 }226 }227 jsonResponse.put("contentTable", dataArray);228 answerItem.setItem(jsonResponse);229 answerItem.setResultMessage(testCases.getResultMessage());230 return answerItem;231 }232 private AnswerItem<JSONObject> findDistinctValuesOfColumn(List<String> system, String test, HttpServletRequest request, String columnName) throws JSONException {233 AnswerItem<JSONObject> answerItem = new AnswerItem<>();234 JSONObject jsonResponse = new JSONObject();235 String searchParameter = ParameterParserUtil.parseStringParam(request.getParameter("sSearch"), "");236 String sColumns = ParameterParserUtil.parseStringParam(request.getParameter("sColumns"), "tec.test,tec.testcase,application,project,ticket,description,detailedDescription,readonly,bugtrackernewurl,deploytype,mavengroupid");237 String columnToSort[] = sColumns.split(",");238 List<String> individualLike = new ArrayList<>(Arrays.asList(ParameterParserUtil.parseStringParam(request.getParameter("sLike"), "").split(",")));239 Map<String, List<String>> individualSearch = getIndivualSearch(request, columnToSort, individualLike);240 AnswerList testCaseList = testCaseService.readDistinctValuesByCriteria(system, test, searchParameter, individualSearch, columnName);241 jsonResponse.put("distinctValues", testCaseList.getDataList());242 answerItem.setItem(jsonResponse);243 answerItem.setResultMessage(testCaseList.getResultMessage());244 return answerItem;245 }246 private StringBuilder getSortingInformation(String columnToSort[], HttpServletRequest request) {247 int numberOfColumnToSort = Integer.parseInt(ParameterParserUtil.parseStringParam(request.getParameter("iSortingCols"), "1"));248 int columnToSortParameter = 0;249 String sort = "asc";250 StringBuilder sortInformation = new StringBuilder();251 for (int i = 0; i < numberOfColumnToSort; i++) {252 columnToSortParameter = Integer.parseInt(ParameterParserUtil.parseStringParam(request.getParameter("iSortCol_" + i), "0"));253 sort = ParameterParserUtil.parseStringParam(request.getParameter("sSortDir_" + i), "asc");254 String columnName = columnToSort[columnToSortParameter];255 sortInformation.append(columnName).append(" ").append(sort);256 if (i != numberOfColumnToSort - 1) {257 sortInformation.append(" , ");258 }259 }260 return sortInformation;...

Full Screen

Full Screen

getSortingInformation

Using AI Code Generation

copy

Full Screen

1import org.cerberus.servlet.crud.test.testcase.ReadTestCase;2ReadTestCase readTestCase = new ReadTestCase();3readTestCase.getSortingInformation("Test");4import org.cerberus.servlet.crud.test.testcase.ReadTestCase;5ReadTestCase readTestCase = new ReadTestCase();6readTestCase.getSortingInformation("Test");7import org.cerberus.servlet.crud.test.testcase.ReadTestCase;8ReadTestCase readTestCase = new ReadTestCase();9readTestCase.getSortingInformation("Test");10import org.cerberus.servlet.crud.test.testcase.ReadTestCase;11ReadTestCase readTestCase = new ReadTestCase();12readTestCase.getSortingInformation("Test");13import org.cerberus.servlet.crud.test.testcase.ReadTestCase;14ReadTestCase readTestCase = new ReadTestCase();15readTestCase.getSortingInformation("Test");16import org.cerberus.servlet.crud.test.testcase.ReadTestCase;17ReadTestCase readTestCase = new ReadTestCase();18readTestCase.getSortingInformation("Test");19import org.cerberus.servlet.crud.test.test

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