blob: fa0d52229d34a4a117fde42e8394f9ff06e1c5e1 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
tom144de692014-08-29 11:38:44 -070016package org.onlab.graph;
17
18import org.junit.Test;
19
20import static com.google.common.collect.ImmutableSet.of;
tom144de692014-08-29 11:38:44 -070021
22/**
23 * Base for all graph search tests.
24 */
25public abstract class AbstractGraphPathSearchTest extends GraphTest {
26
27 /**
28 * Creates a test-specific graph search to exercise.
29 *
30 * @return graph search
31 */
32 protected abstract AbstractGraphPathSearch<TestVertex, TestEdge> graphSearch();
33
34 @Test(expected = IllegalArgumentException.class)
35 public void noSuchSourceArgument() {
36 graphSearch().search(new AdjacencyListsGraph<>(of(B, C),
Andrey Komarov2398d962016-09-26 15:11:23 +030037 of(new TestEdge(B, C))),
38 A, H, weigher, 1);
tom144de692014-08-29 11:38:44 -070039 }
40
41 @Test(expected = NullPointerException.class)
42 public void nullGraphArgument() {
Andrey Komarov2398d962016-09-26 15:11:23 +030043 graphSearch().search(null, A, H, weigher, 1);
tom144de692014-08-29 11:38:44 -070044 }
45
46 @Test(expected = NullPointerException.class)
47 public void nullSourceArgument() {
48 graphSearch().search(new AdjacencyListsGraph<>(of(B, C),
Andrey Komarov2398d962016-09-26 15:11:23 +030049 of(new TestEdge(B, C))),
50 null, H, weigher, 1);
tom144de692014-08-29 11:38:44 -070051 }
tom144de692014-08-29 11:38:44 -070052}