From 0380b9d1f451affec186f197189a4e0ca87336ab Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Thu, 8 Jun 2017 12:18:08 +0200 Subject: Move ordering logic out of AbstractSubtreeManagerRegistryBuilderBuilder Introduces YangDAG that maintains topological order for yang schema nodes and can be used by other components to read additional graph edges, e.g. from file (HONEYCOMB-365). Change-Id: Ia3046d38ffb4ca222412309f6c4391afc9315bd2 Signed-off-by: Marek Gradzki --- .../fd/honeycomb/translate/util/YangDAGTest.java | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 infra/translate-utils/src/test/java/io/fd/honeycomb/translate/util/YangDAGTest.java (limited to 'infra/translate-utils/src/test/java/io') diff --git a/infra/translate-utils/src/test/java/io/fd/honeycomb/translate/util/YangDAGTest.java b/infra/translate-utils/src/test/java/io/fd/honeycomb/translate/util/YangDAGTest.java new file mode 100644 index 000000000..1c8fb5442 --- /dev/null +++ b/infra/translate-utils/src/test/java/io/fd/honeycomb/translate/util/YangDAGTest.java @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2017 Cisco and/or its affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.fd.honeycomb.translate.util; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.util.Iterator; +import org.jgrapht.experimental.dag.DirectedAcyclicGraph; +import org.junit.Before; +import org.junit.Test; +import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; + +public class YangDAGTest { + + private static final InstanceIdentifier VERTEX_A = DataObjects.DataObject1.IID; + private static final InstanceIdentifier VERTEX_B = DataObjects.DataObject2.IID; + + private YangDAG dag; + + @Before + public void setUp() { + dag = new YangDAG(); + } + @Test + public void testAddVertex() { + dag.addVertex(VERTEX_A); + final Iterator> it = dag.iterator(); + assertEquals(VERTEX_A, it.next()); + assertFalse(it.hasNext()); + } + + @Test + public void testAddEdge() { + dag.addVertex(VERTEX_A); + dag.addVertex(VERTEX_B); + dag.addEdge(VERTEX_A, VERTEX_B); + final Iterator> it = dag.iterator(); + assertEquals(VERTEX_A, it.next()); + assertEquals(VERTEX_B, it.next()); + assertFalse(it.hasNext()); + } + + @Test + public void testAddCycleFails() { + dag.addVertex(VERTEX_A); + dag.addVertex(VERTEX_B); + dag.addEdge(VERTEX_A, VERTEX_B); + try { + dag.addEdge(VERTEX_B, VERTEX_A); + } catch (IllegalArgumentException e) { + assertTrue(e.getCause() instanceof DirectedAcyclicGraph.CycleFoundException); + } + } +} \ No newline at end of file -- cgit 1.2.3-korg