cf574ccbd2c95ea494cedc7656eedc7b11a8beb9
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / ReadDataTest.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
12 import java.io.Serializable;
13 import org.apache.commons.lang.SerializationUtils;
14 import org.junit.Test;
15 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
16 import org.opendaylight.controller.md.cluster.datastore.model.TestModel;
17
18 /**
19  * Unit tests for ReadData.
20  *
21  * @author Thomas Pantelis
22  */
23 public class ReadDataTest {
24
25     @Test
26     public void testSerialization() {
27         ReadData expected = new ReadData(TestModel.TEST_PATH, DataStoreVersions.CURRENT_VERSION);
28
29         Object serialized = expected.toSerializable();
30         assertEquals("Serialized type", ReadData.class, serialized.getClass());
31
32         ReadData actual = ReadData.fromSerializable(SerializationUtils.clone((Serializable) serialized));
33         assertEquals("getPath", expected.getPath(), actual.getPath());
34         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
35     }
36
37     @Test
38     public void testIsSerializedType() {
39         assertEquals("isSerializedType", true, ReadData.isSerializedType(new ReadData()));
40         assertEquals("isSerializedType", false, ReadData.isSerializedType(new Object()));
41     }
42 }