Bug 4105: Implement RegisterCandidate in EntityOwnershipShard
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / entityownership / AbstractEntityOwnershipTest.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.cluster.datastore.entityownership;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertTrue;
13 import com.google.common.base.Optional;
14 import org.opendaylight.controller.cluster.datastore.AbstractActorTest;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.EntityOwners;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.entity.owners.EntityType;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.clustering.entity.owners.rev150804.entity.owners.entity.type.entity.Candidate;
18 import org.opendaylight.yangtools.yang.common.QName;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
21 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
22 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
23 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
24 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
25 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
26 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
27 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
28 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
29
30 /**
31  * Abstract base class providing utility methods.
32  *
33  * @author Thomas Pantelis
34  */
35 public class AbstractEntityOwnershipTest extends AbstractActorTest {
36     protected void verifyEntityCandidate(NormalizedNode<?, ?> node, String entityType,
37             YangInstanceIdentifier entityId, String candidateName) {
38         try {
39             assertNotNull("Missing " + EntityOwners.QNAME.toString(), node);
40             assertTrue(node instanceof ContainerNode);
41
42             ContainerNode entityOwnersNode = (ContainerNode) node;
43
44             MapEntryNode entityTypeEntry = getMapEntryNodeChild(entityOwnersNode, EntityType.QNAME,
45                     EntityOwnershipShard.ENTITY_TYPE, entityType);
46
47             MapEntryNode entityEntry = getMapEntryNodeChild(entityTypeEntry, EntityOwnershipShard.ENTITY_QNAME,
48                     EntityOwnershipShard.ENTITY_ID, entityId);
49
50             getMapEntryNodeChild(entityEntry, Candidate.QNAME, EntityOwnershipShard.CANDIDATE_NAME, candidateName);
51         } catch(AssertionError e) {
52             throw new AssertionError("Verification of enitity candidate failed - returned data was: " + node, e);
53         }
54     }
55
56     protected MapEntryNode getMapEntryNodeChild(DataContainerNode<? extends PathArgument> parent, QName childMap,
57             QName child, Object key) {
58         Optional<DataContainerChild<? extends PathArgument, ?>> childNode =
59                 parent.getChild(new NodeIdentifier(childMap));
60         assertEquals("Missing " + childMap.toString(), true, childNode.isPresent());
61
62         MapNode entityTypeMapNode = (MapNode) childNode.get();
63         Optional<MapEntryNode> entityTypeEntry = entityTypeMapNode.getChild(new NodeIdentifierWithPredicates(
64                 childMap, child, key));
65         assertEquals("Missing " + childMap.toString() + " entry for " + key, true, entityTypeEntry.isPresent());
66         return entityTypeEntry.get();
67     }
68 }