Deprecate CloseTransaction protobuff message
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / CloseTransactionTest.java
1 /*
2  * Copyright (c) 2016 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.datastore.messages;
9
10 import static org.junit.Assert.assertEquals;
11 import java.io.Serializable;
12 import org.apache.commons.lang.SerializationUtils;
13 import org.junit.Test;
14 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
15
16 /**
17  * Unit test for CloseTransaction and CloseTransactionReply.
18  *
19  * @author Thomas Pantelis
20  */
21 public class CloseTransactionTest {
22     @Test
23     public void testCloseTransactionSerialization() {
24         CloseTransaction expected = new CloseTransaction(DataStoreVersions.CURRENT_VERSION);
25
26         Object serialized = expected.toSerializable();
27         assertEquals("Serialized type", CloseTransaction.class, serialized.getClass());
28
29         CloseTransaction actual = (CloseTransaction)SerializationUtils.clone((Serializable) serialized);
30         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
31     }
32
33     @Test
34     public void testCloseTransactionReplySerialization() {
35         CloseTransactionReply expected = new CloseTransactionReply();
36
37         Object serialized = expected.toSerializable();
38         assertEquals("Serialized type", CloseTransactionReply.class, serialized.getClass());
39
40         CloseTransactionReply actual = (CloseTransactionReply)SerializationUtils.clone((Serializable) serialized);
41         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
42     }
43 }