forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBellmanFordTest.java
More file actions
137 lines (111 loc) · 4.52 KB
/
BellmanFordTest.java
File metadata and controls
137 lines (111 loc) · 4.52 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.thealgorithms.graph;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Test class for Bellman-Ford algorithm implementation
*/
class BellmanFordTest {
@Test
void testSimpleGraph() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 6));
edges.add(new BellmanFord.Edge(0, 2, 7));
edges.add(new BellmanFord.Edge(1, 2, 8));
edges.add(new BellmanFord.Edge(1, 3, 5));
edges.add(new BellmanFord.Edge(1, 4, -4));
edges.add(new BellmanFord.Edge(2, 3, -3));
edges.add(new BellmanFord.Edge(2, 4, 9));
edges.add(new BellmanFord.Edge(3, 1, -2));
edges.add(new BellmanFord.Edge(4, 0, 2));
edges.add(new BellmanFord.Edge(4, 3, 7));
BellmanFord.Result result = BellmanFord.findShortestPaths(5, edges, 0);
assertFalse(result.hasNegativeCycle());
assertArrayEquals(new int[] {0, 2, 7, 4, -2}, result.getDistances());
}
@Test
void testGraphWithNegativeCycle() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 1));
edges.add(new BellmanFord.Edge(1, 2, -3));
edges.add(new BellmanFord.Edge(2, 0, 1));
BellmanFord.Result result = BellmanFord.findShortestPaths(3, edges, 0);
assertTrue(result.hasNegativeCycle());
}
@Test
void testDisconnectedGraph() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 5));
edges.add(new BellmanFord.Edge(2, 3, 2));
BellmanFord.Result result = BellmanFord.findShortestPaths(4, edges, 0);
assertEquals(0, result.getDistance(0));
assertEquals(5, result.getDistance(1));
assertEquals(Integer.MAX_VALUE, result.getDistance(2));
assertEquals(Integer.MAX_VALUE, result.getDistance(3));
}
@Test
void testSingleVertex() {
List<BellmanFord.Edge> edges = new ArrayList<>();
BellmanFord.Result result = BellmanFord.findShortestPaths(1, edges, 0);
assertFalse(result.hasNegativeCycle());
assertArrayEquals(new int[] {0}, result.getDistances());
}
@Test
void testPathReconstruction() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 4));
edges.add(new BellmanFord.Edge(0, 2, 2));
edges.add(new BellmanFord.Edge(1, 2, 1));
edges.add(new BellmanFord.Edge(2, 3, 3));
BellmanFord.Result result = BellmanFord.findShortestPaths(4, edges, 0);
List<Integer> path = result.getPath(3);
assertNotNull(path);
assertEquals(Arrays.asList(0, 2, 3), path);
}
@Test
void testNegativeWeights() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 5));
edges.add(new BellmanFord.Edge(1, 2, -2));
edges.add(new BellmanFord.Edge(2, 3, 3));
BellmanFord.Result result = BellmanFord.findShortestPaths(4, edges, 0);
assertFalse(result.hasNegativeCycle());
assertEquals(0, result.getDistance(0));
assertEquals(5, result.getDistance(1));
assertEquals(3, result.getDistance(2));
assertEquals(6, result.getDistance(3));
}
@Test
void testInvalidSource() {
List<BellmanFord.Edge> edges = new ArrayList<>();
edges.add(new BellmanFord.Edge(0, 1, 5));
assertThrows(IllegalArgumentException.class, () -> {
BellmanFord.findShortestPaths(2, edges, -1);
});
assertThrows(IllegalArgumentException.class, () -> {
BellmanFord.findShortestPaths(2, edges, 2);
});
}
@Test
void testInvalidVertexCount() {
List<BellmanFord.Edge> edges = new ArrayList<>();
assertThrows(IllegalArgumentException.class, () -> {
BellmanFord.findShortestPaths(0, edges, 0);
});
assertThrows(IllegalArgumentException.class, () -> {
BellmanFord.findShortestPaths(-1, edges, 0);
});
}
@Test
void testNullEdges() {
assertThrows(NullPointerException.class, () -> {
BellmanFord.findShortestPaths(3, null, 0);
});
}
}