Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / AbortTransactionTest.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.DataStoreVersions;
18 import org.opendaylight.controller.cluster.datastore.MockIdentifiers;
19
20 /**
21  * Unit tests for AbortTransaction.
22  *
23  * @author Thomas Pantelis
24  */
25 @Deprecated(since = "9.0.0", forRemoval = true)
26 public class AbortTransactionTest {
27     @Test
28     public void testSerialization() {
29         AbortTransaction expected = new AbortTransaction(
30             MockIdentifiers.transactionIdentifier(AbortTransactionTest.class, "mock"),
31             DataStoreVersions.CURRENT_VERSION);
32
33         Object serialized = expected.toSerializable();
34         assertEquals("Serialized type", AbortTransaction.class, serialized.getClass());
35
36         AbortTransaction actual = AbortTransaction.fromSerializable(
37                 SerializationUtils.clone((Serializable) serialized));
38         assertEquals("getTransactionID", expected.getTransactionId(), actual.getTransactionId());
39         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
40     }
41
42     @Test
43     public void testIsSerializedType() {
44         assertTrue("isSerializedType", AbortTransaction.isSerializedType(new AbortTransaction()));
45         assertFalse("isSerializedType", AbortTransaction.isSerializedType(new Object()));
46     }
47 }