629312110dd2bd5114b9c0209ef4bdf811de2d0e
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / messages / AppendEntriesReplyTest.java
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.raft.messages;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.apache.commons.lang.SerializationUtils;
13 import org.junit.Test;
14
15 /**
16  * Unit tests for AppendEntriesReply.
17  *
18  * @author Thomas Pantelis
19  */
20 public class AppendEntriesReplyTest {
21
22     @Test
23     public void testSerialization() {
24         AppendEntriesReply expected = new AppendEntriesReply("follower", 5, true, 100, 4, (short)6);
25         AppendEntriesReply cloned = (AppendEntriesReply) SerializationUtils.clone(expected);
26
27         assertEquals("getTerm", expected.getTerm(), cloned.getTerm());
28         assertEquals("getFollowerId", expected.getFollowerId(), cloned.getFollowerId());
29         assertEquals("getLogLastTerm", expected.getLogLastTerm(), cloned.getLogLastTerm());
30         assertEquals("getLogLastIndex", expected.getLogLastIndex(), cloned.getLogLastIndex());
31         assertEquals("getPayloadVersion", expected.getPayloadVersion(), cloned.getPayloadVersion());
32         assertEquals("getRaftVersion", expected.getRaftVersion(), cloned.getRaftVersion());
33     }
34 }