aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo/container/di/componentgraph/cycle/CycleFinderTest.java
blob: 64ed53da09fa2094ac6e1e11ec38af9ce204433e (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// 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.CycleFinderTest.Vertices.A;
import static com.yahoo.container.di.componentgraph.cycle.CycleFinderTest.Vertices.B;
import static com.yahoo.container.di.componentgraph.cycle.CycleFinderTest.Vertices.C;
import static com.yahoo.container.di.componentgraph.cycle.CycleFinderTest.Vertices.D;
import static org.junit.jupiter.api.Assertions.assertTrue;

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

    enum Vertices {A, B, C, D}

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().isEmpty());
    }

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().containsAll(List.of(A, B, C, A)));
    }

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().containsAll(List.of(A, A)));
    }

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().containsAll(List.of(B, C, B)));
    }

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().containsAll(List.of(A, A)));
        assertTrue(cycleFinder.findCycle().containsAll(List.of(A, A)));
    }

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

        var cycleFinder = new CycleFinder<>(graph);
        assertTrue(cycleFinder.findCycle().isEmpty());
        assertTrue(cycleFinder.findCycle().isEmpty());
    }

}