How to use getRequestParams method of org.evomaster.client.java.controller.problem.rpc.schema.EndpointSchema class

Best EvoMaster code snippet using org.evomaster.client.java.controller.problem.rpc.schema.EndpointSchema.getRequestParams

Source:SutController.java Github

copy

Full Screen

...477 if (schema != null){478 EndpointSchema actionSchema = schema.getOneEndpointWithSeededDto(actionDto);479 if (actionSchema != null){480 EndpointSchema copy = actionSchema.copyStructure();481 for (int i = 0; i < copy.getRequestParams().size(); i++){482 // TODO need to check if generic type could be handled with jackson483 NamedTypedValue p = copy.getRequestParams().get(i);484 try {485 String stringValue = actionDto.inputParams.get(i);486// Object value = objectMapper.readValue(stringValue, p.getType().getClazz());487 p.setValueBasedOnInstanceOrJson(stringValue);488 } catch (JsonProcessingException e) {489 throw new IllegalStateException(490 String.format("Seeded Test Error: cannot parse the seeded test %s at the parameter %d with error msg: %s", actionDto, i, e.getMessage()));491 }492 }493 test.add(copy.getDto());494 }else {495 throw new IllegalStateException("Seeded Test Error: cannot find the action "+actionDto.functionName);496 }497 } else {498 throw new IllegalStateException("Seeded Test Error: cannot find the interface "+ actionDto.interfaceName);499 }500 }501 results.add(test);502 } else {503 SimpleLogger.warn("Seeded Test: empty RPC function calls for the test "+ dto.testName);504 }505 }506 return results;507 }508 /**509 * Either there is no connection, or, if there is, then it must have P6Spy configured.510 * But this might not apply to all kind controllers511 *512 * @return false if the verification failed513 */514 @Deprecated515 public final boolean verifySqlConnection(){516 return true;517// Connection connection = getConnection();518// if(connection == null519// //check does not make sense for External520// || !(this instanceof EmbeddedSutController)){521// return true;522// }523//524// /*525// bit hacky/brittle, but seems there is no easy way to check if a connection is526// using P6Spy.527// However, the name of driver's package would appear when doing a toString on it528// */529// String info = connection.toString();530//531// return info.contains("p6spy");532 }533 /**534 * Re-initialize all internal data to enable a completely new search phase535 * which should be independent from previous ones536 */537 public abstract void newSearch();538 /**539 * Re-initialize some internal data needed before running a new test540 */541 public final void newTest() {542 actionIndex = -1;543 resetExtraHeuristics();544 extras.clear();545 //clean all accessed table in a test546 accessedTables.clear();547 newTestSpecificHandler();548 // set executingAction state false for newTest549 setExecutingAction(false);550 }551 /**552 * As some heuristics are based on which action (eg HTTP call, or click of button)553 * in the test sequence is executed, and their order, we need to keep track of which554 * action does cover what.555 *556 * @param dto the DTO with the information about the action (eg its index in the test)557 */558 public final void newAction(ActionDto dto) {559 if (dto.index > extras.size()) {560 extras.add(computeExtraHeuristics());561 }562 this.actionIndex = dto.index;563 resetExtraHeuristics();564 newActionSpecificHandler(dto);565 }566 public final void executeHandleLocalAuthenticationSetup(RPCActionDto dto, ActionResponseDto responseDto){567 LocalAuthSetupSchema endpointSchema = new LocalAuthSetupSchema();568 endpointSchema.setValue(dto);569 handleLocalAuthenticationSetup(endpointSchema.getAuthenticationInfo());570 if (dto.responseVariable != null && dto.doGenerateTestScript){571 responseDto.testScript = endpointSchema.newInvocationWithJava(dto.responseVariable, dto.controllerVariable,dto.clientVariable);572 }573 }574 /**575 * execute a RPC request based on the specified dto576 * @param dto is the action DTO to be executed577 */578 public final void executeAction(RPCActionDto dto, ActionResponseDto responseDto) {579 EndpointSchema endpointSchema = getEndpointSchema(dto);580 if (dto.responseVariable != null && dto.doGenerateTestScript){581 try{582 responseDto.testScript = endpointSchema.newInvocationWithJava(dto.responseVariable, dto.controllerVariable,dto.clientVariable);583 }catch (Exception e){584 SimpleLogger.warn("Fail to generate test script"+e.getMessage());585 }586 if (responseDto.testScript ==null)587 SimpleLogger.warn("Null test script for action "+dto.actionName);588 }589 Object response;590 try {591 response = executeRPCEndpoint(dto, false);592 } catch (Exception e) {593 throw new RuntimeException("ERROR: target exception should be caught, but "+ e.getMessage());594 }595 //handle exception596 if (response instanceof Exception){597 try{598 RPCExceptionHandler.handle(response, responseDto, endpointSchema, getRPCType(dto));599 return;600 } catch (Exception e){601 SimpleLogger.error("ERROR: fail to handle exception instance to dto "+ e.getMessage());602 //throw new RuntimeException("ERROR: fail to handle exception instance to dto "+ e.getMessage());603 }604 }605 if (endpointSchema.getResponse() != null){606 if (response != null){607 try{608 // successful execution609 NamedTypedValue resSchema = endpointSchema.getResponse().copyStructureWithProperties();610 resSchema.setValueBasedOnInstance(response);611 responseDto.rpcResponse = resSchema.getDto();612 if (dto.doGenerateAssertions && dto.responseVariable != null)613 responseDto.assertionScript = resSchema.newAssertionWithJava(dto.responseVariable, dto.maxAssertionForDataInCollection);614 else615 responseDto.jsonResponse = objectMapper.writeValueAsString(response);616 } catch (Exception e){617 SimpleLogger.error("ERROR: fail to set successful response instance value to dto "+ e.getMessage());618 //throw new RuntimeException("ERROR: fail to set successful response instance value to dto "+ e.getMessage());619 }620 try {621 responseDto.customizedCallResultCode = categorizeBasedOnResponse(response);622 } catch (Exception e){623 SimpleLogger.error("ERROR: fail to categorize result with implemented categorizeBasedOnResponse "+ e.getMessage());624 //throw new RuntimeException("ERROR: fail to categorize result with implemented categorizeBasedOnResponse "+ e.getMessage());625 }626 }627 }628 }629 private Object executeRPCEndpoint(RPCActionDto dto, boolean throwTargetException) throws Exception {630 Object client = ((RPCProblem)getProblemInfo()).getClient(dto.interfaceId);631 EndpointSchema endpointSchema = getEndpointSchema(dto);632 return executeRPCEndpointCatchTargetException(client, endpointSchema, throwTargetException);633 }634 private Object executeRPCEndpointCatchTargetException(Object client, EndpointSchema endpoint, boolean throwTargetException) throws Exception {635 Object res;636 try {637 res = executeRPCEndpoint(client, endpoint);638 } catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException e) {639 throw new RuntimeException("EM RPC REQUEST EXECUTION ERROR: fail to process a RPC request with "+ e.getMessage());640 } catch (InvocationTargetException e) {641 if (throwTargetException)642 throw (Exception) e.getTargetException();643 else644 res = e.getTargetException();645 } catch (Exception e){646 SimpleLogger.error("ERROR: other exception exists "+ e.getMessage());647 if (throwTargetException) throw e;648 else res = e;649 }650 return res;651 }652 @Override653 public Object executeRPCEndpoint(String json) throws Exception{654 try {655 RPCActionDto dto = objectMapper.readValue(json, RPCActionDto.class);656 return executeRPCEndpoint(dto, true);657 } catch (JsonProcessingException e) {658 SimpleLogger.error("Failed to extract the json: " + e.getMessage());659 }660 return null;661 }662 /**663 * execute a RPC request with specified client664 * @param client is the client to execute the endpoint665 * @param endpoint is the endpoint to be executed666 */667 private final Object executeRPCEndpoint(Object client, EndpointSchema endpoint) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException, ClassNotFoundException {668 if (endpoint.getRequestParams().isEmpty()){669 Method method = client.getClass().getDeclaredMethod(endpoint.getName());670 return method.invoke(client);671 }672 Object[] params = new Object[endpoint.getRequestParams().size()];673 Class<?>[] types = new Class<?>[endpoint.getRequestParams().size()];674 try{675 for (int i = 0; i < params.length; i++){676 NamedTypedValue param = endpoint.getRequestParams().get(i);677 params[i] = param.newInstance();678 types[i] = param.getType().getClazz();679 }680 } catch (Exception e){681 throw new RuntimeException("ERROR: fail to instance value of input parameters based on dto/schema, msg error:"+e.getMessage());682 }683 Method method = client.getClass().getDeclaredMethod(endpoint.getName(), types);684 return method.invoke(client, params);685 }686 private EndpointSchema getEndpointSchema(RPCActionDto dto){687 InterfaceSchema interfaceSchema = rpcInterfaceSchema.get(dto.interfaceId);688 EndpointSchema endpointSchema = interfaceSchema.getOneEndpoint(dto).copyStructure();689 endpointSchema.setValue(dto);690 return endpointSchema;...

Full Screen

Full Screen

Source:EndpointSchema.java Github

copy

Full Screen

...82 }83 public String getName() {84 return name;85 }86 public List<NamedTypedValue> getRequestParams() {87 return requestParams;88 }89 public NamedTypedValue getResponse() {90 return response;91 }92 public List<NamedTypedValue> getExceptions() {93 return exceptions;94 }95 /**96 *97 * @return a dto with a respect to this endpoint98 * such dto would be used between core and driver99 */100 public RPCActionDto getDto(){101 RPCActionDto dto = new RPCActionDto();102 dto.actionName = name;103 dto.interfaceId = interfaceName;104 dto.clientInfo = clientTypeName;105 if (requestParams != null)106 dto.requestParams = requestParams.stream().map(NamedTypedValue::getDto).collect(Collectors.toList());107 if (response != null)108 dto.responseParam = response.getDto();109 if (relatedCustomizedCandidates != null)110 dto.relatedCustomization = new HashSet<>(relatedCustomizedCandidates);111 if (requiredAuthCandidates != null)112 dto.requiredAuthCandidates = new ArrayList<>(requiredAuthCandidates);113 dto.isAuthorized = authRequired;114 return dto;115 }116 /**117 *118 * @param dto is a dto of rpc call which contains value info119 * @return if this endpoint matches the specified dto120 */121 public boolean sameEndpoint(RPCActionDto dto){122 return dto.actionName.equals(name)123 // only check input parameters124 // && (getResponse() == null || getResponse().sameParam(dto.responseParam))125 && ((getRequestParams() == null && dto.requestParams == null) || getRequestParams().size() == dto.requestParams.size())126 && IntStream.range(0, getRequestParams().size()).allMatch(i-> getRequestParams().get(i).sameParam(dto.requestParams.get(i)));127 }128 /**129 * find an endpoint schema based on seeded tests130 * @param dto a seeded test dto131 * @return an endpoint schema132 */133 public boolean sameEndpoint(SeededRPCActionDto dto){134 return dto.functionName.equals(name)135 // only check input parameters136 // && (getResponse() == null || getResponse().sameParam(dto.responseParam))137 && ((getRequestParams() == null && dto.inputParams == null) || getRequestParams().size() == dto.inputParams.size())138 && IntStream.range(0, getRequestParams().size()).allMatch(i-> getRequestParams().get(i).getType().getFullTypeName().equals(dto.inputParamTypes.get(i)));139 }140 /**141 *142 * @return a copy of this endpoint which contains its structure but not values143 */144 public EndpointSchema copyStructure(){145 return new EndpointSchema(146 name, interfaceName, clientTypeName,147 requestParams == null? null: requestParams.stream().map(NamedTypedValue::copyStructureWithProperties).collect(Collectors.toList()),148 response == null? null: response.copyStructureWithProperties(), exceptions == null? null: exceptions.stream().map(NamedTypedValue::copyStructureWithProperties).collect(Collectors.toList()),149 authRequired, requiredAuthCandidates, relatedCustomizedCandidates);150 }151 /**152 * set value of endpoint based on dto153 * @param dto contains value info the endpoint154 * note that the dto is typically generated by core side, ie, search155 */156 public void setValue(RPCActionDto dto){157 if (dto.requestParams != null ){158 IntStream.range(0, dto.requestParams.size()).forEach(s-> requestParams.get(s).setValueBasedOnDto(dto.requestParams.get(s)));159 }160 // might be not useful161 if (dto.responseParam != null)162 response.setValueBasedOnDto(dto.responseParam);163 }164 /**165 * process to generate java code to invoke this request166 * @param responseVarName specifies a variable name representing a response of this endpoint167 * @param clientVariable168 * @return code to send the request and set the response if exists169 */170 public List<String> newInvocationWithJava(String responseVarName, String controllerVarName, String clientVariable){171 List<String> javaCode = new ArrayList<>();172 if (response != null){173 boolean isPrimitive = (response.getType() instanceof PrimitiveOrWrapperType) && !((PrimitiveOrWrapperType)response.getType()).isWrapper;174 javaCode.add(CodeJavaGenerator.oneLineInstance(true, true, response.getType().getTypeNameForInstance(), responseVarName, null, isPrimitive));175 }176 javaCode.add("{");177 int indent = 1;178 for (NamedTypedValue param: getRequestParams()){179 javaCode.addAll(param.newInstanceWithJava(indent));180 }181 String paramVars = requestParams.stream().map(NamedTypedValue::getName).collect(Collectors.joining(","));182 String client = clientVariable;183 if (client == null)184 client = CodeJavaGenerator.castToType(clientTypeName, CodeJavaGenerator.getGetClientMethod(controllerVarName,"\""+interfaceName+"\""));185 assert client != null;186 CodeJavaGenerator.addCode(187 javaCode,188 CodeJavaGenerator.setInstance(response!= null,189 responseVarName,190 CodeJavaGenerator.methodInvocation(client, getName(), paramVars)),191 indent);192 javaCode.add("}");...

Full Screen

Full Screen

Source:LocalAuthSetupSchema.java Github

copy

Full Screen

...20 *21 * @return value of AuthenticationInfo22 */23 public String getAuthenticationInfo(){24 return ((StringParam)getRequestParams().get(0)).getValue();25 }26 @Override27 public List<String> newInvocationWithJava(String responseVarName, String controllerVarName, String clientVariable) {28 List<String> javaCode = new ArrayList<>();29 javaCode.add("{");30 int indent = 1;31 for (NamedTypedValue param: getRequestParams()){32 javaCode.addAll(param.newInstanceWithJava(indent));33 }34 String paramVars = getRequestParams().stream().map(NamedTypedValue::getName).collect(Collectors.joining(","));35 CodeJavaGenerator.addCode(36 javaCode,37 CodeJavaGenerator.methodInvocation(controllerVarName, getName(), paramVars) + CodeJavaGenerator.appendLast(),38 indent);39 javaCode.add("}");40 return javaCode;41 }42 /**43 *44 * @param dto a RPCAction dto45 * @return if the action is to local method46 */47 public static boolean isLocalAuthSetup(RPCActionDto dto){48 return dto.actionName.equals(HANDLE_LOCAL_AUTHENTICATION_SETUP_METHOD_NAME) && dto.interfaceId.equals(EM_LOCAL_METHOD) && dto.clientInfo == null;...

Full Screen

Full Screen

getRequestParams

Using AI Code Generation

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.schema;2import java.util.List;3import java.util.Map;4public class EndpointSchema {5 private String method;6 private String path;7 private List<ParameterSchema> parameters;8 private Map<String, String> headers;9 private String body;10 private String query;11 public EndpointSchema(String method, String path, List<ParameterSchema> parameters, Map<String, String> headers, String body, String query) {12 this.method = method;13 this.path = path;14 this.parameters = parameters;15 this.headers = headers;16 this.body = body;17 this.query = query;18 }19 public String getMethod() {20 return method;21 }22 public String getPath() {23 return path;24 }25 public List<ParameterSchema> getParameters() {26 return parameters;27 }28 public Map<String, String> getHeaders() {29 return headers;30 }31 public String getBody() {32 return body;33 }34 public String getQuery() {35 return query;36 }37 public Map<String, String> getRequestParams() {38 return null;39 }40}41package org.evomaster.client.java.controller.problem.rpc.schema;42import java.util.List;43import java.util.Map;44public class EndpointSchema {45 private String method;46 private String path;47 private List<ParameterSchema> parameters;48 private Map<String, String> headers;49 private String body;50 private String query;51 public EndpointSchema(String method, String path, List<ParameterSchema> parameters, Map<String, String> headers, String body, String query) {52 this.method = method;53 this.path = path;54 this.parameters = parameters;55 this.headers = headers;56 this.body = body;57 this.query = query;58 }59 public String getMethod() {60 return method;61 }62 public String getPath() {63 return path;64 }65 public List<ParameterSchema> getParameters() {66 return parameters;67 }68 public Map<String, String> getHeaders() {69 return headers;70 }71 public String getBody() {72 return body;73 }74 public String getQuery() {75 return query;76 }77 public Map<String, String> getRequestParams() {

Full Screen

Full Screen

getRequestParams

Using AI Code Generation

copy

Full Screen

1public class 3 {2 public static void main(String[] args) {3 EndpointSchema endpointSchema = new EndpointSchema();4 List<Param> params = endpointSchema.getRequestParams("org.evomaster.client.java.controller.problem.rpc.RpcController", "getRpc");5 System.out.println(params);6 }7}8[Param{name='id', type='int', isPrimitive=true, isEnum=false, isCollection=false, isMap=false, isDate=false, isString=false, isFile=false, isHeader=false, isCookie=false, isPathParam=false, isQueryParam=true, isFormParam=false, isRequestBody=false, isMultipart=false, isJson=false, isXml=false, isYaml=false, isHtml=false, isText=false, isBinary=false, isCsv=false, isTsv=false, isJsonSchema=false, isXmlSchema=false, isYamlSchema=false, isHtmlSchema=false, isTextSchema=false, isBinarySchema=false, isCsvSchema=false, isTsvSchema=false, isSwagger=false, isSwaggerSchema=false, isOas=false, isOasSchema=false, isOas3=false, isOas3Schema=false, isJsonSchemaSchema=false, isXmlSchemaSchema=false, isYamlSchemaSchema=false, isHtmlSchemaSchema=false, isTextSchemaSchema=false, isBinarySchemaSchema=false, isCsvSchemaSchema=false, isTsvSchemaSchema=false, isJsonSchemaOrSwagger=false, isXmlSchemaOrOas=false, isYamlSchemaOrOas=false, isHtmlSchemaOrOas=false, isTextSchemaOrOas=false, isBinarySchemaOrOas=false, isCsvSchemaOrOas=false, isTsvSchemaOrOas=false, isJsonSchemaOrSwaggerSchema=false, isXmlSchemaOrOasSchema=false, isYamlSchemaOrOasSchema=false, isHtmlSchemaOrOasSchema=false, isTextSchemaOrOasSchema=false, isBinarySchemaOrOasSchema=false, isCsvSchemaOrOasSchema=false, isTsvSchemaOrOasSchema=false, isJsonSchemaOrSwaggerOrOas=false, isXmlSchemaOrSwaggerOrOas=false, isYamlSchemaOrSwaggerOrOas=false, isHtmlSchemaOrSwaggerOrOas=false, isTextSchemaOrSwaggerOrOas=false, isBinarySchemaOrSwaggerOrOas=false, isCsvSchemaOrSwaggerOrO

Full Screen

Full Screen

getRequestParams

Using AI Code Generation

copy

Full Screen

1import org.evomaster.client.java.controller.problem.rpc.schema.EndpointSchema;2import java.util.List;3import java.util.Map;4public class 3 {5 public static void main(String[] args) {6 EndpointSchema endpointSchema = new EndpointSchema();

Full Screen

Full Screen

getRequestParams

Using AI Code Generation

copy

Full Screen

1public class 3 {2 public static void main(String[] args) {3 EndpointSchema endpointSchema = new EndpointSchema();4 String[] requestParams = endpointSchema.getRequestParams();5 for (int i = 0; i < requestParams.length; i++) {6 System.out.println("requestParams[" + i + "] = " + requestParams[i]);7 }8 }9}10public class 4 {11 public static void main(String[] args) {12 EndpointSchema endpointSchema = new EndpointSchema();13 String[] responseParams = endpointSchema.getResponseParams();14 for (int i = 0; i < responseParams.length; i++) {15 System.out.println("responseParams[" + i + "] = " + responseParams[i]);16 }17 }18}19public class 5 {20 public static void main(String[] args) {21 EndpointSchema endpointSchema = new EndpointSchema();22 String responseSchema = endpointSchema.getResponseSchema();23 System.out.println("responseSchema = " + responseSchema);24 }25}26responseSchema = {"type":"object","properties":{"id":{"type":"integer","format":"int32"},"name":{"type":"string"}}}27public class 6 {28 public static void main(String[] args) {29 EndpointSchema endpointSchema = new EndpointSchema();30 String[] responseHeaders = endpointSchema.getResponseHeaders();31 for (int i = 0; i < responseHeaders.length; i++) {32 System.out.println("responseHeaders[" + i + "] = " + responseHeaders[i]);33 }34 }35}

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 EvoMaster 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