How to use categorizeBasedOnResponse method of org.evomaster.client.java.controller.internal.SutController class

Best EvoMaster code snippet using org.evomaster.client.java.controller.internal.SutController.categorizeBasedOnResponse

Source:SutController.java Github

copy

Full Screen

...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;691 }692 private RPCType getRPCType(RPCActionDto dto){693 return rpcInterfaceSchema.get(dto.interfaceId).getRpcType();694 }695 public abstract void newTestSpecificHandler();696 public abstract void newActionSpecificHandler(ActionDto dto);697 /**698 * Check if bytecode instrumentation is on.699 *700 * @return true if the instrumentation is on701 */702 public abstract boolean isInstrumentationActivated();703 /**704 * <p>705 * Check if the system under test (SUT) is running and fully initialized706 * </p>707 *708 * <p>709 * How to implement this method depends on the library/framework used710 * to build the application.711 * In Spring applications, this can be done with something like:712 * {@code ctx != null && ctx.isRunning()}, where {@code ctx} is a field where713 * {@code ConfigurableApplicationContext} should be stored when starting714 * the application.715 * </p>716 * @return true if the SUT is running717 */718 public abstract boolean isSutRunning();719 /**720 * <p>721 * A "," separated list of package prefixes or class names.722 * For example, "com.foo.,com.bar.Bar".723 * This is used to specify for which classes we want to measure724 * code coverage.725 * </p>726 *727 * <p>728 * Note: be careful of using something as general as "com."729 * or "org.", as most likely ALL your third-party libraries730 * would be instrumented as well, which could have a severe731 * impact on performance.732 * </p>733 *734 * @return a String representing the packages to cover735 */736 public abstract String getPackagePrefixesToCover();737 /**738 * <p>739 * If the application uses some sort of authentication, these details740 * need to be provided here.741 * Even if EvoMaster can have access to the database, it would not be able742 * to recover hashed passwords.743 * </p>744 *745 * <p>746 * To test the application, there is the need to provide auth for at least 1 user747 * (and more if they have different authorization roles).748 * When EvoMaster generates test cases, it can decide to use the credential of749 * any user provided by this method.750 * </p>751 *752 * <p>753 * What type of info to provide here depends on the auth mechanism, e.g.,754 * Basic or cookie-based (using {@link CookieLoginDto}).755 * To simplify the creation of these DTOs with auth info, you can look756 * at {@link org.evomaster.client.java.controller.AuthUtils}.757 * </p>758 *759 * <p>760 * If the credential are stored in a database, be careful on how the761 * method {@code resetStateOfSUT} is implemented.762 * If you delete all data with {@link DbCleaner}, then you will need as well to763 * recreate the auth details.764 * This can be put in a script, executed then with {@link SqlScriptRunner}.765 * </p>766 *767 * @return a list of valid authentication credentials, or {@code null} if768 * * none is necessary769 */770 public abstract List<AuthenticationDto> getInfoForAuthentication();771 /**772 * <p>773 * If the system under test (SUT) uses a SQL database, we need to have a774 * configured connection to access it.775 * </p>776 *777 * <p>778 * This method is related to {@link SutHandler#resetStateOfSUT}.779 * When accessing a {@code Connection} object to reset the state of780 * the application, we suggest to save it to field (eg when starting the781 * application), and return such field here, e.g., {@code return connection;}.782 * This connection object will be used by EvoMaster to analyze the state of783 * the database to create better test cases.784 * </p>785 *786 * @return {@code null} if the SUT does not use any SQL database787 */788 @Deprecated789 public Connection getConnection(){790 throw new IllegalStateException("This deprecated method should never be called");791 }792 /**793 * If the system under test (SUT) uses a SQL database, we need to specify794 * the driver used to connect, eg. {@code org.h2.Driver}.795 * This is needed for when we intercept SQL commands with P6Spy796 *797 * @return {@code null} if the SUT does not use any SQL database798 * @deprecated this method is no longer needed799 */800 @Deprecated801 public String getDatabaseDriverName(){802 throw new IllegalStateException("This deprecated method should never be called");803 }804 public abstract List<TargetInfo> getTargetInfos(Collection<Integer> ids);805 /**806 * @return additional info for each action in the test.807 * The list is ordered based on the action index.808 */809 public abstract List<AdditionalInfo> getAdditionalInfoList();810 /**811 * <p>812 * Depending of which kind of SUT we are dealing with (eg, REST, GraphQL or SPA frontend),813 * there is different info that must be provided.814 * For example, in a RESTful API, you need to speficy where the OpenAPI/Swagger schema815 * is located.816 * </p>817 *818 * <p>819 * The interface {@link ProblemInfo} provides different implementations, like820 * {@code RestProblem}.821 * You will need to instantiate one of such classes, and return it here in this method.822 * </p>823 * @return an instance of object with all the needed data for the specific addressed problem824 */825 public abstract ProblemInfo getProblemInfo();826 /**827 * Test cases could be outputted in different language (e.g., Java and Kotlin),828 * using different testing libraries (e.g., JUnit 4 or 5).829 * Here, need to specify the default option.830 *831 * @return the format in which the test cases should be generated832 */833 public abstract SutInfoDto.OutputFormat getPreferredOutputFormat();834 public abstract UnitsInfoDto getUnitsInfoDto();835 public abstract void setKillSwitch(boolean b);836 public abstract void setExecutingInitSql(boolean executingInitSql);837 public abstract void setExecutingAction(boolean executingAction);838 public abstract BootTimeInfoDto getBootTimeInfoDto();839 protected BootTimeInfoDto getBootTimeInfoDto(BootTimeObjectiveInfo info){840 if (info == null)841 return null;842 BootTimeInfoDto infoDto = new BootTimeInfoDto();843 infoDto.targets = info.getObjectiveCoverageAtSutBootTime()844 .entrySet().stream().map(e-> new TargetInfoDto(){{845 descriptiveId = e.getKey();846 value = e.getValue();847 }}).collect(Collectors.toList());848 infoDto.externalServicesDto = info.getExternalServiceInfo().stream()849 .map(e -> new ExternalServiceInfoDto(e.getProtocol(), e.getHostname(), e.getRemotePort()))850 .collect(Collectors.toList());851 return infoDto;852 }853 public abstract String getExecutableFullPath();854 protected UnitsInfoDto getUnitsInfoDto(UnitsInfoRecorder recorder){855 if(recorder == null){856 return null;857 }858 UnitsInfoDto dto = new UnitsInfoDto();859 dto.numberOfBranches = recorder.getNumberOfBranches();860 dto.numberOfLines = recorder.getNumberOfLines();861 dto.numberOfReplacedMethodsInSut = recorder.getNumberOfReplacedMethodsInSut();862 dto.numberOfReplacedMethodsInThirdParty = recorder.getNumberOfReplacedMethodsInThirdParty();863 dto.numberOfTrackedMethods = recorder.getNumberOfTrackedMethods();864 dto.unitNames = recorder.getUnitNames();865 dto.parsedDtos = recorder.getParsedDtos();866 dto.numberOfInstrumentedNumberComparisons = recorder.getNumberOfInstrumentedNumberComparisons();867 return dto;868 }869 @Override870 public Object getRPCClient(String interfaceName) {871 if (!(getProblemInfo() instanceof RPCProblem))872 throw new RuntimeException("ERROR: the problem should be RPC but it is "+ getProblemInfo().getClass().getSimpleName());873 Object client = ((RPCProblem) getProblemInfo()).getClient(interfaceName);874 if (client == null)875 throw new RuntimeException("ERROR: cannot find any client with the name :"+ interfaceName);876 return client;877 }878 @Override879 public CustomizedCallResultCode categorizeBasedOnResponse(Object response) {880 return null;881 }882 @Override883 public List<CustomizedRequestValueDto> getCustomizedValueInRequests() {884 return null;885 }886 @Override887 public List<CustomizedNotNullAnnotationForRPCDto> specifyCustomizedNotNullAnnotation() {888 return null;889 }890 @Override891 public List<SeededRPCTestDto> seedRPCTests() {892 return null;893 }...

