How to use NamedTypedValue class of org.evomaster.client.java.controller.problem.rpc.schema.params package

Best EvoMaster code snippet using org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue

Source:EndpointSchema.java Github

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.schema;2import org.evomaster.client.java.controller.api.dto.problem.rpc.RPCActionDto;3import org.evomaster.client.java.controller.api.dto.problem.rpc.SeededRPCActionDto;4import org.evomaster.client.java.controller.problem.rpc.CodeJavaGenerator;5import org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue;6import org.evomaster.client.java.controller.problem.rpc.schema.types.PrimitiveOrWrapperType;7import java.util.ArrayList;8import java.util.HashSet;9import java.util.List;10import java.util.Set;11import java.util.stream.Collectors;12import java.util.stream.IntStream;13/**14 * endpoint dto for RPC service15 */16public class EndpointSchema {17 /**18 * name of the endpoint19 */20 private final String name;21 /**22 * name of the interface23 */24 private final String interfaceName;25 /**26 * name of type of the client27 */28 private final String clientTypeName;29 /**30 * request params of the endpoint31 */32 private final List<NamedTypedValue> requestParams;33 /**34 * response of the endpoint35 */36 private final NamedTypedValue response;37 /**38 * a list of exceptions which could throw from this endpoint39 */40 private final List<NamedTypedValue> exceptions;41 /**42 * whether the endpoint is clarified with auth43 */44 private final boolean authRequired;45 /**46 * a list of index of auth info based on what are configured in the driver47 */48 private final List<Integer> requiredAuthCandidates;49 public Set<String> getRelatedCustomizedCandidates() {50 return relatedCustomizedCandidates;51 }52 /**53 * a list of references of the related customizations related to this endpoint54 * the reference now is defined based on the index of a list specified in the driver55 */56 private final Set<String> relatedCustomizedCandidates;57 /**58 *59 * @param name is the name of the endpoint, ie, method name60 * @param interfaceName is the full name of the interface61 * @param clientTypeName is the client type with its full name62 * @param requestParams is a list of parameters in request63 * @param response is the response, ie, return64 * @param exceptions is related to exception for this endpoint65 * @param authRequired specifies whether the endpoint clearly declares that it requires auth, eg with annotation66 * note that if authRequired is false, the endpoint could also apply global auth setup67 * @param requiredAuthCandidates represents required candidates for its auth setup68 * @param relatedCustomizedCandidates represents related customizations based on their references69 */70 public EndpointSchema(String name, String interfaceName, String clientTypeName,71 List<NamedTypedValue> requestParams, NamedTypedValue response, List<NamedTypedValue> exceptions,72 boolean authRequired, List<Integer> requiredAuthCandidates, Set<String> relatedCustomizedCandidates) {73 this.name = name;74 this.interfaceName = interfaceName;75 this.clientTypeName = clientTypeName;76 this.requestParams = requestParams;77 this.response = response;78 this.exceptions = exceptions;79 this.authRequired = authRequired;80 this.requiredAuthCandidates = requiredAuthCandidates;81 this.relatedCustomizedCandidates = relatedCustomizedCandidates;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("}");193 return javaCode;194 }195}...

Full Screen

Full Screen

