blob: 202295244b6a4b07ae563c315aea84fb149470f4 [file] [log] [blame]
/*
* Copyright (C) 2015 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.graph.TestUtil.ERROR_ELEMENT_NOT_IN_GRAPH;
import static com.google.common.truth.Truth.assertWithMessage;
import com.google.common.testing.AbstractPackageSanityTests;
import junit.framework.AssertionFailedError;
/**
* Covers basic sanity checks for the entire package.
*
* @author Kurt Alfred Kluever
*/
public class PackageSanityTests extends AbstractPackageSanityTests {
private static final AbstractGraphBuilder<?> GRAPH_BUILDER_A =
GraphBuilder.directed().expectedNodeCount(10);
private static final AbstractGraphBuilder<?> GRAPH_BUILDER_B =
ValueGraphBuilder.directed().allowsSelfLoops(true).expectedNodeCount(16);
private static final ImmutableGraph<String> IMMUTABLE_GRAPH_A = graphWithNode("A");
private static final ImmutableGraph<String> IMMUTABLE_GRAPH_B = graphWithNode("B");
private static final NetworkBuilder<?, ?> NETWORK_BUILDER_A =
NetworkBuilder.directed().allowsParallelEdges(true).expectedNodeCount(10);
private static final NetworkBuilder<?, ?> NETWORK_BUILDER_B =
NetworkBuilder.directed().allowsSelfLoops(true).expectedNodeCount(16);
private static final ImmutableNetwork<String, String> IMMUTABLE_NETWORK_A = networkWithNode("A");
private static final ImmutableNetwork<String, String> IMMUTABLE_NETWORK_B = networkWithNode("B");
public PackageSanityTests() {
setDistinctValues(AbstractGraphBuilder.class, GRAPH_BUILDER_A, GRAPH_BUILDER_B);
setDistinctValues(Graph.class, IMMUTABLE_GRAPH_A, IMMUTABLE_GRAPH_B);
setDistinctValues(NetworkBuilder.class, NETWORK_BUILDER_A, NETWORK_BUILDER_B);
setDistinctValues(Network.class, IMMUTABLE_NETWORK_A, IMMUTABLE_NETWORK_B);
setDefault(EndpointPair.class, EndpointPair.ordered("A", "B"));
}
@Override
public void testNulls() throws Exception {
try {
super.testNulls();
} catch (AssertionFailedError e) {
assertWithMessage("Method did not throw null pointer OR element not in graph exception.")
.that(e)
.hasCauseThat()
.hasMessageThat()
.contains(ERROR_ELEMENT_NOT_IN_GRAPH);
}
}
private static <N> ImmutableGraph<N> graphWithNode(N node) {
MutableGraph<N> graph = GraphBuilder.directed().build();
graph.addNode(node);
return ImmutableGraph.copyOf(graph);
}
private static <N> ImmutableNetwork<N, N> networkWithNode(N node) {
MutableNetwork<N, N> network = NetworkBuilder.directed().build();
network.addNode(node);
return ImmutableNetwork.copyOf(network);
}
}