Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / CloseTransactionChainTest.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 static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertTrue;
13
14 import java.io.Serializable;
15 import org.apache.commons.lang3.SerializationUtils;
16 import org.junit.Test;
17 import org.opendaylight.controller.cluster.datastore.AbstractTest;
18 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
19
20 /**
21  * Unit tests for CloseTransactionChain.
22  *
23  * @author Thomas Pantelis
24  */
25 @Deprecated(since = "9.0.0", forRemoval = true)
26 public class CloseTransactionChainTest extends AbstractTest {
27     @Test
28     public void testSerialization() {
29         CloseTransactionChain expected = new CloseTransactionChain(newHistoryId(1), DataStoreVersions.CURRENT_VERSION);
30
31         var serialized = (Serializable) expected.toSerializable();
32         assertEquals("Serialized type", CloseTransactionChain.class, serialized.getClass());
33
34         final byte[] bytes = SerializationUtils.serialize(serialized);
35         assertEquals(241, bytes.length);
36
37         CloseTransactionChain actual = CloseTransactionChain.fromSerializable(
38                 SerializationUtils.deserialize(bytes));
39         assertEquals("getIdentifier", expected.getIdentifier(), actual.getIdentifier());
40         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
41     }
42
43     @Test
44     public void testIsSerializedType() {
45         assertTrue("isSerializedType", CloseTransactionChain.isSerializedType(new CloseTransactionChain()));
46         assertFalse("isSerializedType", CloseTransactionChain.isSerializedType(new Object()));
47     }
48 }