Changeset 38 for trunk/objectmq/test


Ignore:
Timestamp:
06/13/13 17:19:52 (12 years ago)
Author:
stoda
Message:

Remote exception added
todo: change throws Exception to Throwable since it seems that NoSuchMethodException? does not inherit from Exception...

Location:
trunk/objectmq/test
Files:
7 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/objectmq/test/calculatorTest/Calculator.java

    r34 r38  
    2121
    2222        @AsyncMethod
    23         public void divideByZero() throws IOException, SerializerException;
     23        public void asyncDivideByZero() throws IOException, SerializerException;
     24
     25        @SyncMethod
     26        public int divideByZero();
    2427
    2528}
  • trunk/objectmq/test/calculatorTest/CalculatorImpl.java

    r34 r38  
    33import java.io.IOException;
    44
    5 import omq.client.annotation.AsyncMethod;
    65import omq.common.broker.Broker;
    76import omq.exception.SerializerException;
     
    1716        private static final long serialVersionUID = 1L;
    1817
     18        @Override
    1919        public int add(int x, int y) {
    2020                return x + y;
    2121        }
    2222
     23        @Override
    2324        public void mult(int x, int y) {
    2425                mult = x * y;
     
    3334        }
    3435
    35         public void divideByZero() throws IOException, SerializerException {
     36        @Override
     37        public void asyncDivideByZero() throws IOException, SerializerException {
    3638                ZeroEvent ze = new ZeroEvent("my zero event", "zero-event");
    3739                Broker.trigger(ze);
     
    4042
    4143        @Override
    42         @AsyncMethod
    4344        public void sendMessage(Message m) {
    4445                System.out.println("Code = "+m.getCode());
    4546                System.out.println("Message = "+m.getMessage());
    4647        }
    47        
    48        
     48
     49        @Override
     50        public int divideByZero() {
     51                int x = 2 / 0;
     52                return x;
     53        }
    4954
    5055}
  • trunk/objectmq/test/calculatorTest/ClientTest.java

    r35 r38  
    2626                env.setProperty(ParameterQueue.SERVER_PORT, "5672");
    2727                env.setProperty(ParameterQueue.DURABLE_QUEUES, "false");
    28                 env.setProperty(ParameterQueue.SERIALIZER_NAME, Serializer.kryo);
     28                env.setProperty(ParameterQueue.SERIALIZER_NAME, Serializer.java);
    2929                env.setProperty(ParameterQueue.ENABLECOMPRESSION, "false");
    3030
     
    8080                remoteCalc.addListener(zL);
    8181
    82                 remoteCalc.divideByZero();
     82                remoteCalc.asyncDivideByZero();
    8383
    8484                Thread.sleep(200);
     
    9090                remoteCalc.sendMessage(m);
    9191        }
     92
     93        @Test(expected = ArithmeticException.class)
     94        public void divideByZero() {
     95                remoteCalc.divideByZero();
     96        }
    9297}
  • trunk/objectmq/test/calculatorTest/ServerTest.java

    r35 r38  
    2020                env.setProperty(ParameterQueue.SERVER_PORT, "5672");
    2121                env.setProperty(ParameterQueue.DURABLE_QUEUES, "true");
    22                 env.setProperty(ParameterQueue.SERIALIZER_NAME, Serializer.kryo);
     22                env.setProperty(ParameterQueue.SERIALIZER_NAME, Serializer.java);
    2323                env.setProperty(ParameterQueue.ENABLECOMPRESSION, "false");
    2424
Note: See TracChangeset for help on using the changeset viewer.