How to use isNotCustomizedObject method of org.evomaster.client.java.controller.problem.rpc.RPCEndpointsBuilder class

Best EvoMaster code snippet using org.evomaster.client.java.controller.problem.rpc.RPCEndpointsBuilder.isNotCustomizedObject

Source:RPCEndpointsBuilder.java Github

copy

Full Screen

...25public class RPCEndpointsBuilder {26 private final static ObjectMapper objectMapper = new ObjectMapper();27 private final static String OBJECT_FLAG = "OBJECT";28 private static String getObjectTypeNameWithFlag(Class<?> clazz, String name) {29 if (isNotCustomizedObject(clazz)) return name;30 return OBJECT_FLAG + ":" + name;31 }32 private static boolean isNotCustomizedObject(Class<?> clazz){33 return PrimitiveOrWrapperType.isPrimitiveOrTypes(clazz) || clazz == String.class ||34 clazz == ByteBuffer.class || clazz.isEnum() || clazz.isArray() ||35 List.class.isAssignableFrom(clazz) || Set.class.isAssignableFrom(clazz);36 }37 /**38 * validate CustomizedRequestValueDto, eg,39 * 1) for any CustomizedRequestValueDto, keyValuePairs and keyValues could not be specified or null at the same time40 * 2) for keyValuePairs, if annotationOnEndpoint or specificEndpointName or specificRequestTypeName are specified, they should have consistent keys41 * 3) keyValues with respect to any specific annotationOnEndpoint or specificEndpointName or specificRequestTypeName should be specified only one time42 * @param customizedRequestValueDtos are customized info to be checked43 */44 public static void validateCustomizedValueInRequests(List<CustomizedRequestValueDto> customizedRequestValueDtos){45 if (customizedRequestValueDtos == null || customizedRequestValueDtos.isEmpty()) return;46 customizedRequestValueDtos.forEach(s->{47 if (s.keyValues != null && s.combinedKeyValuePairs != null)48 throw new IllegalArgumentException("Driver Config Error: keyValues and keyValuePairs should not be specified at the same time");49 if (s.keyValues == null && s.combinedKeyValuePairs == null)50 throw new IllegalArgumentException("Driver Config Error: one of keyValues and keyValuePairs must be specified, could not be null at the same time");51 });52 validateKeyValuePairs(customizedRequestValueDtos);53 validateKeyValues(customizedRequestValueDtos);54 }55 /**56 * validate specified notNullAnnotations57 * @param notNullAnnotations are specified customized annotation representing if any field of RPC dto is required58 */59 public static void validateCustomizedNotNullAnnotationForRPCDto(List<CustomizedNotNullAnnotationForRPCDto> notNullAnnotations){60 if (notNullAnnotations == null || notNullAnnotations.isEmpty()) return;61 notNullAnnotations.forEach(s->{62 if (s.annotationType == null)63 throw new IllegalArgumentException("Driver Config Error: annotationType should not be null");64 if ((s.annotationMethod == null) ^ (s.equalsTo == null))65 throw new IllegalArgumentException("Driver Config Error: annotationMethod and equalsTo should be specified at the same time");66 });67 }68 private static void validateKeyValues(List<CustomizedRequestValueDto> customizedRequestValueDtos){69 List<String> handled = new ArrayList<>();70 customizedRequestValueDtos.stream().filter(s-> s.keyValues !=null).forEach(s->{71 if (s.keyValues.key == null)72 throw new IllegalArgumentException("Driver Config Error: key must be specified when customizing keyValues");73 if (s.keyValues.values.isEmpty()){74 throw new IllegalArgumentException("Driver Config Error: at least one values is needed for customizing keyValues with the key "+s.keyValues.key);75 }76 String key = "key:"+s.keyValues.key+""+getKeyForCustomizedRequestValueDto(s);77 if (handled.contains(key))78 throw new IllegalArgumentException("Driver Config Error: "+key+" should be specified only once");79 handled.add(key);80 });81 }82 private static void validateKeyValuePairs(List<CustomizedRequestValueDto> customizedRequestValueDtos){83 Map<String, List<CustomizedRequestValueDto>> group = new HashMap<>();84 customizedRequestValueDtos.stream().filter(s-> s.combinedKeyValuePairs !=null && !s.combinedKeyValuePairs.isEmpty()).forEach(s->{85 String key = getKeyForCustomizedRequestValueDto(s);86 if (key.length() != 0){87 if (!group.containsKey(key))88 group.put(key, new ArrayList<>());89 group.get(key).add(s);90 }91 });92 group.forEach((key, g) -> {93 if (g.size() > 1) {94 List<String> keys = g.get(0).combinedKeyValuePairs.stream().map(a -> a.fieldKey).collect(Collectors.toList());95 g.forEach(a -> {96 List<String> akeys = a.combinedKeyValuePairs.stream().map(k -> k.fieldKey).collect(Collectors.toList());97 if (akeys.size() != keys.size() || !akeys.containsAll(keys)) {98 throw new IllegalArgumentException("Driver Config Error: keys for same " + key + " must be specified with same keys");99 }100 });101 }102 });103 }104 private static String getKeyForCustomizedRequestValueDto(CustomizedRequestValueDto s){105 String key = "";106 if (s.annotationOnEndpoint != null)107 key += " annotationOnEndpoint_"+s.annotationOnEndpoint;108 if (s.specificEndpointName != null)109 key += " specificEndpointName_"+s.specificEndpointName;110 if (s.specificRequestTypeName != null)111 key += " specificRequestTypeName_"+s.specificRequestTypeName;112 return key;113 }114 /**115 * @param interfaceName the name of interface116 * @param rpcType is the type of RPC, e.g., gRPC, Thrift117 * @param client is the corresponding client to maniplute the interface118 * @param skipEndpointsByName specifies a list of names of endpoints to be skipped during testing119 * @param skipEndpointsByAnnotation specifies a list of annotations applied on endpoints that could be skipped during testing120 * @param involveEndpointsByName specifies a list of names of endpoints to be involved during testing121 * @param involveEndpointsByAnnotation specifies a list of annotations applied on endpoints that are involved during testing122 * @param authenticationDtoList specifies a list of authentication info123 * @param customizedRequestValueDtos specifies a list of candidate values in requests124 * @return an interface schema for evomaster to access125 */126 public static InterfaceSchema build(String interfaceName, RPCType rpcType, Object client,127 List<String> skipEndpointsByName, List<String> skipEndpointsByAnnotation,128 List<String> involveEndpointsByName, List<String> involveEndpointsByAnnotation,129 List<AuthenticationDto> authenticationDtoList,130 List<CustomizedRequestValueDto> customizedRequestValueDtos,131 List<CustomizedNotNullAnnotationForRPCDto> notNullAnnotations) {132 List<EndpointSchema> endpoints = new ArrayList<>();133 List<EndpointSchema> endpointsForAuth = new ArrayList<>();134 List<String> skippedEndpoints = new ArrayList<>();135 Map<Integer, EndpointSchema> authEndpoints = new HashMap<>();136 try {137 Class<?> interfaze = Class.forName(interfaceName);138 InterfaceSchema schema = new InterfaceSchema(interfaceName, endpoints, getClientClass(client) , rpcType, skippedEndpoints, authEndpoints, endpointsForAuth);139 for (Method m : interfaze.getDeclaredMethods()) {140 if (filterMethod(m, skipEndpointsByName, skipEndpointsByAnnotation, involveEndpointsByName, involveEndpointsByAnnotation)){141 try{142 EndpointSchema endpointSchema = build(schema, m, rpcType, authenticationDtoList, customizedRequestValueDtos, notNullAnnotations);143 endpoints.add(endpointSchema);144 }catch (RuntimeException exception){145 /*146 TODO might send such log to core in order to better identify problems which is not handled yet147 */148 SimpleLogger.error("EM Driver Error: fail to handle the endpoint schema "+m.getName()+" with the error msg:"+exception.getMessage());149 }150 } else {151 skippedEndpoints.add(m.getName());152 }153 List<AuthenticationDto> auths = getAuthEndpointInInterface(authenticationDtoList, interfaceName, m);154 if (auths != null && !auths.isEmpty()){155 try{156 // handle endpoint which is for auth setup157 EndpointSchema authEndpoint = build(schema, m, rpcType, null, customizedRequestValueDtos,notNullAnnotations);158 endpointsForAuth.add(authEndpoint);159 for (AuthenticationDto auth: auths){160 EndpointSchema copy = authEndpoint.copyStructure();161 if (auth.jsonAuthEndpoint == null){162 throw new IllegalArgumentException("Driver Config Error: now we only support auth info specified with JsonAuthRPCEndpointDto");163 }164 int index = authenticationDtoList.indexOf(auth);165 // set value based on specified info166 if (copy.getRequestParams().size() != auth.jsonAuthEndpoint.jsonPayloads.size())167 throw new IllegalArgumentException("Driver Config Error: mismatched size of jsonPayloads ("+auth.jsonAuthEndpoint.classNames.size()+") with real endpoint ("+authEndpoint.getRequestParams().size()+").");168 setAuthEndpoint(copy, auth.jsonAuthEndpoint);169 authEndpoints.put(index, copy);170 }171 }catch (RuntimeException exception){172 SimpleLogger.error("EM Driver Error: fail to handle the authEndpoint schema "+m.getName()+" with the error msg:"+exception.getMessage());173 }174 }175 }176 return schema;177 } catch (ClassNotFoundException e) {178 throw new RuntimeException("cannot find the interface with the name (" + interfaceName + ") and the error message is " + e.getMessage());179 }180 }181 /**182 * build the local auth setup183 * @param authenticationDtoList a list of auth info specified by user184 * @return a map of such local auth setup185 * key - index at a list of auth info specified by user186 * value - local endpoint187 */188 public static Map<Integer, LocalAuthSetupSchema> buildLocalAuthSetup(List<AuthenticationDto> authenticationDtoList){189 if (authenticationDtoList==null || authenticationDtoList.isEmpty()) return null;190 Map<Integer, LocalAuthSetupSchema> map = new HashMap<>();191 for (AuthenticationDto dto : authenticationDtoList){192 if (dto.localAuthSetup != null){193 int index = authenticationDtoList.indexOf(dto);194 LocalAuthSetupSchema local = new LocalAuthSetupSchema();195 local.getRequestParams().get(0).setValueBasedOnInstance(dto.localAuthSetup.authenticationInfo);196 map.put(index, local);197 }198 }199 return map;200 }201 private static void setAuthEndpoint(EndpointSchema authEndpoint, JsonAuthRPCEndpointDto jsonAuthEndpoint) throws ClassNotFoundException{202 if (jsonAuthEndpoint.classNames != null && jsonAuthEndpoint.classNames.size() != jsonAuthEndpoint.jsonPayloads.size())203 throw new IllegalArgumentException("Driver Config Error: to specify inputs for auth endpoint, classNames and jsonPayloads should have same size");204 for (int i = 0; i < authEndpoint.getRequestParams().size(); i++){205 NamedTypedValue inputParam = authEndpoint.getRequestParams().get(i);206 String jsonString = jsonAuthEndpoint.jsonPayloads.get(i);207 if (jsonAuthEndpoint.classNames == null){208 setNamedValueBasedOnJsonString(inputParam,jsonString, i);209 }else{210 Class<?> clazz = Class.forName(jsonAuthEndpoint.classNames.get(i));211 try {212 Object value = objectMapper.readValue(jsonString, clazz);213 inputParam.setValueBasedOnInstance(value);214 } catch (JsonProcessingException e) {215 SimpleLogger.uniqueWarn("Driver Config Error: a jsonPayload at ("+i+") cannot be read as the object "+jsonAuthEndpoint.classNames.get(i));216 setNamedValueBasedOnJsonString(inputParam,jsonString, i);217 }218 }219 }220 }221 private static void setNamedValueBasedOnJsonString(NamedTypedValue inputParam, String jsonString, int index){222 if (inputParam instanceof StringParam || inputParam instanceof PrimitiveOrWrapperParam || inputParam instanceof ByteBufferParam){223 setNamedValueBasedOnCandidates(inputParam, jsonString);224 } else if (inputParam instanceof ObjectParam){225 try {226 JsonNode node = objectMapper.readTree(jsonString);227 List<NamedTypedValue> fields = new ArrayList<>();228 for (NamedTypedValue f: ((ObjectParam) inputParam).getType().getFields()){229 NamedTypedValue v = f.copyStructureWithProperties();230 if (node.has(v.getName())){231 setNamedValueBasedOnCandidates(f, node.textValue());232 fields.add(v);233 }else {234 SimpleLogger.uniqueWarn("Driver Config Error: cannot find field with the name "+v.getName()+" in the specified json");235 }236 }237 inputParam.setValue(fields);238 } catch (JsonProcessingException ex) {239 SimpleLogger.uniqueWarn("Driver Config Error: a jsonPayload at ("+index+") cannot be read as a JSON object with error:" +ex.getMessage());240 }241 }242 }243 private static List<AuthenticationDto> getAuthEndpointInInterface(List<AuthenticationDto> authenticationDtos, String interfaceName, Method method){244 if (authenticationDtos == null) return null;245 for (AuthenticationDto dto : authenticationDtos){246 if (dto.localAuthSetup == null && (dto.jsonAuthEndpoint == null || dto.jsonAuthEndpoint.endpointName == null || dto.jsonAuthEndpoint.interfaceName == null)){247 SimpleLogger.uniqueWarn("Driver Config Error: To specify auth for RPC, either localAuthSetup or jsonAuthEndpoint should be specified." +248 "For JsonAuthRPCEndpointDto, endpointName and interfaceName cannot be null");249 }250 }251 return authenticationDtos.stream().filter(a-> a.jsonAuthEndpoint != null252 && a.jsonAuthEndpoint.endpointName.equals(method.getName())253 && a.jsonAuthEndpoint.interfaceName.equals(interfaceName)).collect(Collectors.toList());254 }255 private static boolean filterMethod(Method endpoint,256 List<String> skipEndpointsByName, List<String> skipEndpointsByAnnotation,257 List<String> involveEndpointsByName, List<String> involveEndpointsByAnnotation){258 if (skipEndpointsByName != null && involveEndpointsByName != null)259 throw new IllegalArgumentException("Driver Config Error: skipEndpointsByName and involveEndpointsByName should not be specified at same time.");260 if (skipEndpointsByAnnotation != null && involveEndpointsByAnnotation != null)261 throw new IllegalArgumentException("Driver Config Error: skipEndpointsByAnnotation and involveEndpointsByAnnotation should not be specified at same time.");262 if (skipEndpointsByName != null || skipEndpointsByAnnotation != null)263 return !anyMatchByNameAndAnnotation(endpoint, skipEndpointsByName, skipEndpointsByAnnotation);264 if (involveEndpointsByName != null || involveEndpointsByAnnotation != null)265 return anyMatchByNameAndAnnotation(endpoint, involveEndpointsByName, involveEndpointsByAnnotation);266 return true;267 }268 private static boolean anyMatchByNameAndAnnotation(Method endpoint, List<String> names, List<String> annotations){269 boolean anyMatch = false;270 if (annotations != null){271 for (Annotation annotation : endpoint.getAnnotations()){272 anyMatch = anyMatch || annotations.contains(annotation.annotationType().getName());273 }274 }275 if (names != null)276 anyMatch = anyMatch || names.contains(endpoint.getName());277 return anyMatch;278 }279 private static String getClientClass(Object client){280 if (client == null) return null;281 String clazzType = client.getClass().getName();282 // handle com.sun.proxy283 if (!clazzType.startsWith("com.sun.proxy.")){284 return clazzType;285 }286 Class<?>[] clazz = client.getClass().getInterfaces();287 if (clazz.length == 0){288 SimpleLogger.error("Error: the client is not related to any interface");289 return null;290 }291 if (clazz.length > 1)292 SimpleLogger.error("ERROR: the client has more than one interfaces");293 return clazz[0].getName();294 }295 private static EndpointSchema build(InterfaceSchema schema, Method method, RPCType rpcType, List<AuthenticationDto> authenticationDtoList,296 List<CustomizedRequestValueDto> customizedRequestValueDtos,297 List<CustomizedNotNullAnnotationForRPCDto> notNullAnnotations) {298 List<NamedTypedValue> requestParams = new ArrayList<>();299 List<AuthenticationDto> authAnnotationDtos = getSpecificRelatedAuth(authenticationDtoList, method);300 List<Integer> authKeys = null;301 if (authAnnotationDtos != null)302 authKeys = authAnnotationDtos.stream().map(s-> authenticationDtoList.indexOf(s)).collect(Collectors.toList());303 Set<String> relatedCustomization = new HashSet<>();304 for (Parameter p : method.getParameters()) {305 requestParams.add(buildInputParameter(schema, p, rpcType, getRelatedCustomization(customizedRequestValueDtos, method), relatedCustomization, notNullAnnotations));306 }307 NamedTypedValue response = null;308 if (!method.getReturnType().equals(Void.TYPE)) {309 Map<TypeVariable, Type> genericTypeMap = new HashMap<>();310 response = build(schema, method.getReturnType(), method.getGenericReturnType(), "return", rpcType, new ArrayList<>(), null, null, null, null, null, genericTypeMap);311 }312 List<NamedTypedValue> exceptions = null;313 if (method.getExceptionTypes().length > 0){314 exceptions = new ArrayList<>();315 for (int i = 0; i < method.getExceptionTypes().length; i++){316 NamedTypedValue exception = build(schema, method.getExceptionTypes()[i],317 method.getGenericExceptionTypes()[i], "exception_"+i, rpcType, new ArrayList<>(), null, null, null, null, null, null);318 exceptions.add(exception);319 }320 }321 return new EndpointSchema(method.getName(),322 schema.getName(), schema.getClientInfo(), requestParams, response, exceptions,323 authAnnotationDtos!= null && !authAnnotationDtos.isEmpty(), authKeys, relatedCustomization);324 }325 private static List<AuthenticationDto> getSpecificRelatedAuth(List<AuthenticationDto> authenticationDtoList, Method method){326 if (authenticationDtoList == null) return null;327 List<String> annotations = Arrays.stream(method.getAnnotations()).map(s-> s.annotationType().getName()).collect(Collectors.toList());328 return authenticationDtoList.stream().filter(s->329 (s.localAuthSetup != null && s.localAuthSetup.annotationOnEndpoint != null && annotations.contains(s.localAuthSetup.annotationOnEndpoint)) ||330 (s.jsonAuthEndpoint != null && s.jsonAuthEndpoint.annotationOnEndpoint != null && annotations.contains(s.jsonAuthEndpoint.annotationOnEndpoint))331 ).collect(Collectors.toList());332 }333 private static Map<Integer, CustomizedRequestValueDto> getRelatedCustomization(List<CustomizedRequestValueDto> customizedRequestValueDtos, Method method){334 if (customizedRequestValueDtos == null) return null;335 List<String> annotations = Arrays.stream(method.getAnnotations()).map(s-> s.annotationType().getName()).collect(Collectors.toList());336 List<CustomizedRequestValueDto> list = customizedRequestValueDtos.stream().filter(337 s-> (s.annotationOnEndpoint == null || annotations.contains(s.annotationOnEndpoint)) &&338 (s.specificEndpointName == null || s.specificEndpointName.contains(method.getName()))339 ).collect(Collectors.toList());340 if (list.isEmpty()) return null;341 Map<Integer, CustomizedRequestValueDto> map = new HashMap<>();342 list.forEach(s->map.put(customizedRequestValueDtos.indexOf(s), s));343 return map;344 }345 private static NamedTypedValue buildInputParameter(InterfaceSchema schema, Parameter parameter, RPCType type,346 Map<Integer,CustomizedRequestValueDto> customizationDtos, Set<String> relatedCustomization,347 List<CustomizedNotNullAnnotationForRPCDto> notNullAnnotations) {348 String name = parameter.getName();349 Class<?> clazz = parameter.getType();350 List<String> depth = new ArrayList<>();351 Map<TypeVariable, Type> genericTypeMap = new HashMap<>();352 NamedTypedValue namedTypedValue = build(schema, clazz, parameter.getParameterizedType(), name, type, depth, customizationDtos, relatedCustomization, null, notNullAnnotations, null, genericTypeMap);353 for (Annotation annotation: parameter.getAnnotations()){354 handleConstraint(namedTypedValue, annotation, notNullAnnotations);355 }356 return namedTypedValue;357 }358 private static NamedTypedValue build(InterfaceSchema schema, Class<?> clazz, Type genericType, String name, RPCType rpcType, List<String> depth,359 Map<Integer, CustomizedRequestValueDto> customizationDtos, Set<String> relatedCustomization, AccessibleSchema accessibleSchema,360 List<CustomizedNotNullAnnotationForRPCDto> notNullAnnotations, Class<?> originalType, Map<TypeVariable, Type> genericTypeMap) {361 handleGenericSuperclass(clazz, genericTypeMap);362 List<String> genericTypes = handleGenericType(clazz, genericType, genericTypeMap);363 String clazzWithGenericTypes = CodeJavaGenerator.handleClassNameWithGeneric(clazz.getName(), genericTypes);364 depth.add(getObjectTypeNameWithFlag(clazz, clazzWithGenericTypes));365 NamedTypedValue namedValue = null;366 try{367 if (PrimitiveOrWrapperType.isPrimitiveOrTypes(clazz)) {368 namedValue = PrimitiveOrWrapperParam.build(name, clazz, accessibleSchema);369 } else if (clazz == String.class) {370 StringType stringType = new StringType();371 namedValue = new StringParam(name, stringType, accessibleSchema);372 } else if (clazz == BigDecimal.class){373 BigDecimalType bigDecimalType = new BigDecimalType();374 namedValue = new BigDecimalParam(name, bigDecimalType, accessibleSchema);375 } else if (clazz == BigInteger.class){376 BigIntegerType bigIntegerType = new BigIntegerType();377 namedValue = new BigIntegerParam(name, bigIntegerType, accessibleSchema);378 } else if (clazz.isEnum()) {379 String [] items = Arrays.stream(clazz.getEnumConstants()).map(e-> getNameEnumConstant(e)).toArray(String[]::new);380 EnumType enumType = new EnumType(clazz.getSimpleName(), clazz.getName(), items, clazz);381 EnumParam param = new EnumParam(name, enumType, accessibleSchema);382 //register this type in the schema383 schema.registerType(enumType.copy(), param.copyStructureWithProperties());384 namedValue = param;385 } else if (clazz.isArray()){386 Type type = null;387 Class<?> templateClazz = null;388 if (genericType instanceof GenericArrayType){389 type = ((GenericArrayType)genericType).getGenericComponentType();390 templateClazz = getTemplateClass(type, genericTypeMap);391 }else {392 templateClazz = clazz.getComponentType();393 }394 NamedTypedValue template = build(schema, templateClazz, type,"template", rpcType, depth, customizationDtos, relatedCustomization, null, notNullAnnotations, null, genericTypeMap);395 template.setNullable(false);396 CollectionType ctype = new CollectionType(clazz.getSimpleName(),clazz.getName(), template, clazz);397 ctype.depth = getDepthLevel(clazz, depth, clazzWithGenericTypes);398 namedValue = new ArrayParam(name, ctype, accessibleSchema);399 } else if (clazz == ByteBuffer.class){400 // handle binary of thrift401 namedValue = new ByteBufferParam(name, accessibleSchema);402 } else if (List.class.isAssignableFrom(clazz) || Set.class.isAssignableFrom(clazz)){403 if (genericType == null)404 throw new RuntimeException("genericType should not be null for List and Set class");405 Type type = ((ParameterizedType) genericType).getActualTypeArguments()[0];406 Class<?> templateClazz = getTemplateClass(type, genericTypeMap);407 NamedTypedValue template = build(schema, templateClazz, type,"template", rpcType, depth, customizationDtos, relatedCustomization, null, notNullAnnotations, null, genericTypeMap);408 template.setNullable(false);409 CollectionType ctype = new CollectionType(clazz.getSimpleName(),clazz.getName(), template, clazz);410 ctype.depth = getDepthLevel(clazz, depth, clazzWithGenericTypes);411 if (List.class.isAssignableFrom(clazz))412 namedValue = new ListParam(name, ctype, accessibleSchema);413 else414 namedValue = new SetParam(name, ctype, accessibleSchema);415 } else if (Map.class.isAssignableFrom(clazz)){416 if (genericType == null)417 throw new RuntimeException("genericType should not be null for List and Set class");418 Type keyType = ((ParameterizedType) genericType).getActualTypeArguments()[0];419 Type valueType = ((ParameterizedType) genericType).getActualTypeArguments()[1];420 Class<?> keyTemplateClazz = getTemplateClass(keyType, genericTypeMap);421 NamedTypedValue keyTemplate = build(schema, keyTemplateClazz, keyType,"keyTemplate", rpcType, depth, customizationDtos, relatedCustomization, null, notNullAnnotations, null, genericTypeMap);422 keyTemplate.setNullable(false);423 Class<?> valueTemplateClazz = getTemplateClass(valueType, genericTypeMap);424 NamedTypedValue valueTemplate = build(schema, valueTemplateClazz, valueType,"valueTemplate", rpcType, depth, customizationDtos, relatedCustomization, null, notNullAnnotations, null, genericTypeMap);425 MapType mtype = new MapType(clazz.getSimpleName(), clazz.getName(), new PairParam(new PairType(keyTemplate, valueTemplate), null), clazz);426 mtype.depth = getDepthLevel(clazz, depth, clazzWithGenericTypes);427 namedValue = new MapParam(name, mtype, accessibleSchema);428 } else if (Date.class.isAssignableFrom(clazz)){429 if (clazz == Date.class)430 namedValue = new DateParam(name, accessibleSchema);431 else432 throw new RuntimeException("NOT support "+clazz.getName()+" date type in java yet");433 } else if (Exception.class.isAssignableFrom(clazz) && clazz.getName().startsWith("java")){434 // note that here we only extract class name and message435 StringParam msgField = new StringParam("message", new AccessibleSchema(false, null, "getMessage"));436 ObjectType exceptionType = new ObjectType(clazz.getSimpleName(), clazz.getName(), Collections.singletonList(msgField), clazz, genericTypes);437 namedValue = new ObjectParam(name, exceptionType, accessibleSchema);438 } else {439 if (clazz.getName().startsWith("java")){440 throw new RuntimeException("NOT handle "+clazz.getName()+" class in java yet");441 }442 long cycleSize = depth.stream().filter(s-> s.equals(getObjectTypeNameWithFlag(clazz, clazzWithGenericTypes))).count();443 if (cycleSize == 1){444 List<NamedTypedValue> fields = new ArrayList<>();445 Map<Integer, CustomizedRequestValueDto> objRelatedCustomizationDtos = getCustomizationBasedOnSpecifiedType(customizationDtos, clazz.getName());446 // field list447 List<Field> fieldList = new ArrayList<>();448 getAllFields(clazz, fieldList, rpcType);449 for(Field f: fieldList){450 // skip final field451 if (Modifier.isFinal(f.getModifiers()))452 continue;453 if (doSkipReflection(f.getName()))454 continue;455 AccessibleSchema faccessSchema = null;456 //check accessible457 if (Modifier.isPublic(f.getModifiers())){458 faccessSchema = new AccessibleSchema();459 } else{460 // find getter and setter461 faccessSchema = new AccessibleSchema(false, findGetterOrSetter(clazz, f, false), findGetterOrSetter(clazz, f, true));462 if (faccessSchema.getterMethodName == null || faccessSchema.setterMethodName == null){463 SimpleLogger.warn("Error: skip the field "+f.getName()+" since its setter/getter is not found");464 continue;465 }466 }467 Class<?> fType = f.getType();468 Class<?> foriginalType = null;469 Type fGType = f.getGenericType();470 if (f.getGenericType() instanceof TypeVariable){471 foriginalType = f.getType();472 Type actualType = getActualType(genericTypeMap, (TypeVariable) f.getGenericType());473 if (actualType instanceof Class){474 fType = (Class<?>) actualType;475 fGType = fType;476 }else if (actualType instanceof ParameterizedType){477 fGType = actualType;478 if (((ParameterizedType) actualType).getRawType() instanceof Class<?>)479 fType = (Class<?>) ((ParameterizedType) actualType).getRawType();480 else481 throw new RuntimeException("Error: Fail to handle actual type of a generic type");482 }483 }484 NamedTypedValue field = build(schema, fType, fGType,f.getName(), rpcType, depth, objRelatedCustomizationDtos, relatedCustomization, faccessSchema, notNullAnnotations, foriginalType, genericTypeMap);485 for (Annotation annotation : f.getAnnotations()){486 handleConstraint(field, annotation, notNullAnnotations);487 }488 fields.add(field);489 }490 handleNativeRPCConstraints(clazz, fields, rpcType);491 ObjectType otype = new ObjectType(clazz.getSimpleName(), clazz.getName(), fields, clazz, genericTypes);492 otype.setOriginalType(originalType);493 otype.depth = getDepthLevel(clazz, depth, clazzWithGenericTypes);494 ObjectParam oparam = new ObjectParam(name, otype, accessibleSchema);495 schema.registerType(otype.copy(), oparam);496 namedValue = oparam;497 }else {498 CycleObjectType otype = new CycleObjectType(clazz.getSimpleName(), clazz.getName(), clazz, genericTypes);499 otype.depth = getDepthLevel(clazz, depth, clazzWithGenericTypes);500 ObjectParam oparam = new ObjectParam(name, otype, accessibleSchema);501 schema.registerType(otype.copy(), oparam);502 namedValue = oparam;503 }504 }505 }catch (ClassCastException e){506 throw new RuntimeException(String.format("fail to perform reflection on param/field: %s; class: %s; genericType: %s; class of genericType: %s; depth: %s; error info:%s",507 name, clazz.getName(), genericType==null?"null":genericType.getTypeName(), genericType==null?"null":genericType.getClass().getName(), String.join(",", depth), e.getMessage()));508 }509 namedValue.getType().setOriginalType(originalType);510 if (customizationDtos!=null){511 handleNamedValueWithCustomizedDto(namedValue, customizationDtos, relatedCustomization);512 }513 return namedValue;514 }515 private static String getNameEnumConstant(Object object) {516 try {517 Method name = object.getClass().getMethod("name");518 name.setAccessible(true);519 return (String) name.invoke(object);520 } catch (IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {521 SimpleLogger.warn("Driver Error: fail to extract name for enum constant", e);522 return object.toString();523 }524 }525 private static void handleGenericSuperclass(Class clazz, Map<TypeVariable, Type> map){526 if (isNotCustomizedObject(clazz)) return;527 if (clazz.getGenericSuperclass() == null || !(clazz.getGenericSuperclass() instanceof ParameterizedType)) return;528 Type[] actualTypes = ((ParameterizedType) clazz.getGenericSuperclass()).getActualTypeArguments();529 if (((ParameterizedType) clazz.getGenericSuperclass()).getActualTypeArguments().length == 0) return;530 TypeVariable[] typeVariables = clazz.getSuperclass().getTypeParameters();531 if (typeVariables.length != actualTypes.length){532 throw new RuntimeException("Error: fail to handle generic types in Dto");533 }534 for (int i = 0; i < typeVariables.length; i++){535 map.put(typeVariables[i], actualTypes[i]);536 }537 handleGenericSuperclass(clazz.getSuperclass(), map);538 }539 private static List<String> handleGenericType(Class<?> clazz, Type genericType, Map<TypeVariable, Type> map){540 if (isNotCustomizedObject(clazz)) return null;541 if (!(genericType instanceof ParameterizedType)) return null;542 List<String> genericTypes = new ArrayList<>();543 Type[] actualTypes = ((ParameterizedType) genericType).getActualTypeArguments();544 TypeVariable[] typeVariables = clazz.getTypeParameters();545 if (typeVariables.length != actualTypes.length){546 throw new RuntimeException("Error: fail to handle generic types in Dto");547 }548 for (int i = 0; i < typeVariables.length; i++){549 Type a = actualTypes[i];550 if (a instanceof TypeVariable)551 a = getActualType(map, (TypeVariable) a);552 if (a != null)553 genericTypes.add(a.getTypeName());554 map.put(typeVariables[i], actualTypes[i]);...

Full Screen

Full Screen

isNotCustomizedObject

Using AI Code Generation

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc;2import org.evomaster.client.java.controller.problem.ProblemInfo;3import org.evomaster.client.java.controller.problem.ProblemInfoBuilder;4import org.evomaster.client.java.controller.problem.RestProblem;5import org.evomaster.client.java.controller.problem.RestResourceCalls;6import org.evomaster.client.java.controller.problem.rpc.RPCEndpointsBuilder;7import org.evomaster.client.java.controller.problem.rpc.RPCResourceCalls;8import org.evomaster.client.java.controller.problem.rpc.RPCResourceCallsBuilder;9import org.evomaster.client.java.controller.problem.rpc.RPCResult;10import org.evomaster.client.java.controller.problem.rpc.RPCResultBuilder;11import org.evomaster.client.java.controller.problem.rpc.RPCResultType;12import org.evomaster.client.java.controller.problem.rpc.RPCResultTypeBuilder;13import org.evomaster.client.java.controller.problem.rpc.RPCSingleResult;14import org.evomaster.client.java.controller.problem.rpc.RPCSingleResultBuilder;15import org.evomaster.client.java.controller.problem.rpc.RPCSingleResultType;16import org.evomaster.client.java.controller.problem.rpc.RPCSingleResultTypeBuilder;17import org.evomaster.client.java.controller.problem.rpc.RPCTarget;18import org.evomaster.client.java.controller.problem.rpc.RPCTargetBuilder;19import org.evomaster.client.java.controller.problem.rpc.RPCTargetType;20import org.evomaster.client.java.controller.problem.rpc.RPCTargetTypeBuilder;21import org.evomaster.client.java.controller.problem.rpc.RPCType;22import org.evomaster.client.java.controller.problem.rpc.RPCTypeBuilder;23import org.evomaster.client.java.controller.problem.rpc.RPCTypeFormat;24import org.evomaster.client.java.controller.problem.rpc.RPCTypeFormatBuilder;25import org.evomaster.client.java.controller.problem.rpc.RPCTypeKind;26import org.evomaster.client.java.controller.problem.rpc.RPCTypeKindBuilder;27import org.evomaster.client.java.controller.problem.rpc.RPCTypeRef;28import org.evomaster.client.java.controller.problem.rpc.RPCTypeRefBuilder;29import org.evomaster.client.java.controller.problem.rpc.RPCTypeRefType;30import org.evomaster.client.java.controller.problem.rpc.RPCTypeRefTypeBuilder;31import org.evomaster.client.java.controller.problem.rpc.RPCTypeType;32import org.evomaster.client.java.controller.problem.rpc.RPCTypeTypeBuilder;33import org.evomaster.client.java.controller.problem.rpc.RPCType

Full Screen

Full Screen

isNotCustomizedObject

Using AI Code Generation

copy

Full Screen

1import org.evomaster.client.java.controller.problem.ProblemInfo;2import org.evomaster.client.java.controller.problem.rpc.RPCEndpointsBuilder;3import org.evomaster.client.java.controller.problem.rpc.RPCProblem;4import org.evomaster.client.java.controller.problem.rpc.RPCSingleProblem;5import java.util.Arrays;6import java.util.List;7public class ProblemInfoImpl implements ProblemInfo {8 public RPCProblem getProblem() {9 return new RPCProblem() {10 public List<RPCSingleProblem> getEndpoints() {11 return Arrays.asList(12 new RPCSingleProblem() {13 public String getTargetClassName() {14 return "org.evomaster.client.java.controller.problem.rpc.RPCEndpointsBuilder";15 }16 public String getTargetMethodName() {17 return "isNotCustomizedObject";18 }19 public String getTargetMethodDescriptor() {20 return "(Ljava/lang/Object;)Z";21 }22 public boolean isStatic() {23 return false;24 }25 public boolean isPublic() {26 return true;27 }28 public boolean isPrivate() {29 return false;30 }31 public boolean isProtected() {32 return false;33 }34 public boolean isFinal() {35 return false;36 }37 public boolean isAbstract() {38 return false;39 }40 public String getTargetMethodReturnType() {41 return "Z";42 }43 }44 );45 }46 };47 }48}49at org.evomaster.client.java.controller.problem.rpc.RPCProblemImpl.getEndpoints(RPCProblemImpl.kt:38)50at org.evomaster.client.java.controller.problem.rpc.RPCProblemImpl.getEndpoints(RPCProblemImpl.kt:14)

Full Screen

Full Screen

isNotCustomizedObject

Using AI Code Generation

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc;2import com.google.gson.JsonElement;3import com.google.gson.JsonObject;4import org.evomaster.client.java.controller.api.dto.database.operations.DatabaseCommandDto;5import org.evomaster.client.java.controller.api.dto.database.operations.InsertionDto;6import org.evomaster.client.java.controller.api.dto.database.operations.SqlScriptDto;7import org.evomaster.client.java.controller.api.dto.database.schema.DatabaseType;8import org.evomaster.client.java.controller.api.dto.database.schema.TableDto;9import org.evomaster.client.java.controller.api.dto.database.schema.TableIndexDto;10import org.evomaster.client.java.controller.api.dto.database.schema.TableSchemaDto;11import org.evomaster.client.java.controller.api.dto.database.schema.TableUniqueDto;12import org.evomaster.client.java.controller.api.dto.database.schema.TypeDto;13import org.evomaster.client.java.controller.api.dto.database.schema.TypeKind;14import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifier;15import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierDto;16import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierKind;17import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierLengthDto;18import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierPrecisionDto;19import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierScaleDto;20import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierTimeZoneDto;21import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithLengthDto;22import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithPrecisionAndScaleDto;23import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneDto;24import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneKind;25import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZonePrecisionAndScaleDto;26import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneWithLengthDto;27import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneWithPrecisionAndScaleDto;28import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneWithPrecisionAndScaleWithLengthDto;29import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneWithPrecisionAndScaleWithLengthKind;30import org.evomaster.client.java.controller.api.dto.database.schema.TypeModifierWithTimeZoneWith

Full Screen

Full Screen

isNotCustomizedObject

Using AI Code Generation

copy

Full Screen

1class TestSuite {2 public void test0() throws Throwable {3 MockMvc mockMvc = MockMvcBuilders.standaloneSetup(new DefaultController()).build();4 MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/api/employee/{id}");5 requestBuilder.contentType(MediaType.APPLICATION_JSON);6 requestBuilder.accept(MediaType.APPLICATION_JSON);7 requestBuilder.param("id", "0");8 mockMvc.perform(requestBuilder).andExpect(MockMvcResultMatchers.status().is(200));9 }10}11import org.junit.Test;12import org.junit.runner.RunWith;13import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;14import org.springframework.boot.test.context.SpringBootTest;15import org.springframework.http.MediaType;16import org.springframework.test.context.junit4.SpringRunner;17import org.springframework.test.web.servlet.MockMvc;18import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder;19import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;20import org.springframework.test.web.servlet.result.MockMvcResultMatchers;21@RunWith(SpringRunner.class)22public class TestSuite {23 public void test0() throws Throwable {24 MockMvc mockMvc = MockMvcBuilders.standaloneSetup(new DefaultController()).build();25 MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.post("/api/employee/{id}");26 requestBuilder.contentType(MediaType.APPLICATION_JSON);27 requestBuilder.accept(MediaType.APPLICATION_JSON);28 requestBuilder.param("id", "0");29 requestBuilder.content("{\"name\":\"john\",\"salary\":1000}");30 mockMvc.perform(requestBuilder).andExpect(MockMvcResultMatchers.status().is(200));31 }32}

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