Search in sources :

Example 6 with DemoService

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService in project dubbo by alibaba.

the class DubboProtocolTest method testReturnNonSerialized.

@Test
public void testReturnNonSerialized() throws Exception {
    DemoService service = new DemoServiceImpl();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9050/" + DemoService.class.getName() + "?codec=exchange")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9050/" + DemoService.class.getName() + "?codec=exchange")));
    try {
        service.returnNonSerialized();
        Assert.fail();
    } catch (RpcException e) {
        Assert.assertTrue(e.getMessage().contains("com.alibaba.dubbo.rpc.protocol.dubbo.support.NonSerialized must implement java.io.Serializable"));
    }
}
Also used : RpcException(com.alibaba.dubbo.rpc.RpcException) DemoService(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.Test)

Example 7 with DemoService

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService in project dubbo by alibaba.

the class DubboProtocolTest method testDubboProtocolWithMina.

@Test
public void testDubboProtocolWithMina() throws Exception {
    DemoService service = new DemoServiceImpl();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName()).addParameter(Constants.SERVER_KEY, "mina")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName()).addParameter(Constants.CLIENT_KEY, "mina")));
    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:9010/" + DemoService.class.getName() + "", "invoke");
    }
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName() + "?client=mina")));
    // test netty client
    StringBuffer buf = new StringBuffer();
    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:9010/" + DemoService.class.getName() + "?client=mina")));
    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(com.alibaba.dubbo.rpc.protocol.dubbo.support.Type) HashMap(java.util.HashMap) EchoService(com.alibaba.dubbo.rpc.service.EchoService) DemoService(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.Test)

Example 8 with DemoService

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService in project dubbo by alibaba.

the class DubboProtocolTest method testDubboProtocolMultiService.

@Test
public void testDubboProtocolMultiService() throws Exception {
    DemoService service = new DemoServiceImpl();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
    RemoteService remote = new RemoteServiceImpl();
    protocol.export(proxy.getInvoker(remote, RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
    remote = proxy.getProxy(protocol.refer(RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
    service.sayHello("world");
    // test netty client
    assertEquals("world", service.echo("world"));
    assertEquals("hello world@" + RemoteServiceImpl.class.getName(), remote.sayHello("world"));
    EchoService serviceEcho = (EchoService) service;
    assertEquals(serviceEcho.$echo("test"), "test");
    EchoService remoteEecho = (EchoService) remote;
    assertEquals(remoteEecho.$echo("ok"), "ok");
}
Also used : RemoteService(com.alibaba.dubbo.rpc.protocol.dubbo.support.RemoteService) EchoService(com.alibaba.dubbo.rpc.service.EchoService) DemoService(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) RemoteServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.RemoteServiceImpl) DemoServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.Test)

Example 9 with DemoService

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService in project dubbo by alibaba.

the class DubboProtocolTest method testPerm.

@Test
public void testPerm() throws Exception {
    DemoService service = new DemoServiceImpl();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9050/" + DemoService.class.getName() + "?codec=exchange")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9050/" + DemoService.class.getName() + "?codec=exchange")));
    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(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl) Test(org.junit.Test)

Example 10 with DemoService

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService in project dubbo by alibaba.

the class MultiThreadTest method testDubboMultiThreadInvoke.

public void testDubboMultiThreadInvoke() throws Exception {
    Exporter<?> rpcExporter = protocol.export(proxy.getInvoker(new DemoServiceImpl(), DemoService.class, URL.valueOf("dubbo://127.0.0.1:20259/TestService")));
    final AtomicInteger counter = new AtomicInteger();
    final DemoService service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:20259/TestService")));
    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');
    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());
                    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(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) DemoServiceImpl(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)

Aggregations

DemoService (com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService)11 DemoServiceImpl (com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)9 Test (org.junit.Test)9 EchoService (com.alibaba.dubbo.rpc.service.EchoService)4 URL (com.alibaba.dubbo.common.URL)3 RpcException (com.alibaba.dubbo.rpc.RpcException)2 RpcResult (com.alibaba.dubbo.rpc.RpcResult)2 Type (com.alibaba.dubbo.rpc.protocol.dubbo.support.Type)2 HashMap (java.util.HashMap)2 Result (com.alibaba.dubbo.rpc.Result)1 NonSerialized (com.alibaba.dubbo.rpc.protocol.dubbo.support.NonSerialized)1 RemoteService (com.alibaba.dubbo.rpc.protocol.dubbo.support.RemoteService)1 RemoteServiceImpl (com.alibaba.dubbo.rpc.protocol.dubbo.support.RemoteServiceImpl)1 ExecutorService (java.util.concurrent.ExecutorService)1 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)1