/* * Copyright (c) 2015 Pantheon Technologies s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.data.impl.schema.tree; import static junit.framework.TestCase.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import com.google.common.base.Optional; import com.google.common.collect.ImmutableMap; import java.io.IOException; import java.net.URISyntaxException; import java.util.HashMap; import java.util.Map; import org.junit.Before; import org.junit.Test; import org.opendaylight.yangtools.util.UnmodifiableCollection; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue; import org.opendaylight.yangtools.yang.data.api.schema.LeafNode; import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode; import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode; import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode; import org.opendaylight.yangtools.yang.data.api.schema.MapNode; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException; import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType; import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes; import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableLeafSetEntryNodeBuilder; import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableLeafSetNodeBuilder; import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableMapEntryNodeBuilder; import org.opendaylight.yangtools.yang.model.api.SchemaContext; import org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException; import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException; import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils; public class Bug4454Test { private static final QName MASTER_CONTAINER_QNAME = QName .create("urn:opendaylight:params:xml:ns:yang:list-constraints-validation-test-model", "2015-02-02", "master-container"); private static final QName MIN_MAX_LIST_QNAME = QName.create(MASTER_CONTAINER_QNAME, "min-max-list"); private static final QName MIN_MAX_LEAF_LIST_QNAME = QName.create(MASTER_CONTAINER_QNAME, "min-max-leaf-list"); private static final QName MIN_MAX_LIST_QNAME_NO_MINMAX = QName .create(MASTER_CONTAINER_QNAME, "min-max-list-no-minmax"); private static final QName MIN_MAX_KEY_LEAF_QNAME = QName.create(MASTER_CONTAINER_QNAME, "min-max-key-leaf"); private static final QName MIN_MAX_VALUE_LEAF_QNAME = QName.create(MASTER_CONTAINER_QNAME, "min-max-value-leaf"); private static final YangInstanceIdentifier MASTER_CONTAINER_PATH = YangInstanceIdentifier .of(MASTER_CONTAINER_QNAME); private static final YangInstanceIdentifier MIN_MAX_LIST_PATH = YangInstanceIdentifier .builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).build(); private static final YangInstanceIdentifier MIN_MAX_LIST_NO_MINMAX_PATH = YangInstanceIdentifier .builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME_NO_MINMAX).build(); private static final YangInstanceIdentifier MIN_MAX_LEAF_LIST_PATH = YangInstanceIdentifier .builder(MASTER_CONTAINER_PATH).node(MIN_MAX_LEAF_LIST_QNAME).build(); private static final Map FOO_PREDICATES = ImmutableMap.of(MIN_MAX_KEY_LEAF_QNAME, "foo"); private static final Map BAZ_PREDICATES = ImmutableMap.of(MIN_MAX_KEY_LEAF_QNAME, "baz"); private final MapEntryNode fooEntryNodeWithValue = ImmutableMapEntryNodeBuilder.create().withNodeIdentifier( new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, FOO_PREDICATES)) .withChild(ImmutableNodes.leafNode(MIN_MAX_VALUE_LEAF_QNAME, "footest")).build(); private final MapEntryNode bazEntryNodeWithValue = ImmutableMapEntryNodeBuilder.create().withNodeIdentifier( new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, BAZ_PREDICATES)) .withChild(ImmutableNodes.leafNode(MIN_MAX_VALUE_LEAF_QNAME, "baztest")).build(); private final MapEntryNode fooEntryNode = ImmutableNodes.mapEntry(MIN_MAX_LIST_QNAME, MIN_MAX_KEY_LEAF_QNAME, "foo"); private final MapEntryNode barEntryNode = ImmutableNodes.mapEntry(MIN_MAX_LIST_QNAME, MIN_MAX_KEY_LEAF_QNAME, "bar"); private final MapEntryNode bazEntryNode = ImmutableNodes.mapEntry(MIN_MAX_LIST_QNAME, MIN_MAX_KEY_LEAF_QNAME, "baz"); private final MapNode mapNodeBazFuzWithNodes = ImmutableNodes.mapNodeBuilder() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LIST_QNAME)) .withChild(bazEntryNode).withChild(bazEntryNodeWithValue).withChild(fooEntryNode) .build(); private final MapNode mapNodeFooWithNodes = ImmutableNodes.mapNodeBuilder() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LIST_QNAME)) .withChild(fooEntryNode).withChild(fooEntryNodeWithValue).withChild(barEntryNode).withChild(bazEntryNode) .build(); private final MapNode mapNodeBar = ImmutableNodes.mapNodeBuilder() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LIST_QNAME)) .withChild(barEntryNode).build(); private final MapNode mapNodeBaz = ImmutableNodes.mapNodeBuilder() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LIST_QNAME)) .withChild(bazEntryNode).build(); private InMemoryDataTree inMemoryDataTree; @Before public void prepare() throws IOException, YangSyntaxErrorException, ReactorException, URISyntaxException { SchemaContext schemaContext = createTestContext(); assertNotNull("Schema context must not be null.", schemaContext); inMemoryDataTree = (InMemoryDataTree) InMemoryDataTreeFactory.getInstance().create(TreeType.OPERATIONAL); inMemoryDataTree.setSchemaContext(schemaContext); final InMemoryDataTreeSnapshot initialDataTreeSnapshot = inMemoryDataTree.takeSnapshot(); final DataTreeModification modificationTree = initialDataTreeSnapshot.newModification(); modificationTree.write(MASTER_CONTAINER_PATH, ImmutableNodes.containerNode(MASTER_CONTAINER_QNAME)); modificationTree.ready(); inMemoryDataTree.commit(inMemoryDataTree.prepare(modificationTree)); } public static SchemaContext createTestContext() throws IOException, YangSyntaxErrorException, ReactorException, URISyntaxException { return YangParserTestUtils.parseYangResource("/bug-4454-test.yang"); } @Test public void minMaxListDeleteWriteTest() throws DataValidationFailedException { final InMemoryDataTreeModification modificationTree1 = inMemoryDataTree.takeSnapshot().newModification(); Map key = new HashMap<>(); key.put(MIN_MAX_KEY_LEAF_QNAME, "foo"); NodeIdentifierWithPredicates mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME , key); final YangInstanceIdentifier minMaxLeafFoo = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).node(mapEntryPath2).build(); key.clear(); key.put(MIN_MAX_KEY_LEAF_QNAME, "NON-EXISTING-LEAF"); mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, key); final YangInstanceIdentifier minMaxLeafNel = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).node(mapEntryPath2).build(); final Map keyTemp = new HashMap<>(); keyTemp.put(MIN_MAX_KEY_LEAF_QNAME, "baz"); NodeIdentifierWithPredicates mapEntryPathTest = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME , keyTemp); final YangInstanceIdentifier pathToBaz = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).node(mapEntryPathTest).node(MIN_MAX_VALUE_LEAF_QNAME).build(); keyTemp.clear(); keyTemp.put(MIN_MAX_KEY_LEAF_QNAME, "bar"); mapEntryPathTest = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME , keyTemp); final YangInstanceIdentifier pathToBar = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).node(mapEntryPathTest).node(MIN_MAX_VALUE_LEAF_QNAME).build(); keyTemp.clear(); keyTemp.put(MIN_MAX_KEY_LEAF_QNAME, "foo"); final NodeIdentifierWithPredicates mapEntryPathTestKey = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, keyTemp); final YangInstanceIdentifier pathToKeyFoo = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME).node(mapEntryPathTestKey).node(MIN_MAX_KEY_LEAF_QNAME).build(); final LeafNode newNode = ImmutableNodes.leafNode(MIN_MAX_VALUE_LEAF_QNAME, "test"); final LeafNode newNode1 = ImmutableNodes.leafNode(MIN_MAX_VALUE_LEAF_QNAME, "test1"); final LeafNode newNode2 = ImmutableNodes.leafNode(MIN_MAX_VALUE_LEAF_QNAME, "test2"); final LeafNode newNodekey = ImmutableNodes.leafNode(MIN_MAX_KEY_LEAF_QNAME, "foo"); assertFalse(inMemoryDataTree.toString().contains("list")); InMemoryDataTreeSnapshot snapshotAfterCommit = inMemoryDataTree.takeSnapshot(); Optional> minMaxListRead = snapshotAfterCommit.readNode(MIN_MAX_LIST_PATH); assertTrue(!minMaxListRead.isPresent()); modificationTree1.write(MIN_MAX_LIST_PATH, mapNodeFooWithNodes); modificationTree1.write(MIN_MAX_LIST_PATH, mapNodeFooWithNodes); modificationTree1.write(MIN_MAX_LIST_PATH, mapNodeFooWithNodes); modificationTree1.merge(MIN_MAX_LIST_PATH, mapNodeBar); modificationTree1.merge(MIN_MAX_LIST_PATH, mapNodeBaz); modificationTree1.write(pathToKeyFoo, newNodekey); modificationTree1.write(pathToBaz, newNode2); modificationTree1.write(pathToBaz, newNode1); modificationTree1.write(pathToBaz, newNode); modificationTree1.delete(minMaxLeafFoo); modificationTree1.delete(minMaxLeafNel); modificationTree1.ready(); inMemoryDataTree.validate(modificationTree1); final DataTreeCandidate prepare = inMemoryDataTree.prepare(modificationTree1); inMemoryDataTree.commit(prepare); InMemoryDataTreeSnapshot test = inMemoryDataTree.takeSnapshot(); testLoop(test, "bar", "test"); InMemoryDataTreeModification tempMod = test.newModification(); tempMod.write(pathToBaz, newNode2); tempMod.write(pathToBaz, newNode1); tempMod.merge(pathToBaz, newNode2); tempMod.write(pathToBaz, newNode1); tempMod.ready(); inMemoryDataTree.validate(tempMod); final DataTreeCandidate prepare1 = inMemoryDataTree.prepare(tempMod); inMemoryDataTree.commit(prepare1); InMemoryDataTreeSnapshot test1 = inMemoryDataTree.takeSnapshot(); testLoop(test1, "bar", "test1"); InMemoryDataTreeModification tempMod1 = test1.newModification(); tempMod1.write(MIN_MAX_LIST_PATH, mapNodeFooWithNodes); tempMod1.ready(); inMemoryDataTree.validate(tempMod1); final DataTreeCandidate prepare2 = inMemoryDataTree.prepare(tempMod1); inMemoryDataTree.commit(prepare2); InMemoryDataTreeSnapshot test2 = inMemoryDataTree.takeSnapshot(); minMaxListRead = test2.readNode(MIN_MAX_LIST_PATH); assertTrue(minMaxListRead.isPresent()); assertTrue(((NormalizedNodeContainer) minMaxListRead.get()).getValue().size() == 3); InMemoryDataTreeModification tempMod2 = test2.newModification(); tempMod2.write(MIN_MAX_LIST_PATH, mapNodeBaz); tempMod2.write(pathToBaz, newNode2); tempMod2.ready(); inMemoryDataTree.validate(tempMod2); final DataTreeCandidate prepare3 = inMemoryDataTree.prepare(tempMod2); inMemoryDataTree.commit(prepare3); InMemoryDataTreeSnapshot test3 = inMemoryDataTree.takeSnapshot(); minMaxListRead = test3.readNode(MIN_MAX_LIST_PATH); assertTrue(minMaxListRead.isPresent()); assertTrue(((NormalizedNodeContainer) minMaxListRead.get()).getValue().size() == 1); assertTrue(minMaxListRead.get().getValue().toString().contains("test2")); InMemoryDataTreeModification tempMod3 = test3.newModification(); tempMod3.merge(MIN_MAX_LIST_PATH, mapNodeBar); tempMod3.merge(pathToBar, newNode1); tempMod3.ready(); inMemoryDataTree.validate(tempMod3); final DataTreeCandidate prepare4 = inMemoryDataTree.prepare(tempMod3); inMemoryDataTree.commit(prepare4); InMemoryDataTreeSnapshot test4 = inMemoryDataTree.takeSnapshot(); testLoop(test4, "test1", "test2"); } @Test public void minMaxLeafListPass() throws DataValidationFailedException { final DataTreeModification modificationTree = inMemoryDataTree.takeSnapshot().newModification(); final NodeWithValue barPath = new NodeWithValue<>(MIN_MAX_LIST_QNAME, "bar"); final NodeWithValue gooPath = new NodeWithValue<>(MIN_MAX_LIST_QNAME, "goo"); final LeafSetEntryNode barLeafSetEntry = ImmutableLeafSetEntryNodeBuilder.create() .withNodeIdentifier(barPath) .withValue("bar").build(); final LeafSetEntryNode gooLeafSetEntry = ImmutableLeafSetEntryNodeBuilder.create() .withNodeIdentifier(gooPath) .withValue("goo").build(); final LeafSetNode fooLeafSetNode = ImmutableLeafSetNodeBuilder.create() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LEAF_LIST_QNAME)) .withChildValue("foo").build(); modificationTree.write(MIN_MAX_LEAF_LIST_PATH, fooLeafSetNode); modificationTree.write(MIN_MAX_LEAF_LIST_PATH.node(barPath), barLeafSetEntry); modificationTree.ready(); inMemoryDataTree.validate(modificationTree); final DataTreeCandidate prepare1 = inMemoryDataTree.prepare(modificationTree); inMemoryDataTree.commit(prepare1); InMemoryDataTreeSnapshot test1 = inMemoryDataTree.takeSnapshot(); InMemoryDataTreeModification tempMod1 = test1.newModification(); tempMod1.write(MIN_MAX_LEAF_LIST_PATH.node(gooPath), gooLeafSetEntry); tempMod1.write(MIN_MAX_LEAF_LIST_PATH.node(barPath), barLeafSetEntry); tempMod1.ready(); inMemoryDataTree.validate(tempMod1); final DataTreeCandidate prepare2 = inMemoryDataTree.prepare(tempMod1); inMemoryDataTree.commit(prepare2); final InMemoryDataTreeSnapshot snapshotAfterCommit = inMemoryDataTree.takeSnapshot(); final Optional> masterContainer = snapshotAfterCommit.readNode(MASTER_CONTAINER_PATH); assertTrue(masterContainer.isPresent()); final Optional> leafList = ((NormalizedNodeContainer) masterContainer.get()) .getChild(new NodeIdentifier(MIN_MAX_LEAF_LIST_QNAME)); assertTrue(leafList.isPresent()); assertTrue(leafList.get().getValue().size() == 3); } @Test(expected = DataValidationFailedException.class) public void minMaxListDeleteExceptionTest() throws DataValidationFailedException { final InMemoryDataTreeModification modificationTree = inMemoryDataTree.takeSnapshot().newModification(); Map key = new HashMap<>(); key.put(MIN_MAX_KEY_LEAF_QNAME, "foo"); NodeIdentifierWithPredicates mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, key); final YangInstanceIdentifier minMaxLeafFoo = MASTER_CONTAINER_PATH .node(MIN_MAX_LIST_QNAME).node(mapEntryPath2); key.clear(); key.put(MIN_MAX_KEY_LEAF_QNAME, "bar"); mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, key); final YangInstanceIdentifier minMaxLeafBar = MASTER_CONTAINER_PATH .node(MIN_MAX_LIST_QNAME).node(mapEntryPath2); key.clear(); key.put(MIN_MAX_KEY_LEAF_QNAME, "baz"); mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME, key); final YangInstanceIdentifier minMaxLeafBaz = MASTER_CONTAINER_PATH .node(MIN_MAX_LIST_QNAME).node(mapEntryPath2); modificationTree.write(MIN_MAX_LIST_PATH, mapNodeFooWithNodes); modificationTree.merge(MIN_MAX_LIST_PATH, mapNodeBar); modificationTree.merge(MIN_MAX_LIST_PATH, mapNodeBaz); modificationTree.delete(minMaxLeafFoo); modificationTree.delete(minMaxLeafBar); modificationTree.delete(minMaxLeafBaz); modificationTree.ready(); inMemoryDataTree.validate(modificationTree); final DataTreeCandidate prepare = inMemoryDataTree.prepare(modificationTree); inMemoryDataTree.commit(prepare); } @Test public void minMaxListNoMinMaxDeleteTest() throws DataValidationFailedException { final MapEntryNode fooEntryNode = ImmutableNodes.mapEntry(MIN_MAX_LIST_QNAME_NO_MINMAX, MIN_MAX_KEY_LEAF_QNAME, "foo"); final MapNode mapNode1 = ImmutableNodes.mapNodeBuilder() .withNodeIdentifier(new NodeIdentifier(MIN_MAX_LIST_QNAME_NO_MINMAX)) .withChild(fooEntryNode).build(); final InMemoryDataTreeModification modificationTree = inMemoryDataTree.takeSnapshot().newModification(); Map key = new HashMap<>(); key.put(MIN_MAX_KEY_LEAF_QNAME, "foo"); NodeIdentifierWithPredicates mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME_NO_MINMAX, key); final YangInstanceIdentifier minMaxLeafFoo = MASTER_CONTAINER_PATH .node(MIN_MAX_LIST_QNAME_NO_MINMAX).node(mapEntryPath2); key.clear(); key.put(MIN_MAX_KEY_LEAF_QNAME, "non-existing-leaf"); mapEntryPath2 = new NodeIdentifierWithPredicates(MIN_MAX_LIST_QNAME_NO_MINMAX, key); YangInstanceIdentifier minMaxLeafNel = YangInstanceIdentifier.builder(MASTER_CONTAINER_PATH) .node(MIN_MAX_LIST_QNAME_NO_MINMAX).node(mapEntryPath2).build(); modificationTree.write(MIN_MAX_LIST_NO_MINMAX_PATH, mapNode1); modificationTree.delete(minMaxLeafFoo); modificationTree.delete(minMaxLeafNel); modificationTree.ready(); inMemoryDataTree.validate(modificationTree); final DataTreeCandidate prepare = inMemoryDataTree.prepare(modificationTree); inMemoryDataTree.commit(prepare); final InMemoryDataTreeSnapshot snapshotAfterCommit = inMemoryDataTree.takeSnapshot(); final Optional> minMaxListRead = snapshotAfterCommit.readNode(MIN_MAX_LIST_NO_MINMAX_PATH); assertTrue(minMaxListRead.isPresent()); assertTrue(((NormalizedNodeContainer) minMaxListRead.get()).getValue().size() == 0); } private static void testLoop(final InMemoryDataTreeSnapshot snapshot, final String first, final String second) { Optional> minMaxListRead = snapshot.readNode(MIN_MAX_LIST_PATH); assertTrue(minMaxListRead.isPresent()); assertTrue(((NormalizedNodeContainer) minMaxListRead.get()).getValue().size() == 2); UnmodifiableCollection collectionChildren = (UnmodifiableCollection) minMaxListRead.get().getValue(); for (Object collectionChild : collectionChildren) { if (collectionChild.toString().contains(first)) { assertTrue(collectionChild.toString().contains(first)); } else { assertTrue(collectionChild.toString().contains(second)); } } } }