c015cb89b6f00f859a10876e24c7a33cb64354a1
[mdsal.git] / entityownership / mdsal-eos-binding-api / src / test / java / org / opendaylight / mdsal / eos / binding / api / 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.mdsal.eos.binding.api;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotEquals;
12 import static org.junit.Assert.assertNotNull;
13
14 import org.apache.commons.lang3.SerializationUtils;
15 import org.junit.Test;
16 import org.opendaylight.yangtools.yang.binding.DataObject;
17 import org.opendaylight.yangtools.yang.binding.Identifier;
18 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
19
20 /**
21  * Unit tests for Entity.
22  *
23  * @author Thomas Pantelis
24  */
25 public class EntityTest {
26
27     static String ENTITY_TYPE1 = "type1";
28     static String ENTITY_TYPE2 = "type2";
29     static final InstanceIdentifier<TestDataObject1> ID1 = InstanceIdentifier.create(TestDataObject1.class);
30     static final InstanceIdentifier<TestDataObject2> ID2 = InstanceIdentifier.create(TestDataObject2.class);
31
32     @Test
33     public void testHashCode() {
34         Entity entity1 = new Entity(ENTITY_TYPE1, ID1);
35
36         assertEquals("hashCode", entity1.hashCode(), new Entity(ENTITY_TYPE1, ID1).hashCode());
37         assertNotEquals("hashCode", entity1.hashCode(), new Entity(ENTITY_TYPE2, ID2).hashCode());
38     }
39
40     @Test
41     public void testEquals() {
42         Entity entity1 = new Entity(ENTITY_TYPE1, ID1);
43
44         assertEquals("Same", true, entity1.equals(entity1));
45         assertEquals("Same", true, entity1.equals(new Entity(ENTITY_TYPE1, ID1)));
46         assertEquals("Different entity type", false, entity1.equals(new Entity(ENTITY_TYPE2, ID1)));
47         assertEquals("Different entity ID", false, entity1.equals(new Entity(ENTITY_TYPE1, ID2)));
48         assertEquals("Different Object", false, entity1.equals(new Object()));
49         assertEquals("Equals null", false, entity1.equals(null));
50     }
51
52     @Test
53     public void testSerialization() {
54         Entity entity = new Entity(ENTITY_TYPE1, ID1);
55
56         Entity clone = SerializationUtils.clone(entity);
57
58         assertEquals("getType", entity.getType(), clone.getType());
59         assertEquals("getId", entity.getIdentifier(), clone.getIdentifier());
60     }
61
62     @Test
63     public void testEntityNameConstructor() {
64         Entity entity = new Entity(ENTITY_TYPE1, "foo");
65
66         Identifier<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang
67             .mdsal.core.general.entity.rev150930.Entity> keyID = entity.getIdentifier().firstKeyOf(
68                 org.opendaylight.yang.gen.v1.urn
69                     .opendaylight.params.xml.ns.yang.mdsal.core.general.entity.rev150930.Entity.class);
70         assertNotNull("List key not found", keyID);
71     }
72
73     static class TestDataObject1 implements DataObject {
74         @Override
75         public Class<? extends DataObject> implementedInterface() {
76             return DataObject.class;
77         }
78     }
79
80     static class TestDataObject2 implements DataObject {
81         @Override
82         public Class<? extends DataObject> implementedInterface() {
83             return DataObject.class;
84         }
85     }
86 }