Search in sources :

Example 1 with DemoServiceImpl

use of org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl in project dubbo by alibaba.

the class DubboProtocolTest method testDubboProtocolWithMina.

@Disabled("Mina has been moved to a separate project")
@Test
public void testDubboProtocolWithMina() throws Exception {
    DemoService service = new DemoServiceImpl();
    int port = NetUtils.getAvailablePort();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName()).addParameter(Constants.SERVER_KEY, "mina")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName()).addParameter(Constants.CLIENT_KEY, "mina").addParameter("timeout", 3000L)));
    for (int i = 0; i < 10; i++) {
        assertEquals(service.enumlength(new Type[] {}), Type.Lower);
        assertEquals(service.getSize(null), -1);
        assertEquals(service.getSize(new String[] { "", "", "" }), 3);
    }
    Map<String, String> map = new HashMap<String, String>();
    map.put("aa", "bb");
    for (int i = 0; i < 10; i++) {
        Set<String> set = service.keys(map);
        assertEquals(set.size(), 1);
        assertEquals(set.iterator().next(), "aa");
        service.invoke("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "", "invoke");
    }
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?client=mina").addParameter("timeout", 3000L)));
    // test netty client
    StringBuilder buf = new StringBuilder();
    for (int i = 0; i < 1024 * 32 + 32; i++) buf.append('A');
    System.out.println(service.stringLength(buf.toString()));
    // cast to EchoService
    EchoService echo = proxy.getProxy(protocol.refer(EchoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?client=mina").addParameter("timeout", 3000L)));
    for (int i = 0; i < 10; i++) {
        assertEquals(echo.$echo(buf.toString()), buf.toString());
        assertEquals(echo.$echo("test"), "test");
        assertEquals(echo.$echo("abcdefg"), "abcdefg");
        assertEquals(echo.$echo(1234), 1234);
    }
}
Also used : Type(org.apache.dubbo.rpc.protocol.dubbo.support.Type) HashMap(java.util.HashMap) EchoService(org.apache.dubbo.rpc.service.EchoService) DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.jupiter.api.Test) Disabled(org.junit.jupiter.api.Disabled)

Example 2 with DemoServiceImpl

use of org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl in project dubbo by alibaba.

the class DubboProtocolTest method testDemoProtocol.

@Test
public void testDemoProtocol() throws Exception {
    DemoService service = new DemoServiceImpl();
    int port = NetUtils.getAvailablePort();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?codec=exchange")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?codec=exchange").addParameter("timeout", 3000L)));
    assertEquals(service.getSize(new String[] { "", "", "" }), 3);
}
Also used : DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.jupiter.api.Test)

Example 3 with DemoServiceImpl

use of org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl in project dubbo by alibaba.

the class DubboProtocolTest method testGetDubboProtocol.

@Test
public void testGetDubboProtocol() {
    DemoService service = new DemoServiceImpl();
    int port = NetUtils.getAvailablePort();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName())));
    Assertions.assertTrue(DubboProtocol.getDubboProtocol().getServers().size() > 0);
}
Also used : DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.jupiter.api.Test)

Example 4 with DemoServiceImpl

use of org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl in project dubbo by alibaba.

the class DubboProtocolTest method testPerm.

@Test
public void testPerm() throws Exception {
    DemoService service = new DemoServiceImpl();
    int port = NetUtils.getAvailablePort();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?codec=exchange")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?codec=exchange").addParameter("timeout", 3000L)));
    long start = System.currentTimeMillis();
    for (int i = 0; i < 1000; i++) service.getSize(new String[] { "", "", "" });
    System.out.println("take:" + (System.currentTimeMillis() - start));
}
Also used : DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.jupiter.api.Test)

Example 5 with DemoServiceImpl

use of org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl in project dubbo by alibaba.

the class MultiThreadTest method testDubboMultiThreadInvoke.

@Test
public void testDubboMultiThreadInvoke() throws Exception {
    ApplicationModel.getServiceRepository().registerService("TestService", DemoService.class);
    int port = NetUtils.getAvailablePort();
    Exporter<?> rpcExporter = protocol.export(proxy.getInvoker(new DemoServiceImpl(), DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/TestService")));
    final AtomicInteger counter = new AtomicInteger();
    final DemoService service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/TestService")));
    Assertions.assertEquals(service.getSize(new String[] { "123", "456", "789" }), 3);
    final StringBuffer sb = new StringBuffer();
    for (int i = 0; i < 1024 * 64 + 32; i++) sb.append('A');
    Assertions.assertEquals(sb.toString(), service.echo(sb.toString()));
    ExecutorService exec = Executors.newFixedThreadPool(10);
    for (int i = 0; i < 10; i++) {
        final int fi = i;
        exec.execute(new Runnable() {

            public void run() {
                for (int i = 0; i < 30; i++) {
                    System.out.println(fi + ":" + counter.getAndIncrement());
                    Assertions.assertEquals(service.echo(sb.toString()), sb.toString());
                }
            }
        });
    }
    exec.shutdown();
    exec.awaitTermination(10, TimeUnit.SECONDS);
    rpcExporter.unexport();
}
Also used : AtomicInteger(java.util.concurrent.atomic.AtomicInteger) ExecutorService(java.util.concurrent.ExecutorService) DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.jupiter.api.Test)

Aggregations

DemoService (org.apache.dubbo.rpc.protocol.dubbo.support.DemoService)12 DemoServiceImpl (org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)12 Test (org.junit.jupiter.api.Test)12 URL (org.apache.dubbo.common.URL)3 RpcException (org.apache.dubbo.rpc.RpcException)3 EchoService (org.apache.dubbo.rpc.service.EchoService)3 HashMap (java.util.HashMap)2 Type (org.apache.dubbo.rpc.protocol.dubbo.support.Type)2 ExecutorService (java.util.concurrent.ExecutorService)1 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)1 Status (org.apache.dubbo.common.status.Status)1 StatusChecker (org.apache.dubbo.common.status.StatusChecker)1 NonSerialized (org.apache.dubbo.rpc.protocol.dubbo.support.NonSerialized)1 Disabled (org.junit.jupiter.api.Disabled)1