Source:LocalAuthSetupSchema.java Github

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.schema;2import org.evomaster.client.java.controller.api.dto.problem.rpc.RPCActionDto;3import org.evomaster.client.java.controller.problem.rpc.CodeJavaGenerator;4import org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue;5import org.evomaster.client.java.controller.problem.rpc.schema.params.StringParam;6import org.evomaster.client.java.controller.problem.rpc.schema.types.AccessibleSchema;7import org.evomaster.client.java.controller.problem.rpc.schema.types.StringType;8import java.util.ArrayList;9import java.util.Arrays;10import java.util.List;11import java.util.stream.Collectors;12public class LocalAuthSetupSchema extends EndpointSchema{13 public final static String EM_LOCAL_METHOD = "__EM__LOCAL__";14 public final static String HANDLE_LOCAL_AUTHENTICATION_SETUP_METHOD_NAME = "handleLocalAuthenticationSetup";15 public LocalAuthSetupSchema() {16 super(HANDLE_LOCAL_AUTHENTICATION_SETUP_METHOD_NAME,17 EM_LOCAL_METHOD, null, Arrays.asList(new StringParam("arg0", new StringType(), new AccessibleSchema())), null, null, false, null, null);18 }19 /**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

Source:PairType.java Github

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.schema.types;2import org.evomaster.client.java.controller.api.dto.problem.rpc.ParamDto;3import org.evomaster.client.java.controller.api.dto.problem.rpc.RPCSupportedDataType;4import org.evomaster.client.java.controller.api.dto.problem.rpc.TypeDto;5import org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue;6import java.util.AbstractMap;7import java.util.Arrays;8/**9 * used AbstractMap.SimpleEntry for handling map10 */11public class PairType extends TypeSchema{12 private final static String PAIR_TYPE_NAME = AbstractMap.SimpleEntry.class.getSimpleName();13 private final static String FULL_PAIR_TYPE_NAME = AbstractMap.SimpleEntry.class.getName();14 /**15 * template of first16 */17 private final NamedTypedValue firstTemplate;18 /**19 * template of second20 */21 private final NamedTypedValue secondTemplate;22 public PairType(NamedTypedValue keyTemplate, NamedTypedValue valueTemplate) {23 super(PAIR_TYPE_NAME, FULL_PAIR_TYPE_NAME, AbstractMap.SimpleEntry.class);24 this.firstTemplate = keyTemplate;25 this.secondTemplate = valueTemplate;26 }27 public NamedTypedValue getFirstTemplate() {28 return firstTemplate;29 }30 public NamedTypedValue getSecondTemplate() {31 return secondTemplate;32 }33 @Override34 public TypeDto getDto() {35 TypeDto dto = super.getDto();36 ParamDto example = new ParamDto();37 example.innerContent = Arrays.asList(firstTemplate.getDto(), secondTemplate.getDto());38 dto.example = example;39 dto.type = RPCSupportedDataType.PAIR;40 return dto;41 }42 @Override43 public PairType copy() {44 return new PairType(getFirstTemplate(), getSecondTemplate());...

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.schema.params;2import java.util.Objects;3public class NamedTypedValue {4 private String name;5 private TypedValue value;6 public NamedTypedValue() { }7 public NamedTypedValue(String name, TypedValue value) {8 this.name = name;9 this.value = value;10 }11 public String getName() {12 return name;13 }14 public void setName(String name) {15 this.name = name;16 }17 public TypedValue getValue() {18 return value;19 }20 public void setValue(TypedValue value) {21 this.value = value;22 }23 public boolean equals(Object o) {24 if (this == o) return true;25 if (o == null || getClass() != o.getClass()) return false;26 NamedTypedValue that = (NamedTypedValue) o;27 return Objects.equals(name, that.name) &&28 Objects.equals(value, that.value);29 }30 public int hashCode() {31 return Objects.hash(name, value);32 }33}34package org.evomaster.client.java.controller.problem.rpc.schema.params;35import java.util.Objects;36public class TypedValue {37 private String type;38 private Object value;39 public TypedValue() { }40 public TypedValue(String type, Object value) {41 this.type = type;42 this.value = value;43 }44 public String getType() {45 return type;46 }47 public void setType(String type) {48 this.type = type;49 }50 public Object getValue() {51 return value;52 }53 public void setValue(Object value) {54 this.value = value;55 }56 public boolean equals(Object o) {57 if (this == o) return true;58 if (o == null || getClass() != o.getClass()) return false;59 TypedValue that = (TypedValue) o;60 return Objects.equals(type, that.type) &&61 Objects.equals(value, that.value);62 }63 public int hashCode() {64 return Objects.hash(type, value);65 }66}

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1NamedTypedValue namedTypedValue = new NamedTypedValue();2namedTypedValue.setName("name");3namedTypedValue.setValue("value");4namedTypedValue.setType("type");5NamedTypedValue namedTypedValue = new NamedTypedValue("name", "value", "type");6NamedTypedValue namedTypedValue = new NamedTypedValue();7namedTypedValue.setName("name");8namedTypedValue.setValue("value");9namedTypedValue.setType("type");10NamedTypedValue namedTypedValue = new NamedTypedValue("name", "value", "type");11NamedTypedValue namedTypedValue = new NamedTypedValue();12namedTypedValue.setName("name");13namedTypedValue.setValue("value");14namedTypedValue.setType("type");15NamedTypedValue namedTypedValue = new NamedTypedValue("name", "value", "type");16NamedTypedValue namedTypedValue = new NamedTypedValue();17namedTypedValue.setName("name");18namedTypedValue.setValue("value");19namedTypedValue.setType("type");20NamedTypedValue namedTypedValue = new NamedTypedValue("name", "value", "type");

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1NamedTypedValue namedTypedValue = new NamedTypedValue();2namedTypedValue.setName("name");3namedTypedValue.setTypedValue("typedValue");4NamedTypedValue namedTypedValue = new NamedTypedValue();5namedTypedValue.setName("name");6namedTypedValue.setTypedValue("typedValue");7NamedTypedValue namedTypedValue = new NamedTypedValue();8namedTypedValue.setName("name");9namedTypedValue.setTypedValue("typedValue");10NamedTypedValue namedTypedValue = new NamedTypedValue();11namedTypedValue.setName("name");12namedTypedValue.setTypedValue("typedValue");13NamedTypedValue namedTypedValue = new NamedTypedValue();14namedTypedValue.setName("name");15namedTypedValue.setTypedValue("typedValue");16NamedTypedValue namedTypedValue = new NamedTypedValue();17namedTypedValue.setName("name");18namedTypedValue.setTypedValue("typedValue");19NamedTypedValue namedTypedValue = new NamedTypedValue();20namedTypedValue.setName("name");21namedTypedValue.setTypedValue("typedValue");22NamedTypedValue namedTypedValue = new NamedTypedValue();23namedTypedValue.setName("name");24namedTypedValue.setTypedValue("typedValue");

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1public class 2 {2 public static void main(String[] args) {3 NamedTypedValue param = new NamedTypedValue("name", "value");4 System.out.println(param);5 }6}7NamedTypedValue{name='name', value='value'}8public class 3 {9 public static void main(String[] args) {10 NamedTypedValue param = new NamedTypedValue("name", "value");11 param.setValue("value2");12 System.out.println(param);13 }14}15NamedTypedValue{name='name', value='value2'}16public class 4 {17 public static void main(String[] args) {18 NamedTypedValue param = new NamedTypedValue("name", "value");19 System.out.println(param.getValue());20 }21}22public class 5 {23 public static void main(String[] args) {24 NamedTypedValue param = new NamedTypedValue("name", "value");25 System.out.println(param.getName());26 }27}28public class 6 {29 public static void main(String[] args) {30 NamedTypedValue param = new NamedTypedValue("name", "value");31 param.setName("name2");32 System.out.println(param);33 }34}35NamedTypedValue{name='name2', value='value'}

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1import org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue;2import com.foo.rest.examples.spring.db.generated.GeneratedController;3import com.foo.rest.examples.spring.db.dto.GetByIdDto;4import com.foo.rest.examples.spring.db.dto.GetByIdDto;5import com.foo.rest.examples.spring.db.dto.GetByIdDto;6import com.foo.rest.examples.spring.db.dto.GetByIdDto;7import com.foo.rest.examples.spring.db.dto.GetByIdDto;8import com.foo.rest.examples.spring.db.dto.GetByIdDto;9import com.foo.rest.examples.spring.db.dto.GetByIdDto;

Full Screen

Full Screen

NamedTypedValue

Using AI Code Generation

copy

Full Screen

1public class 2 {2 public static void main(String[] args) {3 NamedTypedValue request = new NamedTypedValue();4 request.setName("request");5 request.setType("com.example.Controller");6 NamedTypedValue param = new NamedTypedValue();7 param.setName("param");

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