d0264de4f77d76bb4eab042f6c61dea334374364
[yangtools.git] / data / yang-data-tree-ri / src / test / java / org / opendaylight / yangtools / yang / data / tree / impl / StoreTreeNodesTest.java
1 /*
2  * Copyright (c) 2015 Cisco 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.yangtools.yang.data.tree.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertTrue;
14 import static org.junit.Assert.fail;
15 import static org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes.mapEntry;
16 import static org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes.mapEntryBuilder;
17 import static org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes.mapNodeBuilder;
18
19 import java.util.Map.Entry;
20 import java.util.Optional;
21 import org.junit.Before;
22 import org.junit.Test;
23 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
24 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
25 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
26 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
27 import org.opendaylight.yangtools.yang.data.api.schema.tree.StoreTreeNodes;
28 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
29 import org.opendaylight.yangtools.yang.data.tree.api.DataTreeConfiguration;
30 import org.opendaylight.yangtools.yang.data.tree.impl.node.TreeNode;
31 import org.opendaylight.yangtools.yang.data.tree.impl.node.Version;
32 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 public class StoreTreeNodesTest extends AbstractTestModelTest {
37     private static final Logger LOG = LoggerFactory.getLogger(StoreTreeNodesTest.class);
38
39     private static final Short ONE_ID = 1;
40     private static final Short TWO_ID = 2;
41     private static final String TWO_ONE_NAME = "one";
42     private static final String TWO_TWO_NAME = "two";
43
44     private static final YangInstanceIdentifier OUTER_LIST_1_PATH = YangInstanceIdentifier.builder(
45         TestModel.OUTER_LIST_PATH)
46             .nodeWithKey(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, ONE_ID)
47             .build();
48
49     private static final YangInstanceIdentifier OUTER_LIST_2_PATH = YangInstanceIdentifier.builder(
50         TestModel.OUTER_LIST_PATH)
51             .nodeWithKey(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, TWO_ID)
52             .build();
53
54     private static final YangInstanceIdentifier TWO_TWO_PATH = YangInstanceIdentifier.builder(OUTER_LIST_2_PATH)
55             .node(TestModel.INNER_LIST_QNAME)
56             .nodeWithKey(TestModel.INNER_LIST_QNAME, TestModel.NAME_QNAME, TWO_TWO_NAME)
57             .build();
58
59     private static final MapEntryNode BAR_NODE = mapEntryBuilder(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, TWO_ID)
60             .withChild(mapNodeBuilder(TestModel.INNER_LIST_QNAME)
61                     .withChild(mapEntry(TestModel.INNER_LIST_QNAME, TestModel.NAME_QNAME, TWO_ONE_NAME))
62                     .withChild(mapEntry(TestModel.INNER_LIST_QNAME, TestModel.NAME_QNAME, TWO_TWO_NAME))
63                     .build())
64                     .build();
65
66     private RootApplyStrategy rootOper;
67
68     @Before
69     public void prepare() throws ExcludedDataSchemaNodeException {
70         rootOper = RootApplyStrategy.from(SchemaAwareApplyOperation.from(SCHEMA_CONTEXT,
71             DataTreeConfiguration.DEFAULT_OPERATIONAL));
72     }
73
74     public static ContainerNode createDocumentOne() {
75         return Builders.containerBuilder()
76             .withNodeIdentifier(new NodeIdentifier(SchemaContext.NAME))
77             .withChild(createTestContainer())
78             .build();
79     }
80
81     @Test
82     public void findNodeTestNodeFound() {
83         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
84                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
85         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
86         final Optional<? extends TreeNode> node = StoreTreeNodes.findNode(rootNode, OUTER_LIST_1_PATH);
87         assertPresentAndType(node, TreeNode.class);
88     }
89
90     @Test
91     public void findNodeTestNodeNotFound() {
92         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
93                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
94         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
95         final YangInstanceIdentifier outerList1InvalidPath = YangInstanceIdentifier.builder(TestModel.OUTER_LIST_PATH)
96                 .nodeWithKey(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, 3) //
97                 .build();
98         final Optional<? extends TreeNode> node = StoreTreeNodes.findNode(rootNode, outerList1InvalidPath);
99         assertFalse(node.isPresent());
100     }
101
102     @Test
103     public void findNodeCheckedTestNodeFound() {
104         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
105                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
106         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
107         TreeNode foundNode = null;
108         try {
109             foundNode = StoreTreeNodes.findNodeChecked(rootNode, OUTER_LIST_1_PATH);
110         } catch (final IllegalArgumentException e) {
111             fail("Illegal argument exception was thrown and should not have been" + e.getMessage());
112         }
113         assertNotNull(foundNode);
114     }
115
116     @Test
117     public void findNodeCheckedTestNodeNotFound() {
118         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
119                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
120         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
121         final YangInstanceIdentifier outerList1InvalidPath = YangInstanceIdentifier.builder(TestModel.OUTER_LIST_PATH)
122                 .nodeWithKey(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, 3) //
123                 .build();
124         try {
125             StoreTreeNodes.findNodeChecked(rootNode, outerList1InvalidPath);
126             fail("Illegal argument exception should have been thrown");
127         } catch (final IllegalArgumentException e) {
128             LOG.debug("Illegal argument exception was thrown as expected: '{}' - '{}'", e.getClass(), e.getMessage());
129         }
130     }
131
132     @Test
133     public void findClosestOrFirstMatchTestNodeExists() {
134         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
135                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
136         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
137         final Optional<? extends TreeNode> expectedNode = StoreTreeNodes.findNode(rootNode, TWO_TWO_PATH);
138         assertPresentAndType(expectedNode, TreeNode.class);
139
140         final Entry<YangInstanceIdentifier, TreeNode> actualNode = StoreTreeNodes.findClosest(rootNode, TWO_TWO_PATH);
141         assertTreeNodeEquals(expectedNode.orElseThrow(), actualNode.getValue());
142     }
143
144     @Test
145     public void findClosestOrFirstMatchTestNodeDoesNotExist() {
146         final InMemoryDataTreeSnapshot inMemoryDataTreeSnapshot = new InMemoryDataTreeSnapshot(SCHEMA_CONTEXT,
147                 TreeNode.of(createDocumentOne(), Version.initial()), rootOper);
148         final TreeNode rootNode = inMemoryDataTreeSnapshot.getRootNode();
149         final YangInstanceIdentifier outerListInnerListPath = YangInstanceIdentifier.builder(OUTER_LIST_2_PATH)
150                 .node(TestModel.INNER_LIST_QNAME)
151                 .build();
152         final YangInstanceIdentifier twoTwoInvalidPath = YangInstanceIdentifier.builder(OUTER_LIST_2_PATH)
153                 .node(TestModel.INNER_LIST_QNAME)
154                 .nodeWithKey(TestModel.INNER_LIST_QNAME, TestModel.NAME_QNAME, "three")
155                 .build();
156         final Optional<? extends TreeNode> expectedNode = StoreTreeNodes.findNode(rootNode, outerListInnerListPath);
157         assertPresentAndType(expectedNode, TreeNode.class);
158
159         final Entry<YangInstanceIdentifier, TreeNode> actualNode = StoreTreeNodes.findClosest(rootNode,
160             twoTwoInvalidPath);
161         assertTreeNodeEquals(expectedNode.orElseThrow(), actualNode.getValue());
162     }
163
164     private static ContainerNode createTestContainer() {
165         return Builders.containerBuilder()
166             .withNodeIdentifier(new NodeIdentifier(TestModel.TEST_QNAME))
167             .withChild(mapNodeBuilder(TestModel.OUTER_LIST_QNAME)
168                 .withChild(mapEntry(TestModel.OUTER_LIST_QNAME, TestModel.ID_QNAME, ONE_ID))
169                 .withChild(BAR_NODE)
170                 .build())
171             .build();
172     }
173
174     private static <T extends TreeNode> T assertPresentAndType(final Optional<? extends TreeNode> potential,
175             final Class<T> type) {
176         assertNotNull(potential);
177         assertTrue(potential.isPresent());
178         assertTrue(type.isInstance(potential.orElseThrow()));
179         return type.cast(potential.orElseThrow());
180     }
181
182     private static void assertTreeNodeEquals(final TreeNode expected, final TreeNode actual) {
183         assertEquals(expected.getIdentifier(), actual.getIdentifier());
184         assertEquals(expected.getVersion(), actual.getVersion());
185         assertEquals(expected.getSubtreeVersion(), actual.getSubtreeVersion());
186         assertEquals(expected.getData(), actual.getData());
187         assertEquals(expected.toString(), actual.toString());
188     }
189 }