Merge "Deprecating unused get{Provider,Consumer} Functionality"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / behaviors / AbstractRaftActorBehaviorTest.java
1 package org.opendaylight.controller.cluster.raft.behaviors;
2
3 import akka.actor.ActorRef;
4 import akka.actor.Props;
5 import akka.testkit.JavaTestKit;
6 import org.junit.Test;
7 import org.opendaylight.controller.cluster.raft.AbstractActorTest;
8 import org.opendaylight.controller.cluster.raft.MockRaftActorContext;
9 import org.opendaylight.controller.cluster.raft.RaftActorContext;
10 import org.opendaylight.controller.cluster.raft.RaftState;
11 import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
12 import org.opendaylight.controller.cluster.raft.messages.AppendEntries;
13 import org.opendaylight.controller.cluster.raft.messages.AppendEntriesReply;
14 import org.opendaylight.controller.cluster.raft.messages.RaftRPC;
15 import org.opendaylight.controller.cluster.raft.messages.RequestVote;
16 import org.opendaylight.controller.cluster.raft.messages.RequestVoteReply;
17 import org.opendaylight.controller.cluster.raft.utils.DoNothingActor;
18
19 import java.util.ArrayList;
20 import java.util.List;
21
22 import static org.junit.Assert.assertEquals;
23
24 public abstract class AbstractRaftActorBehaviorTest extends AbstractActorTest {
25
26     private final ActorRef behaviorActor = getSystem().actorOf(Props.create(
27         DoNothingActor.class));
28
29     /**
30      * This test checks that when a new Raft RPC message is received with a newer
31      * term the RaftActor gets into the Follower state.
32      *
33      * @throws Exception
34      */
35     @Test
36     public void testHandleRaftRPCWithNewerTerm() throws Exception {
37         new JavaTestKit(getSystem()) {{
38
39             assertStateChangesToFollowerWhenRaftRPCHasNewerTerm(getTestActor(),
40                 createAppendEntriesWithNewerTerm());
41
42             assertStateChangesToFollowerWhenRaftRPCHasNewerTerm(getTestActor(),
43                 createAppendEntriesReplyWithNewerTerm());
44
45             assertStateChangesToFollowerWhenRaftRPCHasNewerTerm(getTestActor(),
46                 createRequestVoteWithNewerTerm());
47
48             assertStateChangesToFollowerWhenRaftRPCHasNewerTerm(getTestActor(),
49                 createRequestVoteReplyWithNewerTerm());
50
51
52         }};
53     }
54
55
56     /**
57      * This test verifies that when an AppendEntries is received with a term that
58      * is less that the currentTerm of the RaftActor then the RaftActor does not
59      * change it's state and it responds back with a failure
60      *
61      * @throws Exception
62      */
63     @Test
64     public void testHandleAppendEntriesSenderTermLessThanReceiverTerm()
65         throws Exception {
66         new JavaTestKit(getSystem()) {{
67
68             MockRaftActorContext context = (MockRaftActorContext)
69                 createActorContext();
70
71             // First set the receivers term to a high number (1000)
72             context.getTermInformation().update(1000, "test");
73
74             AppendEntries appendEntries =
75                 new AppendEntries(100, "leader-1", 0, 0, null, 101);
76
77             RaftActorBehavior behavior = createBehavior(context);
78
79             // Send an unknown message so that the state of the RaftActor remains unchanged
80             RaftState expected = behavior.handleMessage(getRef(), "unknown");
81
82             RaftState raftState =
83                 behavior.handleMessage(getRef(), appendEntries);
84
85             assertEquals(expected, raftState);
86
87             // Also expect an AppendEntriesReply to be sent where success is false
88             final Boolean out = new ExpectMsg<Boolean>(duration("1 seconds"),
89                 "AppendEntriesReply") {
90                 // do not put code outside this method, will run afterwards
91                 protected Boolean match(Object in) {
92                     if (in instanceof AppendEntriesReply) {
93                         AppendEntriesReply reply = (AppendEntriesReply) in;
94                         return reply.isSuccess();
95                     } else {
96                         throw noMatch();
97                     }
98                 }
99             }.get();
100
101             assertEquals(false, out);
102
103
104         }};
105     }
106
107
108     @Test
109     public void testHandleAppendEntriesAddSameEntryToLog(){
110         new JavaTestKit(getSystem()) {
111             {
112
113                 MockRaftActorContext context = (MockRaftActorContext)
114                     createActorContext();
115
116                 // First set the receivers term to lower number
117                 context.getTermInformation().update(2, "test");
118
119                 // Prepare the receivers log
120                 MockRaftActorContext.SimpleReplicatedLog log =
121                     new MockRaftActorContext.SimpleReplicatedLog();
122                 log.append(
123                     new MockRaftActorContext.MockReplicatedLogEntry(1, 0, "zero"));
124
125                 context.setReplicatedLog(log);
126
127                 List<ReplicatedLogEntry> entries = new ArrayList<>();
128                 entries.add(
129                     new MockRaftActorContext.MockReplicatedLogEntry(1, 0, "zero"));
130
131                 AppendEntries appendEntries =
132                     new AppendEntries(2, "leader-1", -1, 1, entries, 0);
133
134                 RaftActorBehavior behavior = createBehavior(context);
135
136                 if (AbstractRaftActorBehaviorTest.this instanceof CandidateTest) {
137                     // Resetting the Candidates term to make sure it will match
138                     // the term sent by AppendEntries. If this was not done then
139                     // the test will fail because the Candidate will assume that
140                     // the message was sent to it from a lower term peer and will
141                     // thus respond with a failure
142                     context.getTermInformation().update(2, "test");
143                 }
144
145                 // Send an unknown message so that the state of the RaftActor remains unchanged
146                 RaftState expected = behavior.handleMessage(getRef(), "unknown");
147
148                 RaftState raftState =
149                     behavior.handleMessage(getRef(), appendEntries);
150
151                 assertEquals(expected, raftState);
152
153                 assertEquals(1, log.size());
154
155
156             }};
157     }
158
159     /**
160      * This test verifies that when a RequestVote is received by the RaftActor
161      * with a term which is greater than the RaftActors' currentTerm and the
162      * senders' log is more upto date than the receiver that the receiver grants
163      * the vote to the sender
164      */
165     @Test
166     public void testHandleRequestVoteWhenSenderTermGreaterThanCurrentTermAndSenderLogMoreUpToDate() {
167         new JavaTestKit(getSystem()) {{
168
169             new Within(duration("1 seconds")) {
170                 protected void run() {
171
172                     RaftActorBehavior behavior = createBehavior(
173                         createActorContext(behaviorActor));
174
175                     RaftState raftState = behavior.handleMessage(getTestActor(),
176                         new RequestVote(1000, "test", 10000, 999));
177
178                     if(behavior.state() != RaftState.Follower){
179                         assertEquals(RaftState.Follower, raftState);
180                     } else {
181
182                         final Boolean out =
183                             new ExpectMsg<Boolean>(duration("1 seconds"),
184                                 "RequestVoteReply") {
185                                 // do not put code outside this method, will run afterwards
186                                 protected Boolean match(Object in) {
187                                     if (in instanceof RequestVoteReply) {
188                                         RequestVoteReply reply =
189                                             (RequestVoteReply) in;
190                                         return reply.isVoteGranted();
191                                     } else {
192                                         throw noMatch();
193                                     }
194                                 }
195                             }.get();
196
197                         assertEquals(true, out);
198                     }
199                 }
200             };
201         }};
202     }
203
204     /**
205      * This test verifies that when a RaftActor receives a RequestVote message
206      * with a term that is greater than it's currentTerm but a less up-to-date
207      * log then the receiving RaftActor will not grant the vote to the sender
208      */
209     @Test
210     public void testHandleRequestVoteWhenSenderTermGreaterThanCurrentTermButSenderLogLessUptoDate() {
211         new JavaTestKit(getSystem()) {{
212
213             new Within(duration("1 seconds")) {
214                 protected void run() {
215
216                     RaftActorContext actorContext =
217                         createActorContext(behaviorActor);
218
219                     MockRaftActorContext.SimpleReplicatedLog
220                         log = new MockRaftActorContext.SimpleReplicatedLog();
221                     log.append(
222                         new MockRaftActorContext.MockReplicatedLogEntry(20000,
223                             1000000, ""));
224
225                     ((MockRaftActorContext) actorContext).setReplicatedLog(log);
226
227                     RaftActorBehavior behavior = createBehavior(actorContext);
228
229                     RaftState raftState = behavior.handleMessage(getTestActor(),
230                         new RequestVote(1000, "test", 10000, 999));
231
232                     if(behavior.state() != RaftState.Follower){
233                         assertEquals(RaftState.Follower, raftState);
234                     } else {
235                         final Boolean out =
236                             new ExpectMsg<Boolean>(duration("1 seconds"),
237                                 "RequestVoteReply") {
238                                 // do not put code outside this method, will run afterwards
239                                 protected Boolean match(Object in) {
240                                     if (in instanceof RequestVoteReply) {
241                                         RequestVoteReply reply =
242                                             (RequestVoteReply) in;
243                                         return reply.isVoteGranted();
244                                     } else {
245                                         throw noMatch();
246                                     }
247                                 }
248                             }.get();
249
250                         assertEquals(false, out);
251                     }
252                 }
253             };
254         }};
255     }
256
257
258
259     /**
260      * This test verifies that the receiving RaftActor will not grant a vote
261      * to a sender if the sender's term is lesser than the currentTerm of the
262      * recipient RaftActor
263      */
264     @Test
265     public void testHandleRequestVoteWhenSenderTermLessThanCurrentTerm() {
266         new JavaTestKit(getSystem()) {{
267
268             new Within(duration("1 seconds")) {
269                 protected void run() {
270
271                     RaftActorContext context =
272                         createActorContext(behaviorActor);
273
274                     context.getTermInformation().update(1000, null);
275
276                     RaftActorBehavior follower = createBehavior(context);
277
278                     follower.handleMessage(getTestActor(),
279                         new RequestVote(999, "test", 10000, 999));
280
281                     final Boolean out =
282                         new ExpectMsg<Boolean>(duration("1 seconds"),
283                             "RequestVoteReply") {
284                             // do not put code outside this method, will run afterwards
285                             protected Boolean match(Object in) {
286                                 if (in instanceof RequestVoteReply) {
287                                     RequestVoteReply reply =
288                                         (RequestVoteReply) in;
289                                     return reply.isVoteGranted();
290                                 } else {
291                                     throw noMatch();
292                                 }
293                             }
294                         }.get();
295
296                     assertEquals(false, out);
297                 }
298             };
299         }};
300     }
301
302     protected void assertStateChangesToFollowerWhenRaftRPCHasNewerTerm(
303         ActorRef actorRef, RaftRPC rpc) {
304
305         RaftActorContext actorContext = createActorContext();
306         setLastLogEntry(
307             (MockRaftActorContext) actorContext, 0, 0, "");
308
309         RaftState raftState = createBehavior(actorContext)
310             .handleMessage(actorRef, rpc);
311
312         assertEquals(RaftState.Follower, raftState);
313     }
314
315     protected MockRaftActorContext.SimpleReplicatedLog setLastLogEntry(
316         MockRaftActorContext actorContext, long term, long index, Object data) {
317         return setLastLogEntry(actorContext,
318             new MockRaftActorContext.MockReplicatedLogEntry(term, index, data));
319     }
320
321     protected MockRaftActorContext.SimpleReplicatedLog setLastLogEntry(
322         MockRaftActorContext actorContext, ReplicatedLogEntry logEntry) {
323         MockRaftActorContext.SimpleReplicatedLog
324             log = new MockRaftActorContext.SimpleReplicatedLog();
325         log.append(logEntry);
326         actorContext.setReplicatedLog(log);
327
328         return log;
329     }
330
331     protected abstract RaftActorBehavior createBehavior(
332         RaftActorContext actorContext);
333
334     protected RaftActorBehavior createBehavior() {
335         return createBehavior(createActorContext());
336     }
337
338     protected RaftActorContext createActorContext() {
339         return new MockRaftActorContext();
340     }
341
342     protected RaftActorContext createActorContext(ActorRef actor) {
343         return new MockRaftActorContext("test", getSystem(), actor);
344     }
345
346     protected AppendEntries createAppendEntriesWithNewerTerm() {
347         return new AppendEntries(100, "leader-1", 0, 0, null, 1);
348     }
349
350     protected AppendEntriesReply createAppendEntriesReplyWithNewerTerm() {
351         return new AppendEntriesReply("follower-1", 100, false, 100, 100);
352     }
353
354     protected RequestVote createRequestVoteWithNewerTerm() {
355         return new RequestVote(100, "candidate-1", 10, 100);
356     }
357
358     protected RequestVoteReply createRequestVoteReplyWithNewerTerm() {
359         return new RequestVoteReply(100, false);
360     }
361
362
363
364 }