Search in sources :

Example 1 with Type

use of org.apache.dubbo.rpc.protocol.dubbo.support.Type 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 Type

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

the class DubboProtocolTest method testDubboProtocol.

@Test
public void testDubboProtocol() 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())));
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName()).addParameter("timeout", 3000L)));
    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:" + port + "/" + DemoService.class.getName() + "", "invoke");
    service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:" + port + "/" + DemoService.class.getName() + "?client=netty").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=netty").addParameter("timeout", 3000L)));
    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)

Aggregations

HashMap (java.util.HashMap)2 DemoService (org.apache.dubbo.rpc.protocol.dubbo.support.DemoService)2 DemoServiceImpl (org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)2 Type (org.apache.dubbo.rpc.protocol.dubbo.support.Type)2 EchoService (org.apache.dubbo.rpc.service.EchoService)2 Test (org.junit.jupiter.api.Test)2 Disabled (org.junit.jupiter.api.Disabled)1