How to use list method of com.thrift.example.artificial.RPCInterfaceExampleImpl class

Best EvoMaster code snippet using com.thrift.example.artificial.RPCInterfaceExampleImpl.list

Source:RPCSutControllerTest.java Github

copy

Full Screen

...186 assertEquals(expectedAssertions, String.join("\n", responseDto.assertionScript));187 }188 @Test189 public void testListResponse(){190 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("listResponse")).collect(Collectors.toList());191 assertEquals(1, dtos.size());192 RPCActionDto dto = dtos.get(0).copy();193 assertEquals(0, dto.requestParams.size());194 dto.doGenerateAssertions = true;195 dto.doGenerateTestScript = true;196 dto.controllerVariable = "rpcController";197 dto.responseVariable = "res1";198 dto.maxAssertionForDataInCollection = -1;199 ActionResponseDto responseDto = new ActionResponseDto();200 rpcController.executeAction(dto, responseDto);201 String expectedTestScript ="java.util.List<com.thrift.example.artificial.BigNumberObj> res1 = null;\n" +202 "{\n" +203 " res1 = ((com.thrift.example.artificial.RPCInterfaceExampleImpl)(rpcController.getRPCClient(\"com.thrift.example.artificial.RPCInterfaceExample\"))).listResponse();\n" +204 "}";205 assertEquals(expectedTestScript, String.join("\n", responseDto.testScript));206 String expectedAssertions = "assertEquals(1, res1.size());\n" +207 "assertEquals(\"10.12\", res1.get(0).getBdPositiveFloat().toString());\n" +208 "assertEquals(\"-10.12\", res1.get(0).getBdNegativeFloat().toString());\n" +209 "assertEquals(\"0.00\", res1.get(0).getBdPositiveOrZeroFloat().toString());\n" +210 "assertEquals(\"-2.16\", res1.get(0).getBdNegativeOrZeroFloat().toString());\n" +211 "assertEquals(\"10\", res1.get(0).getBiPositive().toString());\n" +212 "assertEquals(\"0\", res1.get(0).getBiPositiveOrZero().toString());\n" +213 "assertEquals(\"-10\", res1.get(0).getBiNegative().toString());\n" +214 "assertEquals(\"-2\", res1.get(0).getBiNegativeOrZero().toString());";215 assertEquals(expectedAssertions, String.join("\n", responseDto.assertionScript));216 }217 @Test218 public void testBigNumber(){219 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("bigNumber")).collect(Collectors.toList());220 assertEquals(1, dtos.size());221 RPCActionDto dto = dtos.get(0).copy();222 assertEquals(1, dto.requestParams.size());223 dto.doGenerateAssertions = true;224 dto.doGenerateTestScript = true;225 dto.controllerVariable = "rpcController";226 dto.responseVariable = "res1";227 ActionResponseDto responseDto = new ActionResponseDto();228 ParamDto param = dto.requestParams.get(0);229 param.stringValue = "{}";230 assertEquals(8, param.innerContent.size());231 param.innerContent.get(0).stringValue = "10.12";232 param.innerContent.get(1).stringValue = "-10.12";233 param.innerContent.get(2).stringValue = "0.00";234 param.innerContent.get(3).stringValue = "-2.16";235 param.innerContent.get(4).stringValue = "10";236 param.innerContent.get(5).stringValue = "0";237 param.innerContent.get(6).stringValue = "-10";238 param.innerContent.get(7).stringValue = "-2";239 rpcController.executeAction(dto, responseDto);240 String expect = "BigNumberObj{" +241 "bdPositiveFloat=10.12" +242 ", bdNegativeFloat=-10.12" +243 ", bdPositiveOrZeroFloat=0.00" +244 ", bdNegativeOrZeroFloat=-2.16" +245 ", biPositive=10" +246 ", biPositiveOrZero=0" +247 ", biNegative=-10" +248 ", biNegativeOrZero=-2" +249 '}';250 assertEquals(expect, responseDto.rpcResponse.stringValue);251 List<String> assertionScript = responseDto.assertionScript;252 assertEquals("assertEquals(\"BigNumberObj{bdPositiveFloat=10.12, bdNegativeFloat=-10.12, bdPositiveOrZeroFloat=0.00, bdNegativeOrZeroFloat=-2.16, biPositive=10, biPositiveOrZero=0, biNegative=-10, biNegativeOrZero=-2}\", res1);", assertionScript.get(0));253 }254 @Test255 public void testEnumWithConstructor(){256 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("handleEnumWithConstructor")).collect(Collectors.toList());257 assertEquals(1, dtos.size());258 RPCActionDto dto = dtos.get(0).copy();259 assertEquals(1, dto.requestParams.size());260 dto.doGenerateAssertions = true;261 dto.doGenerateTestScript = true;262 dto.controllerVariable = "rpcController";263 dto.responseVariable = "res1";264 ActionResponseDto responseDto = new ActionResponseDto();265 ParamDto param = dto.requestParams.get(0);266 param.stringValue = "{}";267 param.innerContent.get(0).stringValue="0";268 rpcController.executeAction(dto, responseDto);269 assertNull(responseDto.exceptionInfoDto);270 assertEquals(9, responseDto.testScript.size());271 assertEquals(1, responseDto.assertionScript.size());272 assertEquals("first", responseDto.rpcResponse.stringValue);273 }274 @Test275 public void testJavaException(){276 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("handleException")).collect(Collectors.toList());277 assertEquals(1, dtos.size());278 RPCActionDto dto = dtos.get(0).copy();279 assertEquals(1, dto.requestParams.size());280 ActionResponseDto responseDto = new ActionResponseDto();281 ParamDto param = dto.requestParams.get(0);282 param.stringValue = null;283 rpcController.executeAction(dto, responseDto);284 assertNotNull(responseDto.exceptionInfoDto);285 assertEquals(NullPointerException.class.getName(), responseDto.exceptionInfoDto.exceptionName);286 assertEquals("null", responseDto.exceptionInfoDto.exceptionMessage);287 param.stringValue = "state";288 rpcController.executeAction(dto, responseDto);289 assertNotNull(responseDto.exceptionInfoDto);290 assertEquals(IllegalStateException.class.getName(), responseDto.exceptionInfoDto.exceptionName);291 assertEquals("state", responseDto.exceptionInfoDto.exceptionMessage);292 param.stringValue = "argument";293 rpcController.executeAction(dto, responseDto);294 assertNotNull(responseDto.exceptionInfoDto);295 assertEquals(IllegalArgumentException.class.getName(), responseDto.exceptionInfoDto.exceptionName);296 assertEquals("argument", responseDto.exceptionInfoDto.exceptionMessage);297 param.stringValue = "foo";298 rpcController.executeAction(dto, responseDto);299 assertNotNull(responseDto.exceptionInfoDto);300 assertEquals(RuntimeException.class.getName(), responseDto.exceptionInfoDto.exceptionName);301 assertEquals("foo", responseDto.exceptionInfoDto.exceptionMessage);302 }303 @Test304 public void testObjectResponseAssertion(){305 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("objResponse")).collect(Collectors.toList());306 assertEquals(1, dtos.size());307 RPCActionDto dto = dtos.get(0).copy();308 assertEquals(0, dto.requestParams.size());309 dto.doGenerateAssertions = true;310 dto.doGenerateTestScript = true;311 dto.controllerVariable = "rpcController";312 dto.responseVariable = "res1";313 ActionResponseDto responseDto = new ActionResponseDto();314 rpcController.executeAction(dto, responseDto);315 assertEquals(4, responseDto.testScript.size());316 assertEquals("com.thrift.example.artificial.ObjectResponse res1 = null;", responseDto.testScript.get(0));317 assertEquals("{", responseDto.testScript.get(1));318 assertEquals(" res1 = ((com.thrift.example.artificial.RPCInterfaceExampleImpl)(rpcController.getRPCClient(\"com.thrift.example.artificial.RPCInterfaceExample\"))).objResponse();", responseDto.testScript.get(2));319 assertEquals("}", responseDto.testScript.get(3));320 assertEquals(7, responseDto.assertionScript.size());321 assertEquals("assertEquals(\"foo\", res1.f1);", responseDto.assertionScript.get(0));322 assertEquals("assertEquals(42, res1.f2);", responseDto.assertionScript.get(1));323 assertEquals("assertTrue(numbersMatch(0.42, res1.f3));", responseDto.assertionScript.get(2));324 assertEquals("assertNull(res1.cycle);", responseDto.assertionScript.get(3));325 assertEquals("assertEquals(3, res1.f4.length);", responseDto.assertionScript.get(4));326 assertEquals("assertNull(res1.f5);", responseDto.assertionScript.get(5));327 assertTrue(responseDto.assertionScript.get(6).contains("//assertEquals"));328 }329 @Test330 public void testHandleNestedGenericString(){331 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("handleNestedGenericString")).collect(Collectors.toList());332 assertEquals(1, dtos.size());333 RPCActionDto dto = dtos.get(0).copy();334 assertEquals(1, dto.requestParams.size());335 dto.doGenerateAssertions = true;336 dto.doGenerateTestScript = true;337 dto.controllerVariable = "rpcController";338 dto.responseVariable = "res1";339 ActionResponseDto responseDto = new ActionResponseDto();340 dto.requestParams.get(0).innerContent = null;341 rpcController.executeAction(dto, responseDto);342 assertEquals(5, responseDto.testScript.size());343 assertEquals("com.thrift.example.artificial.NestedGenericDto<java.lang.String> res1 = null;", responseDto.testScript.get(0));344 assertEquals("{", responseDto.testScript.get(1));345 assertEquals(" com.thrift.example.artificial.NestedGenericDto<java.lang.String> arg0 = null;", responseDto.testScript.get(2));346 assertEquals(" res1 = ((com.thrift.example.artificial.RPCInterfaceExampleImpl)(rpcController.getRPCClient(\"com.thrift.example.artificial.RPCInterfaceExample\"))).handleNestedGenericString(arg0);", responseDto.testScript.get(3));347 assertEquals("}", responseDto.testScript.get(4));348 assertNotNull(responseDto.exceptionInfoDto);349 assertEquals("java.lang.NullPointerException", responseDto.exceptionInfoDto.exceptionName);350 dto = dtos.get(0).copy();351 dto.doGenerateAssertions = true;352 dto.doGenerateTestScript = true;353 dto.controllerVariable = "rpcController";354 dto.responseVariable = "res1";355 dto.maxAssertionForDataInCollection = 4;356 dto.requestParams.get(0).innerContent.get(0).innerContent = null;357 dto.requestParams.get(0).innerContent.get(1).innerContent = null;358 dto.requestParams.get(0).innerContent.get(2).innerContent = null;359 rpcController.executeAction(dto, responseDto);360 assertEquals(11, responseDto.testScript.size());361 assertEquals("com.thrift.example.artificial.NestedGenericDto<java.lang.String> res1 = null;", responseDto.testScript.get(0));362 assertEquals("{", responseDto.testScript.get(1));363 assertEquals(" com.thrift.example.artificial.NestedGenericDto<java.lang.String> arg0 = null;", responseDto.testScript.get(2));364 assertEquals(" {", responseDto.testScript.get(3));365 assertEquals(" arg0 = new com.thrift.example.artificial.NestedGenericDto<java.lang.String>();", responseDto.testScript.get(4));366 assertEquals(" arg0.intData = null;", responseDto.testScript.get(5));367 assertEquals(" arg0.stringData = null;", responseDto.testScript.get(6));368 assertEquals(" arg0.list = null;", responseDto.testScript.get(7));369 assertEquals(" }", responseDto.testScript.get(8));370 assertEquals(" res1 = ((com.thrift.example.artificial.RPCInterfaceExampleImpl)(rpcController.getRPCClient(\"com.thrift.example.artificial.RPCInterfaceExample\"))).handleNestedGenericString(arg0);", responseDto.testScript.get(9));371 assertEquals("}", responseDto.testScript.get(10));372 assertEquals("assertEquals(\"child\", res1.intData.data1);", responseDto.assertionScript.get(0));373 assertEquals("assertEquals(0, res1.intData.data2.intValue());", responseDto.assertionScript.get(1));374 assertEquals("assertEquals(\"child\", res1.stringData.data1);", responseDto.assertionScript.get(2));375 assertEquals("assertEquals(\"child\", res1.stringData.data2);", responseDto.assertionScript.get(3));376 assertEquals("assertEquals(2, res1.list.size());", responseDto.assertionScript.get(4));377 assertEquals("assertEquals(\"child\", res1.list.get(0));", responseDto.assertionScript.get(5));378 assertEquals("assertEquals(\"child\", res1.list.get(1));", responseDto.assertionScript.get(6));379 }380 @Test381 public void testHandleGenericIntString(){382 List<RPCActionDto> dtos = interfaceSchemas.get(0).endpoints.stream().filter(s-> s.actionName.equals("handleGenericIntString")).collect(Collectors.toList());383 assertEquals(1, dtos.size());384 RPCActionDto dto = dtos.get(0).copy();385 assertEquals(1, dto.requestParams.size());386 dto.doGenerateAssertions = true;387 dto.doGenerateTestScript = true;388 dto.controllerVariable = "controller";389 dto.responseVariable = "res1";390 ActionResponseDto responseDto = new ActionResponseDto();391 rpcController.executeAction(dto, responseDto);392 assertEquals(10, responseDto.testScript.size());...

Full Screen

Full Screen

Source:FakeSutController.java Github

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc.invocation;2import com.fasterxml.jackson.core.JsonProcessingException;3import com.fasterxml.jackson.databind.ObjectMapper;4import com.thrift.example.artificial.RPCInterfaceExample;5import com.thrift.example.artificial.RPCInterfaceExampleImpl;6import org.evomaster.client.java.controller.EmbeddedSutController;7import org.evomaster.client.java.controller.api.dto.AuthenticationDto;8import org.evomaster.client.java.controller.api.dto.LocalAuthenticationDto;9import org.evomaster.client.java.controller.api.dto.SutInfoDto;10import org.evomaster.client.java.controller.api.dto.problem.rpc.SeededRPCActionDto;11import org.evomaster.client.java.controller.api.dto.problem.rpc.SeededRPCTestDto;12import org.evomaster.client.java.controller.internal.db.DbSpecification;13import org.evomaster.client.java.controller.problem.ProblemInfo;14import org.evomaster.client.java.controller.problem.RPCProblem;15import java.util.*;16/**17 * created by manzhang on 2021/11/2718 */19public class FakeSutController extends EmbeddedSutController {20 public boolean running;21 private RPCInterfaceExampleImpl sut = new RPCInterfaceExampleImpl();22 private final ObjectMapper objectMapper = new ObjectMapper();23 @Override24 public String startSut() {25 if (sut == null)26 sut = new RPCInterfaceExampleImpl();27 running = true;28 return null;29 }30 @Override31 public void stopSut() {32 running =false;33 }34 @Override35 public void resetStateOfSUT() {36 }37 @Override38 public boolean isSutRunning() {39 return running;40 }41 @Override42 public String getPackagePrefixesToCover() {43 return null;44 }45 @Override46 public List<AuthenticationDto> getInfoForAuthentication() {47 return Arrays.asList(48 new AuthenticationDto(){{49 name = "local";50 localAuthSetup = new LocalAuthenticationDto(){{51 authenticationInfo = "local_foo";52 }};53 }}54 );55 }56 @Override57 public List<DbSpecification> getDbSpecifications() {58 return null;59 }60 @Override61 public ProblemInfo getProblemInfo() {62 return new RPCProblem(new HashMap<String, Object>(){{63 put(RPCInterfaceExample.class.getName(), sut);64 }});65 }66 @Override67 public SutInfoDto.OutputFormat getPreferredOutputFormat() {68 return null;69 }70 @Override71 public boolean handleLocalAuthenticationSetup(String authenticationInfo) {72 boolean auth = authenticationInfo.equals("local_foo");73 sut.setAuthorized(auth);74 return auth;75 }76 @Override77 public List<SeededRPCTestDto> seedRPCTests() {78 return Arrays.asList(new SeededRPCTestDto(){{79 testName = "test_1";80 rpcFunctions = Arrays.asList(81 new SeededRPCActionDto(){{82 interfaceName = RPCInterfaceExample.class.getName();83 functionName = "seedcheck";84 inputParams= Arrays.asList("[1,2,3]","[1,2,3]","[{\"bdPositiveFloat\":10.12,\"bdNegativeFloat\":-10.12,\"bdPositiveOrZeroFloat\":0.00,\"bdNegativeOrZeroFloat\":-2.16,\"biPositive\":10,\"biPositiveOrZero\":0,\"biNegative\":-10,\"biNegativeOrZero\":-2}]","{\"1\":\"1\",\"2\":\"2\"}");85 inputParamTypes= Arrays.asList(List.class.getName(),List.class.getName(),List.class.getName(), Map.class.getName());86 }}87 );88 }});89 }90}...

Full Screen

Full Screen

Source:RPCEndpointsBuilderTestBase.java Github

copy

Full Screen

1package org.evomaster.client.java.controller.problem.rpc;2import com.thrift.example.artificial.Necessity;3import com.thrift.example.artificial.RPCInterfaceExampleImpl;4import org.evomaster.client.java.controller.api.dto.AuthenticationDto;5import org.evomaster.client.java.controller.api.dto.CustomizedRequestValueDto;6import org.evomaster.client.java.controller.problem.rpc.schema.EndpointSchema;7import org.evomaster.client.java.controller.problem.rpc.schema.InterfaceSchema;8import org.evomaster.client.java.controller.api.dto.problem.rpc.RPCType;9import org.evomaster.client.java.controller.problem.rpc.schema.params.NamedTypedValue;10import java.util.Arrays;11import java.util.List;12import static org.junit.jupiter.api.Assertions.assertEquals;13/**14 * created by manzhang on 2021/11/1215 */16public abstract class RPCEndpointsBuilderTestBase {17 public InterfaceSchema schema = RPCEndpointsBuilder.build(getInterfaceName(), getRPCType(), new RPCInterfaceExampleImpl(), null, null, null, null, getAuthInfo(), getCustomizedValueInRequests(), specifyCustomizedNotNullAnnotation());18 public abstract String getInterfaceName();19 public abstract int expectedNumberOfEndpoints();20 public List<CustomizedRequestValueDto> getCustomizedValueInRequests(){21 return null;22 }23 public List<CustomizedNotNullAnnotationForRPCDto> specifyCustomizedNotNullAnnotation() {24 return Arrays.asList(25 new CustomizedNotNullAnnotationForRPCDto(){{26 annotationType = "com.thrift.example.artificial.CustomAnnotation";27 annotationMethod = "necessity";28 equalsTo = Necessity.REQUIRED;29 }}30 );31 }32 public List<AuthenticationDto> getAuthInfo(){return null;}33 public RPCType getRPCType(){34 return RPCType.THRIFT;35 }36 public EndpointSchema getOneEndpoint(String name){37 List<EndpointSchema> endpoints = schema.findEndpoints(name);38 assertEquals(1, endpoints.size());39 return endpoints.get(0);40 }41 public void getNullEndpoint(String name){42 List<EndpointSchema> endpoints = schema.findEndpoints(name);43 assertEquals(0, endpoints.size());44 }45 public List<EndpointSchema> getListEndpoint(String name, int expectedSize){46 List<EndpointSchema> endpoints = schema.findEndpoints(name);47 assertEquals(expectedSize, endpoints.size());48 return endpoints;49 }50 public boolean containType(List<NamedTypedValue> params, String fullTypeName){51 return params.stream().anyMatch(s-> s.getType().getFullTypeNameWithGenericType().equals(fullTypeName));52 }53}...

Full Screen

Full Screen

list

Using AI Code Generation

copy

Full Screen

1package com.thrift.example.artificial;2import org.apache.thrift.TException;3import org.apache.thrift.protocol.TBinaryProtocol;4import org.apache.thrift.protocol.TProtocol;5import org.apache.thrift.transport.TSocket;6import org.apache.thrift.transport.TTransport;7import org.apache.thrift.transport.TTransportException;8public class list {9 public static void main(String[] args) {10 try {11 TTransport transport;12 transport = new TSocket("localhost", 9090);13 transport.open();14 TProtocol protocol = new TBinaryProtocol(transport);15 RPCInterfaceExample.Client client = new RPCInterfaceExample.Client(protocol);16 perform(client);17 transport.close();18 } catch (TTransportException e) {19 e.printStackTrace();20 } catch (TException x) {21 x.printStackTrace();22 }23 }24 private static void perform(RPCInterfaceExample.Client client) throws TException {25 System.out.println("list: " + client.list());26 }27}28package com.thrift.example.artificial;29import org.apache.thrift.TException;30import org.apache.thrift.protocol.TBinaryProtocol;31import org.apache.thrift.protocol.TProtocol;32import org.apache.thrift.transport.TSocket;33import org.apache.thrift.transport.TTransport;34import org.apache.thrift.transport.TTransportException;35public class get {36 public static void main(String[] args) {37 try {38 TTransport transport;39 transport = new TSocket("localhost", 9090);40 transport.open();41 TProtocol protocol = new TBinaryProtocol(transport);42 RPCInterfaceExample.Client client = new RPCInterfaceExample.Client(protocol);43 perform(client);44 transport.close();45 } catch (TTransportException e) {46 e.printStackTrace();47 } catch (TException x) {48 x.printStackTrace();49 }50 }51 private static void perform(RPCInterfaceExample.Client client) throws TException {52 System.out.println("get: " + client.get("1"));53 }54}55package com.thrift.example.artificial;56import org.apache.thrift.TException;57import org.apache.thrift.protocol.TBinaryProtocol;58import org.apache.thrift.protocol.TProtocol;59import org.apache.thrift.transport.TSocket;60import org.apache.thrift.transport.TTransport;61import

Full Screen

Full Screen

list

Using AI Code Generation

copy

Full Screen

1package com.thrift.example.artificial;2import java.util.List;3import java.util.ArrayList;4import org.apache.thrift.TException;5public class RPCInterfaceExampleImpl implements RPCInterfaceExample.Iface {6public List<Integer> list() throws TException {7List<Integer> list = new ArrayList<Integer>();8list.add(1);9list.add(2);10list.add(3);11return list;12}13}14package com.thrift.example.artificial;15import java.util.List;16import org.apache.thrift.TException;17import org.apache.thrift.protocol.TBinaryProtocol;18import org.apache.thrift.transport.TFramedTransport;19import org.apache.thrift.transport.TSocket;20import org.apache.thrift.transport.TTransport;21import org.apache.thrift.transport.TTransportException;22public class RPCInterfaceExampleClient {23public static void main(String[] args) throws TException {24TTransport transport = new TFramedTransport(new TSocket("localhost", 9090));25TBinaryProtocol protocol = new TBinaryProtocol(transport);26RPCInterfaceExample.Client client = new RPCInterfaceExample.Client(protocol);27transport.open();28List<Integer> list = client.list();29System.out.println(list);30transport.close();31}32}33package com.thrift.example.artificial;34import org.apache.thrift.TException;35import org.apache.thrift.protocol.TBinaryProtocol;36import org.apache.thrift.server.TServer;37import org.apache.thrift.server.TSimpleServer;38import org.apache.thrift.server.TServer.Args;39import org.apache.thrift.transport.TServerSocket;40import org.apache.thrift.transport.TServerTransport;41import org.apache.thrift.transport.TTransportException;42public class RPCInterfaceExampleServer {43public static void main(String[] args) throws TException {44RPCInterfaceExampleHandler handler = new RPCInterfaceExampleHandler();45RPCInterfaceExample.Processor processor = new RPCInterfaceExample.Processor(handler);46try {47TServerTransport serverTransport = new TServerSocket(9090);48TServer server = new TSimpleServer(new Args(serverTransport).processor(processor));49System.out.println("Starting the simple server...");50server.serve();51} catch (TTransportException e) {52e.printStackTrace();53}54}55}

Full Screen

Full Screen

list

Using AI Code Generation

copy

Full Screen

1package com.thrift.example.artificial;2import java.util.List;3import java.util.ArrayList;4import java.util.Map;5import java.util.HashMap;6import java.util.Set;7import java.util.HashSet;8import java.util.Iterator;9import java.util.Date;10import java.util.regex.Pattern;11import java.util.regex.Matcher;12import java.util.logging.Level;13import java.util.logging.Logger;14import java.util.concurrent.TimeUnit;15import java.util.concurrent.atomic.AtomicInteger;16import java.util.concurrent.atomic.AtomicLong;17import java.util.concurrent.atomic.AtomicReference;18import java.util.concurrent.atomic.AtomicBoolean;19import java.util.concurrent.atomic.AtomicReferenceArray;20import java.util.concurrent.locks.ReentrantLock;21import java.util.concurrent.locks.ReentrantReadWriteLock;22import java.util.concurrent.locks.Lock;23import java.util.concurrent.locks.ReadWriteLock;24import java.util.concurrent.locks.Condition;25import java.util.concurrent.ConcurrentHashMap;26import java.util.concurrent.ConcurrentLinkedQueue;27import java.util.concurrent.ConcurrentSkipListMap;28import java.util.concurrent.ConcurrentSkipListSet;29import java.util.concurrent.Semaphore;30import java.util.concurrent.SynchronousQueue;31import java.util.concurrent.BlockingQueue;32import java.util.concurrent.LinkedBlockingQueue;33import java.util.concurrent.ArrayBlockingQueue;34import java.util.concurrent.DelayQueue;35import java.util.concurrent.Delayed;36import java.util.concurrent.TimeUnit;37import java.util.concurrent.ThreadPoolExecutor;38import java.util.concurrent.Executors;39import java.util.concurrent.ExecutorService;40import java.util.concurrent.CountDownLatch;41import java.util.concurrent.CyclicBarrier;42import java.util.concurrent.BrokenBarrierException;43import java.util.concurrent.Callable;44import java.util.concurrent.Future;45import java.util.concurrent.FutureTask;46import java.util.concurrent.ExecutionException;47import java.util.concurrent.TimeoutException;48import java.util.concurrent.RejectedExecutionException;49import java.util.concurrent.atomic.AtomicInteger;50import java.util.concurrent.atomic.AtomicLong;51import java.util.concurrent.atomic.AtomicReference;52import java.util.concurrent.atomic.AtomicBoolean;53import java.util.concurrent.atomic.AtomicReferenceArray;54import java.util.concurrent.locks.ReentrantLock;55import java.util.concurrent.locks.ReentrantReadWriteLock;56import java.util.concurrent.locks.Lock;57import java.util.concurrent.locks.ReadWriteLock;58import java.util.concurrent.locks.Condition;59import java.util.concurrent.ConcurrentHashMap;60import java.util.concurrent.ConcurrentLinkedQueue;61import java.util.concurrent.ConcurrentSkipListMap;62import java.util.concurrent.ConcurrentSkipListSet;63import java.util.concurrent.Semaphore;64import java.util.concurrent.SynchronousQueue;65import java.util.concurrent.BlockingQueue;66import java.util.concurrent.Linked

Full Screen

Full Screen

list

Using AI Code Generation

copy

Full Screen

1package com.thrift.example.artificial;2import org.apache.thrift.TException;3import org.apache.thrift.TProcessor;4import org.apache.thrift.server.TServer;5import org.apache.thrift.server.TServer.Args;6import org.apache.thrift.server.TSimpleServer;7import org.apache.thrift.transport.TServerSocket;8import org.apache.thrift.transport.TServerTransport;9import org.apache.thrift.transport.TTransportException;10import java.io.File;11import java.io.IOException;12import java.util.ArrayList;13import java.util.List;14public class RPCInterfaceExampleImpl implements RPCInterfaceExample.Iface {15 public List<String> list(String path) throws TException {16 File folder = new File(path);17 File[] listOfFiles = folder.listFiles();18 List<String> list = new ArrayList<String>();19 for (int i = 0; i < listOfFiles.length; i++) {20 if (listOfFiles[i].isFile()) {21 list.add(listOfFiles[i].getName());22 }23 }24 return list;25 }26 public static void main(String [] args) {27 try {28 TProcessor tprocessor = new RPCInterfaceExample.Processor(new RPCInterfaceExampleImpl());29 TServerTransport serverTransport = new TServerSocket(9090);30 TServer server = new TSimpleServer(new Args(serverTransport).processor(tprocessor));31 System.out.println("Starting the simple server...");32 server.serve();33 } catch (TTransportException e) {34 e.printStackTrace();35 }36 }37}38package com.thrift.example.artificial;39import org.apache.thrift.TException;40import org.apache.thrift.protocol.TBinaryProtocol;41import org.apache.thrift.protocol.TProtocol;42import org.apache.thrift.transport.TSocket;43import org.apache.thrift.transport.TTransport;44import org.apache.thrift.transport.TTransportException;45import java.util.List;46public class RPCInterfaceExampleClient {47 public static void main(String [] args) {48 try {49 TTransport transport;50 transport = new TSocket("localhost", 9090);51 transport.open();

Full Screen

Full Screen

list

Using AI Code Generation

copy

Full Screen

1import java.util.List;2import java.util.ArrayList;3import java.util.Iterator;4import java.io.File;5import java.io.IOException;6import java.io.FileNotFoundException;7import java.io.BufferedReader;8import java.io.FileReader;9import java.io.FileWriter;10import java.io.BufferedWriter;11import java.io.PrintWriter;12import java.io.BufferedOutputStream;13import java.io.FileOutputStream;14import java.io.FileInputStream;15import java.io.BufferedInputStream;16import java.io.InputStream;17import java.io.OutputStream;18import java.io.ByteArrayOutputStream;19import java.io.ByteArrayInputStream;20import java.io.DataOutputStream;21import java.io.DataInputStream;22import java.io.EOFException;23import java.io.FileNotFoundException;24import org.apache.thrift.TException;25import org.apache.thrift.protocol.TBinaryProtocol;26import org.apache.thrift.protocol.TProtocol;27import org.apache.thrift.transport.TTransport;28import org.apache.thrift.transport.TSocket;29import org.apache.thrift.transport.TFramedTransport;30import org.apache.thrift.transport.TTransportException;31import org.apache.thrift.transport.TFileTransport;32import org.apache.thrift.transport.TMemoryBuffer;33import org.apache.thrift.transport.TIOStreamTransport;34import org.apache.thrift.server.TServer;35import org.apache.thrift.server.TServer.Args;36import org.apache.thrift.server.TSimpleServer;37import org.apache.thrift.server.TThreadPoolServer;38import org.apache.thrift.server.TThreadedSelectorServer;39import org.apache.thrift.server.TNonblockingServer;40import org.apache.thrift.server.TNonblockingServerTransport;41import org.apache.thrift.server.TThreadedSelectorServer.Args;42import org.apache.thrift.server.TThreadPoolServer.Args;43import org.apache.thrift.transport.TNonblockingServerSocket;44import org.apache.thrift.transport.TNonblockingServerTransport;45import org.apache.thrift.transport.TNonblockingSocket;46import org.apache.thrift.transport.TNonblockingTransport;47import org.apache.thrift.transport.TTransportFactory;48import org.apache.thrift.transport.TFramedTransport.Factory;49import org.apache.thrift.transport.TTransportException;50import org.apache.thrift.transport.TServerSocket;51import org.apache.thrift.transport.TServerTransport;52import org.apache.thrift.protocol.TBinaryProtocol.Factory;53import org.apache.thrift.protocol.TProtocolFactory;54import org.apache.thrift.protocol.TProtocol;55import org.apache.thrift.protocol.TBinaryProtocol;56import org.apache.thrift.protocol.TMultiplexedProtocol;57import org.apache.thrift.protocol.TMultiplexedProtocol;58import org.apache.th

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