Search in sources :

Example 1 with DemoService

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

the class FutureFilterTest method testSyncCallbackHasException.

@Test
public void testSyncCallbackHasException() throws RpcException, Throwable {
    Assertions.assertThrows(RuntimeException.class, () -> {
        @SuppressWarnings("unchecked") Invoker<DemoService> invoker = mock(Invoker.class);
        given(invoker.isAvailable()).willReturn(true);
        given(invoker.getInterface()).willReturn(DemoService.class);
        AppResponse result = new AppResponse();
        result.setException(new RuntimeException());
        given(invoker.invoke(invocation)).willReturn(result);
        URL url = URL.valueOf("test://test:11/test?group=dubbo&version=1.1&onthrow.method=echo");
        given(invoker.getUrl()).willReturn(url);
        eventFilter.invoke(invoker, invocation).recreate();
    });
}
Also used : AppResponse(org.apache.dubbo.rpc.AppResponse) DemoService(org.apache.dubbo.rpc.protocol.dubbo.support.DemoService) URL(org.apache.dubbo.common.URL) Test(org.junit.jupiter.api.Test)

Example 2 with DemoService

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

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

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

use of org.apache.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();
    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)

Aggregations

DemoService (org.apache.dubbo.rpc.protocol.dubbo.support.DemoService)15 Test (org.junit.jupiter.api.Test)15 DemoServiceImpl (org.apache.dubbo.rpc.protocol.dubbo.support.DemoServiceImpl)12 URL (org.apache.dubbo.common.URL)5 RpcException (org.apache.dubbo.rpc.RpcException)3 EchoService (org.apache.dubbo.rpc.service.EchoService)3 HashMap (java.util.HashMap)2 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)2 AppResponse (org.apache.dubbo.rpc.AppResponse)2 Result (org.apache.dubbo.rpc.Result)2 Type (org.apache.dubbo.rpc.protocol.dubbo.support.Type)2 Field (java.lang.reflect.Field)1 Set (java.util.Set)1 ConcurrentHashMap (java.util.concurrent.ConcurrentHashMap)1 ExecutorService (java.util.concurrent.ExecutorService)1 Status (org.apache.dubbo.common.status.Status)1 StatusChecker (org.apache.dubbo.common.status.StatusChecker)1 Channel (org.apache.dubbo.remoting.Channel)1 Invocation (org.apache.dubbo.rpc.Invocation)1 NonSerialized (org.apache.dubbo.rpc.protocol.dubbo.support.NonSerialized)1