summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_data_structures/src/graph/vec_graph/tests.rs
blob: c8f979267170f8227377130b9b5309e73b0b21b2 (plain)
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
use super::*;

fn create_graph() -> VecGraph<usize> {
    // Create a simple graph
    //
    //          5
    //          |
    //          V
    //    0 --> 1 --> 2
    //          |
    //          v
    //          3 --> 4
    //
    //    6

    VecGraph::new(7, vec![(0, 1), (1, 2), (1, 3), (3, 4), (5, 1)])
}

#[test]
fn num_nodes() {
    let graph = create_graph();
    assert_eq!(graph.num_nodes(), 7);
}

#[test]
fn successors() {
    let graph = create_graph();
    assert_eq!(graph.successors(0), &[1]);
    assert_eq!(graph.successors(1), &[2, 3]);
    assert_eq!(graph.successors(2), &[]);
    assert_eq!(graph.successors(3), &[4]);
    assert_eq!(graph.successors(4), &[]);
    assert_eq!(graph.successors(5), &[1]);
    assert_eq!(graph.successors(6), &[]);
}

#[test]
fn dfs() {
    let graph = create_graph();
    let dfs: Vec<_> = graph.depth_first_search(0).collect();
    assert_eq!(dfs, vec![0, 1, 3, 4, 2]);
}