Search in sources :

Example 1 with DemoServiceImpl

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

the class DubboProtocolTest method testNonSerializedParameter.

@Test
public void testNonSerializedParameter() 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.nonSerializedParameter(new NonSerialized());
        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 : NonSerialized(com.alibaba.dubbo.rpc.protocol.dubbo.support.NonSerialized) 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 2 with DemoServiceImpl

use of com.alibaba.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();
    protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9020/" + DemoService.class.getName() + "?codec=exchange")));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9020/" + DemoService.class.getName() + "?codec=exchange")));
    assertEquals(service.getSize(new String[] { "", "", "" }), 3);
}
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 3 with DemoServiceImpl

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

the class DubboProtocolTest method testDubboProtocol.

@Test
public void testDubboProtocol() 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())));
    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");
    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=netty")));
    // 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=netty")));
    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 4 with DemoServiceImpl

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl 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 5 with DemoServiceImpl

use of com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl 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)

Aggregations

DemoService (com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService)9 DemoServiceImpl (com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)9 Test (org.junit.Test)7 EchoService (com.alibaba.dubbo.rpc.service.EchoService)4 RpcException (com.alibaba.dubbo.rpc.RpcException)2 Type (com.alibaba.dubbo.rpc.protocol.dubbo.support.Type)2 HashMap (java.util.HashMap)2 URL (com.alibaba.dubbo.common.URL)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