1 | package farmTest; |
---|
2 | |
---|
3 | import static org.junit.Assert.assertEquals; |
---|
4 | |
---|
5 | import java.util.Properties; |
---|
6 | |
---|
7 | import omq.common.broker.Broker; |
---|
8 | import omq.common.util.ParameterQueue; |
---|
9 | |
---|
10 | import org.junit.BeforeClass; |
---|
11 | import org.junit.Test; |
---|
12 | |
---|
13 | public class FarmTest { |
---|
14 | private static FarmImpl farm; |
---|
15 | private static Farm remoteFarm; |
---|
16 | |
---|
17 | @BeforeClass |
---|
18 | public static void startServer() throws Exception { |
---|
19 | Properties env = new Properties(); |
---|
20 | env.setProperty(ParameterQueue.USER_NAME, "guest"); |
---|
21 | env.setProperty(ParameterQueue.USER_PASS, "guest"); |
---|
22 | |
---|
23 | // Get host info of rabbimq (where it is) |
---|
24 | env.setProperty(ParameterQueue.SERVER_HOST, "127.0.0.1"); |
---|
25 | env.setProperty(ParameterQueue.SERVER_PORT, "5672"); |
---|
26 | |
---|
27 | // Get info about the queue & the exchange where the RemoteListener will |
---|
28 | // listen to. |
---|
29 | env.setProperty(ParameterQueue.RPC_EXCHANGE, "rpc_exchange"); |
---|
30 | |
---|
31 | farm = new FarmImpl(); |
---|
32 | |
---|
33 | Broker.initBroker(env); |
---|
34 | Broker.bind(Farm.class.getSimpleName(), farm); |
---|
35 | } |
---|
36 | |
---|
37 | @BeforeClass |
---|
38 | public static void startClient() throws Exception { |
---|
39 | Properties env = new Properties(); |
---|
40 | env.setProperty(ParameterQueue.USER_NAME, "guest"); |
---|
41 | env.setProperty(ParameterQueue.USER_PASS, "guest"); |
---|
42 | |
---|
43 | // Set host info of rabbimq (where it is) |
---|
44 | env.setProperty(ParameterQueue.SERVER_HOST, "127.0.0.1"); |
---|
45 | env.setProperty(ParameterQueue.SERVER_PORT, "5672"); |
---|
46 | |
---|
47 | // Set info about where the message will be sent |
---|
48 | env.setProperty(ParameterQueue.RPC_EXCHANGE, "rpc_exchange"); |
---|
49 | |
---|
50 | // Set info about the queue & the exchange where the ResponseListener |
---|
51 | // will listen to. |
---|
52 | env.setProperty(ParameterQueue.RPC_REPLY_QUEUE, "reply_queue"); |
---|
53 | env.setProperty(ParameterQueue.EVENT_REPLY_QUEUE, "event_queue"); |
---|
54 | |
---|
55 | Broker.initBroker(env); |
---|
56 | |
---|
57 | remoteFarm = (Farm) Broker.lookup(Farm.class.getSimpleName(), Farm.class); |
---|
58 | } |
---|
59 | |
---|
60 | @Test |
---|
61 | public void addCow() throws Exception { |
---|
62 | String name = "muu"; |
---|
63 | |
---|
64 | Cow cow = new Cow(); |
---|
65 | cow.setName(name); |
---|
66 | |
---|
67 | remoteFarm.setCow(cow); |
---|
68 | Thread.sleep(100); |
---|
69 | |
---|
70 | assertEquals(name, farm.getCow().getName()); |
---|
71 | } |
---|
72 | |
---|
73 | @Test |
---|
74 | public void getPig() throws Exception { |
---|
75 | String name = "oing"; |
---|
76 | |
---|
77 | Pig pig = new Pig(); |
---|
78 | pig.setName(name); |
---|
79 | |
---|
80 | remoteFarm.setPig(pig); |
---|
81 | Thread.sleep(100); |
---|
82 | |
---|
83 | pig = remoteFarm.getPig(); |
---|
84 | |
---|
85 | assertEquals(name, pig.getName()); |
---|
86 | } |
---|
87 | } |
---|