Full Screen

Full Screen

categorizeBasedOnResponse

Using AI Code Generation

copy

Full Screen

1import org.evomaster.client.java.controller.api.dto.SutInfoDto;2import org.evomaster.client.java.controller.api.dto.database.operations.DatabaseCommandDto;3import org.evomaster.client.java.controller.api.dto.database.operations.InsertionDto;4import org.evomaster.client.java.controller.api.dto.database.operations.QueryDto;5import org.evomaster.client.java.controller.api.dto.database.operations.SqlScriptDto;6import org.evomaster.client.java.controller.api.dto.database.schema.DbSchemaDto;7import org.evomaster.client.java.controller.api.dto.database.schema.TableDto;8import org.evomaster.client.java.controller.api.dto.database.schema.TableIndexDto;9import org.evomaster.client.java.controller.api.dto.database.schema.TableIndexType;10import org.evomaster.client.java.controller.api.dto.database.schema.TableType;11import org.evomaster.client.java.controller.api.dto.database.schema.ViewDto;12import org.evomaster.client.java.controller.api.dto.database.operations.DatabaseCommandDto;13import org.evomaster.client.java.controller.internal.SutController;14import org.evomaster.client.java.controller.api.dto.database.operations.InsertionDto;15import org.evomaster.client.java.controller.api.dto.database.operations.QueryDto;16import org.evomaster.client.java.controller.api.dto.database.operations.SqlScriptDto;17import org.evomaster.client.java.controller.api.dto.database.schema.DbSchemaDto;18import org.evomaster.client.java.controller.api.dto.database.schema.TableDto;19import org.evomaster.client.java.controller.api.dto.database.schema.TableIndexDto;20import org.evomaster.client.java.controller.api.dto.database.schema.TableIndexType;21import org.evomaster.client.java.controller.api.dto.database.schema.TableType;22import org.evomaster.client.java.controller.api.dto.database.schema.ViewDto;23import java.util.ArrayList;24import java.util.List;25import java.util.Map;26public class DbController {27 private DbController() {28 }29 public static void main(String[] args) throws Exception {30 SutController controller = new SutController("localhost", 8080);31 SutInfoDto info = controller.getSutInfo();32 System.out.println("Database name: " + info.getDatabaseDto().getDatabaseName());33 List<DatabaseCommandDto> commands = new ArrayList<>();34 InsertionDto insertion = new InsertionDto();35 insertion.setTable("EMPLOYEE");36 insertion.setValues(Map.of("ID", 1, "NAME", "John", "SALARY", 10000.0));37 commands.add(insertion);

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