|
Java example source code file (AbstractUndirectedNetworkTest.java)
The AbstractUndirectedNetworkTest.java Java example source code
/*
* Copyright (C) 2014 The Guava Authors
*
* 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 com.google.common.graph;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import com.google.common.collect.ImmutableSet;
import com.google.common.testing.EqualsTester;
import org.junit.After;
import org.junit.Test;
/**
* Abstract base class for testing undirected implementations of the {@link Network} interface.
*
* <p>This class is responsible for testing that an undirected implementation of {@link Network}
* is correctly handling undirected edges. Implementation-dependent test cases are left to
* subclasses. Test cases that do not require the graph to be undirected are found in superclasses.
*/
public abstract class AbstractUndirectedNetworkTest extends AbstractNetworkTest {
@After
public void validateUndirectedEdges() {
for (Integer node : graph.nodes()) {
new EqualsTester()
.addEqualityGroup(graph.inEdges(node), graph.outEdges(node), graph.incidentEdges(node))
.testEquals();
new EqualsTester()
.addEqualityGroup(graph.predecessors(node), graph.successors(node),
graph.adjacentNodes(node))
.testEquals();
for (Integer adjacentNode : graph.adjacentNodes(node)) {
assertThat(graph.edgesConnecting(node, adjacentNode))
.containsExactlyElementsIn(graph.edgesConnecting(adjacentNode, node));
}
}
}
@Test
public void edgesConnecting_oneEdge() {
addEdge(E12, N1, N2);
assertThat(graph.edgesConnecting(N1, N2)).containsExactly(E12);
assertThat(graph.edgesConnecting(N2, N1)).containsExactly(E12);
}
@Test
public void inEdges_oneEdge() {
addEdge(E12, N1, N2);
assertThat(graph.inEdges(N2)).containsExactly(E12);
assertThat(graph.inEdges(N1)).containsExactly(E12);
}
@Test
public void outEdges_oneEdge() {
addEdge(E12, N1, N2);
assertThat(graph.outEdges(N2)).containsExactly(E12);
assertThat(graph.outEdges(N1)).containsExactly(E12);
}
@Test
public void predecessors_oneEdge() {
addEdge(E12, N1, N2);
assertThat(graph.predecessors(N2)).containsExactly(N1);
assertThat(graph.predecessors(N1)).containsExactly(N2);
}
@Test
public void successors_oneEdge() {
addEdge(E12, N1, N2);
assertThat(graph.successors(N1)).containsExactly(N2);
assertThat(graph.successors(N2)).containsExactly(N1);
}
@Test
public void inDegree_oneEdge() {
addEdge(E12, N1, N2);
assertEquals(1, graph.inDegree(N2));
assertEquals(1, graph.inDegree(N1));
}
@Test
public void outDegree_oneEdge() {
addEdge(E12, N1, N2);
assertEquals(1, graph.outDegree(N1));
assertEquals(1, graph.outDegree(N2));
}
// Element Mutation
@Test
public void addEdge_existingNodes() {
// Adding nodes initially for safety (insulating from possible future
// modifications to proxy methods)
addNode(N1);
addNode(N2);
assertTrue(addEdge(E12, N1, N2));
assertThat(graph.edges()).contains(E12);
assertThat(graph.edgesConnecting(N1, N2)).containsExactly(E12);
assertThat(graph.edgesConnecting(N2, N1)).containsExactly(E12);
}
@Test
public void addEdge_existingEdgeBetweenSameNodes() {
addEdge(E12, N1, N2);
ImmutableSet<String> edges = ImmutableSet.copyOf(graph.edges());
assertFalse(addEdge(E12, N1, N2));
assertThat(graph.edges()).containsExactlyElementsIn(edges);
assertFalse(addEdge(E12, N2, N1));
assertThat(graph.edges()).containsExactlyElementsIn(edges);
}
@Test
public void addEdge_existingEdgeBetweenDifferentNodes() {
addEdge(E12, N1, N2);
try {
// Edge between totally different nodes
addEdge(E12, N4, N5);
fail(ERROR_ADDED_EXISTING_EDGE);
} catch (IllegalArgumentException e) {
assertThat(e.getMessage()).contains(ERROR_REUSE_EDGE);
}
}
@Test
public void addEdge_parallelEdge() {
addEdge(E12, N1, N2);
try {
addEdge(EDGE_NOT_IN_GRAPH, N1, N2);
fail(ERROR_ADDED_PARALLEL_EDGE);
} catch (IllegalArgumentException e) {
assertThat(e.getMessage()).contains(ERROR_PARALLEL_EDGE);
}
try {
addEdge(EDGE_NOT_IN_GRAPH, N2, N1);
fail(ERROR_ADDED_PARALLEL_EDGE);
} catch (IllegalArgumentException e) {
assertThat(e.getMessage()).contains(ERROR_PARALLEL_EDGE);
}
}
@Test
public void removeEdge_existingEdge() {
addEdge(E12, N1, N2);
assertTrue(graph.removeEdge(E12));
assertThat(graph.edges()).doesNotContain(E12);
assertThat(graph.edgesConnecting(N1, N2)).isEmpty();
assertThat(graph.edgesConnecting(N2, N1)).isEmpty();
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java AbstractUndirectedNetworkTest.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.