aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo/container/di/componentgraph/cycle/GraphTest.java
blob: 11b58b55bade4bd9adb2968a936ce817ac53d4f7 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.container.di.componentgraph.cycle;

import org.junit.jupiter.api.Test;

import java.util.List;

import static com.yahoo.container.di.componentgraph.cycle.GraphTest.Vertices.A;
import static com.yahoo.container.di.componentgraph.cycle.GraphTest.Vertices.B;
import static com.yahoo.container.di.componentgraph.cycle.GraphTest.Vertices.C;
import static org.junit.jupiter.api.Assertions.*;

/**
 * @author gjoranv
 */
public class GraphTest {

    enum Vertices {A, B, C}

    @Test
    void vertices_and_edges_are_added_and_can_be_retrieved() {
        var graph = new Graph<Vertices>();
        graph.edge(A, B);
        graph.edge(B, C);
        graph.edge(A, C);

        assertEquals(3, graph.getVertices().size());
        assertTrue(graph.getAdjacent(A).containsAll(List.of(B, C)));
        assertTrue(graph.getAdjacent(B).contains(C));
        assertTrue(graph.getAdjacent(C).isEmpty());
    }

    @Test
    void null_vertices_are_not_allowed() {
        var graph = new Graph<Vertices>();

        try {
            graph.edge(A, null);
            fail();
        } catch (IllegalArgumentException e) {
            assertEquals("Null vertices are not allowed, edge: A->null", e.getMessage());
        }
    }

    @Test
    void duplicate_edges_are_ignored() {
        var graph = new Graph<Vertices>();
        graph.edge(A, B);
        graph.edge(A, B);

        assertEquals(1, graph.getAdjacent(A).size());
    }

    @Test
    void self_edges_are_allowed() {
        var graph = new Graph<Vertices>();
        graph.edge(A, A);

        assertTrue(graph.getAdjacent(A).contains(A));
    }

}