Search in sources :

Example 1 with DemoService

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

use of com.alibaba.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();
    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 DemoService

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

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

the class FutureFilterTest method testSyncCallbackHasException.

@Test(expected = RuntimeException.class)
public void testSyncCallbackHasException() throws RpcException, Throwable {
    @SuppressWarnings("unchecked") Invoker<DemoService> invoker = EasyMock.createMock(Invoker.class);
    EasyMock.expect(invoker.isAvailable()).andReturn(true).anyTimes();
    EasyMock.expect(invoker.getInterface()).andReturn(DemoService.class).anyTimes();
    RpcResult result = new RpcResult();
    result.setException(new RuntimeException());
    EasyMock.expect(invoker.invoke(invocation)).andReturn(result).anyTimes();
    URL url = URL.valueOf("test://test:11/test?group=dubbo&version=1.1&" + Constants.ON_THROW_METHOD_KEY + "=echo");
    EasyMock.expect(invoker.getUrl()).andReturn(url).anyTimes();
    EasyMock.replay(invoker);
    eventFilter.invoke(invoker, invocation).recreate();
}
Also used : RpcResult(com.alibaba.dubbo.rpc.RpcResult) DemoService(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) URL(com.alibaba.dubbo.common.URL) Test(org.junit.Test)

Example 5 with DemoService

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

the class FutureFilterTest method testSyncCallback.

@Test
public void testSyncCallback() {
    @SuppressWarnings("unchecked") Invoker<DemoService> invoker = EasyMock.createMock(Invoker.class);
    EasyMock.expect(invoker.isAvailable()).andReturn(true).anyTimes();
    EasyMock.expect(invoker.getInterface()).andReturn(DemoService.class).anyTimes();
    RpcResult result = new RpcResult();
    result.setValue("High");
    EasyMock.expect(invoker.invoke(invocation)).andReturn(result).anyTimes();
    URL url = URL.valueOf("test://test:11/test?group=dubbo&version=1.1");
    EasyMock.expect(invoker.getUrl()).andReturn(url).anyTimes();
    EasyMock.replay(invoker);
    Result filterResult = eventFilter.invoke(invoker, invocation);
    assertEquals("High", filterResult.getValue());
}
Also used : RpcResult(com.alibaba.dubbo.rpc.RpcResult) DemoService(com.alibaba.dubbo.rpc.protocol.dubbo.support.DemoService) URL(com.alibaba.dubbo.common.URL) Result(com.alibaba.dubbo.rpc.Result) RpcResult(com.alibaba.dubbo.rpc.RpcResult) Test(org.junit.Test)

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