1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/* ==========================================
* JGraphT : a free Java graph-theory library
* ==========================================
*
* Project Info: http://jgrapht.sourceforge.net/
* Project Creator: Barak Naveh (http://sourceforge.net/users/barak_naveh)
*
* (C) Copyright 2003-2008, by Barak Naveh and Contributors.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
/* ------------------------------
* AbstractGraphIteratorTest.java
* ------------------------------
* (C) Copyright 2003-2008, by Liviu Rau and Contributors.
*
* Original Author: Liviu Rau
* Contributor(s): Barak Naveh
*
* $Id: AbstractGraphIteratorTest.java 645 2008-09-30 19:44:48Z perfecthash $
*
* Changes
* -------
* 30-Jul-2003 : Initial revision (LR);
* 06-Aug-2003 : Test traversal listener & extract a shared superclass (BN);
*
*/
package org.jgrapht.traverse;
import org.jgrapht.*;
import org.jgrapht.event.*;
import org.jgrapht.graph.*;
/**
* A basis for testing {@link org.jgrapht.traverse.BreadthFirstIterator} and
* {@link org.jgrapht.traverse.DepthFirstIterator} classes.
*
* @author Liviu Rau
* @since Jul 30, 2003
*/
public abstract class AbstractGraphIteratorTest
extends EnhancedTestCase
{
//~ Instance fields --------------------------------------------------------
StringBuffer result;
//~ Methods ----------------------------------------------------------------
/**
* .
*/
public void testDirectedGraph()
{
result = new StringBuffer();
DirectedGraph<String, DefaultEdge> graph = createDirectedGraph();
AbstractGraphIterator<String, DefaultEdge> iterator =
createIterator(graph, "1");
MyTraversalListener listener = new MyTraversalListener();
iterator.addTraversalListener(listener);
while (iterator.hasNext()) {
result.append(iterator.next());
if (iterator.hasNext()) {
result.append(',');
}
}
assertEquals(getExpectedStr2(), result.toString());
assertEquals(getExpectedFinishString(), listener.getFinishString());
}
abstract String getExpectedStr1();
abstract String getExpectedStr2();
String getExpectedFinishString()
{
return "";
}
DirectedGraph<String, DefaultEdge> createDirectedGraph()
{
DirectedGraph<String, DefaultEdge> graph =
new DefaultDirectedWeightedGraph<String, DefaultEdge>(
DefaultWeightedEdge.class);
//
String v1 = "1";
String v2 = "2";
String v3 = "3";
String v4 = "4";
String v5 = "5";
String v6 = "6";
String v7 = "7";
String v8 = "8";
String v9 = "9";
graph.addVertex(v1);
graph.addVertex(v2);
graph.addVertex("3");
graph.addVertex("4");
graph.addVertex("5");
graph.addVertex("6");
graph.addVertex("7");
graph.addVertex("8");
graph.addVertex("9");
graph.addVertex("orphan");
// NOTE: set weights on some of the edges to test traversals like
// ClosestFirstIterator where it matters. For other traversals, it
// will be ignored. Rely on the default edge weight being 1.
graph.addEdge(v1, v2);
Graphs.addEdge(graph, v1, v3, 100);
Graphs.addEdge(graph, v2, v4, 1000);
graph.addEdge(v3, v5);
Graphs.addEdge(graph, v3, v6, 100);
graph.addEdge(v5, v6);
Graphs.addEdge(graph, v5, v7, 200);
graph.addEdge(v6, v1);
Graphs.addEdge(graph, v7, v8, 100);
graph.addEdge(v7, v9);
graph.addEdge(v8, v2);
graph.addEdge(v9, v4);
return graph;
}
abstract AbstractGraphIterator<String, DefaultEdge> createIterator(
DirectedGraph<String, DefaultEdge> g,
String startVertex);
//~ Inner Classes ----------------------------------------------------------
/**
* Internal traversal listener.
*
* @author Barak Naveh
*/
private class MyTraversalListener
implements TraversalListener<String, DefaultEdge>
{
private int componentNumber = 0;
private int numComponentVertices = 0;
private String finishString = "";
/**
* @see TraversalListener#connectedComponentFinished(ConnectedComponentTraversalEvent)
*/
public void connectedComponentFinished(
ConnectedComponentTraversalEvent e)
{
switch (componentNumber) {
case 1:
assertEquals(getExpectedStr1(), result.toString());
assertEquals(9, numComponentVertices);
break;
case 2:
assertEquals(getExpectedStr2(), result.toString());
assertEquals(1, numComponentVertices);
break;
default:
assertFalse();
break;
}
numComponentVertices = 0;
}
/**
* @see TraversalListener#connectedComponentStarted(ConnectedComponentTraversalEvent)
*/
public void connectedComponentStarted(
ConnectedComponentTraversalEvent e)
{
componentNumber++;
}
/**
* @see TraversalListener#edgeTraversed(EdgeTraversalEvent)
*/
public void edgeTraversed(EdgeTraversalEvent<String, DefaultEdge> e)
{
// to be tested...
}
/**
* @see TraversalListener#vertexTraversed(VertexTraversalEvent)
*/
public void vertexTraversed(VertexTraversalEvent<String> e)
{
numComponentVertices++;
}
/**
* @see TraversalListener#vertexTraversed(VertexTraversalEvent)
*/
public void vertexFinished(VertexTraversalEvent<String> e)
{
finishString += e.getVertex() + ":";
}
public String getFinishString()
{
return finishString;
}
}
}
// End AbstractGraphIteratorTest.java
|