d8da5db5fb637f5083360769da054776f99b1a92
[controller.git] / opendaylight / md-sal / sal-common-api / src / test / java / org / opendaylight / controller / md / sal / common / api / clustering / EntityTest.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.md.sal.common.api.clustering;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotEquals;
12
13 import org.apache.commons.lang3.SerializationUtils;
14 import org.junit.Test;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
17
18 /**
19  * Unit tests for Entity.
20  *
21  * @author Thomas Pantelis
22  */
23 public class EntityTest {
24     static String ENTITY_TYPE1 = "type1";
25     static String ENTITY_TYPE2 = "type2";
26     static final QName QNAME1 = QName.create("test", "2015-08-14", "1");
27     static final QName QNAME2 = QName.create("test", "2015-08-14", "2");
28     static final YangInstanceIdentifier YANGID1 = YangInstanceIdentifier.of(QNAME1);
29     static final YangInstanceIdentifier YANGID2 = YangInstanceIdentifier.of(QNAME2);
30
31     @Test
32     public void testHashCode() {
33         Entity entity1 = new Entity(ENTITY_TYPE1, YANGID1);
34
35         assertEquals("hashCode", entity1.hashCode(), new Entity(ENTITY_TYPE1, YANGID1).hashCode());
36         assertNotEquals("hashCode", entity1.hashCode(), new Entity(ENTITY_TYPE2, YANGID2).hashCode());
37     }
38
39     @Test
40     public void testEquals() {
41         Entity entity1 = new Entity(ENTITY_TYPE1, YANGID1);
42
43         assertEquals("Same", true, entity1.equals(entity1));
44         assertEquals("Same", true, entity1.equals(new Entity(ENTITY_TYPE1, YANGID1)));
45         assertEquals("Different entity type", false, entity1.equals(new Entity(ENTITY_TYPE2, YANGID1)));
46         assertEquals("Different yang ID", false, entity1.equals(new Entity(ENTITY_TYPE1, YANGID2)));
47         assertEquals("Different Object", false, entity1.equals(new Object()));
48         assertEquals("Equals null", false, entity1.equals(null));
49     }
50
51     @Test
52     public void testSerialization() {
53         Entity entity = new Entity(ENTITY_TYPE1, YANGID1);
54
55         Entity clone = SerializationUtils.clone(entity);
56
57         assertEquals("getType", entity.getType(), clone.getType());
58         assertEquals("getId", entity.getId(), clone.getId());
59     }
60 }