DirectedGraphTest.cpp
8.16 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
//===- llvm/unittest/ADT/DirectedGraphTest.cpp ------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file defines concrete derivations of the directed-graph base classes
// for testing purposes.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/DirectedGraph.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/SCCIterator.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "gtest/gtest.h"
namespace llvm {
//===--------------------------------------------------------------------===//
// Derived nodes, edges and graph types based on DirectedGraph.
//===--------------------------------------------------------------------===//
class DGTestNode;
class DGTestEdge;
using DGTestNodeBase = DGNode<DGTestNode, DGTestEdge>;
using DGTestEdgeBase = DGEdge<DGTestNode, DGTestEdge>;
using DGTestBase = DirectedGraph<DGTestNode, DGTestEdge>;
class DGTestNode : public DGTestNodeBase {
public:
DGTestNode() = default;
};
class DGTestEdge : public DGTestEdgeBase {
public:
DGTestEdge() = delete;
DGTestEdge(DGTestNode &N) : DGTestEdgeBase(N) {}
};
class DGTestGraph : public DGTestBase {
public:
DGTestGraph() = default;
~DGTestGraph(){};
};
using EdgeListTy = SmallVector<DGTestEdge *, 2>;
//===--------------------------------------------------------------------===//
// GraphTraits specializations for the DGTest
//===--------------------------------------------------------------------===//
template <> struct GraphTraits<DGTestNode *> {
using NodeRef = DGTestNode *;
static DGTestNode *DGTestGetTargetNode(DGEdge<DGTestNode, DGTestEdge> *P) {
return &P->getTargetNode();
}
// Provide a mapped iterator so that the GraphTrait-based implementations can
// find the target nodes without having to explicitly go through the edges.
using ChildIteratorType =
mapped_iterator<DGTestNode::iterator, decltype(&DGTestGetTargetNode)>;
using ChildEdgeIteratorType = DGTestNode::iterator;
static NodeRef getEntryNode(NodeRef N) { return N; }
static ChildIteratorType child_begin(NodeRef N) {
return ChildIteratorType(N->begin(), &DGTestGetTargetNode);
}
static ChildIteratorType child_end(NodeRef N) {
return ChildIteratorType(N->end(), &DGTestGetTargetNode);
}
static ChildEdgeIteratorType child_edge_begin(NodeRef N) {
return N->begin();
}
static ChildEdgeIteratorType child_edge_end(NodeRef N) { return N->end(); }
};
template <>
struct GraphTraits<DGTestGraph *> : public GraphTraits<DGTestNode *> {
using nodes_iterator = DGTestGraph::iterator;
static NodeRef getEntryNode(DGTestGraph *DG) { return *DG->begin(); }
static nodes_iterator nodes_begin(DGTestGraph *DG) { return DG->begin(); }
static nodes_iterator nodes_end(DGTestGraph *DG) { return DG->end(); }
};
//===--------------------------------------------------------------------===//
// Test various modification and query functions.
//===--------------------------------------------------------------------===//
TEST(DirectedGraphTest, AddAndConnectNodes) {
DGTestGraph DG;
DGTestNode N1, N2, N3;
DGTestEdge E1(N1), E2(N2), E3(N3);
// Check that new nodes can be added successfully.
EXPECT_TRUE(DG.addNode(N1));
EXPECT_TRUE(DG.addNode(N2));
EXPECT_TRUE(DG.addNode(N3));
// Check that duplicate nodes are not added to the graph.
EXPECT_FALSE(DG.addNode(N1));
// Check that nodes can be connected using valid edges with no errors.
EXPECT_TRUE(DG.connect(N1, N2, E2));
EXPECT_TRUE(DG.connect(N2, N3, E3));
EXPECT_TRUE(DG.connect(N3, N1, E1));
// The graph looks like this now:
//
// +---------------+
// v |
// N1 -> N2 -> N3 -+
// Check that already connected nodes with the given edge are not connected
// again (ie. edges are between nodes are not duplicated).
EXPECT_FALSE(DG.connect(N3, N1, E1));
// Check that there are 3 nodes in the graph.
EXPECT_TRUE(DG.size() == 3);
// Check that the added nodes can be found in the graph.
EXPECT_NE(DG.findNode(N3), DG.end());
// Check that nodes that are not part of the graph are not found.
DGTestNode N4;
EXPECT_EQ(DG.findNode(N4), DG.end());
// Check that findIncommingEdgesToNode works correctly.
EdgeListTy EL;
EXPECT_TRUE(DG.findIncomingEdgesToNode(N1, EL));
EXPECT_TRUE(EL.size() == 1);
EXPECT_EQ(*EL[0], E1);
}
TEST(DirectedGraphTest, AddRemoveEdge) {
DGTestGraph DG;
DGTestNode N1, N2, N3;
DGTestEdge E1(N1), E2(N2), E3(N3);
DG.addNode(N1);
DG.addNode(N2);
DG.addNode(N3);
DG.connect(N1, N2, E2);
DG.connect(N2, N3, E3);
DG.connect(N3, N1, E1);
// The graph looks like this now:
//
// +---------------+
// v |
// N1 -> N2 -> N3 -+
// Check that there are 3 nodes in the graph.
EXPECT_TRUE(DG.size() == 3);
// Check that the target nodes of the edges are correct.
EXPECT_EQ(E1.getTargetNode(), N1);
EXPECT_EQ(E2.getTargetNode(), N2);
EXPECT_EQ(E3.getTargetNode(), N3);
// Remove the edge from N1 to N2.
N1.removeEdge(E2);
// The graph looks like this now:
//
// N2 -> N3 -> N1
// Check that there are no incoming edges to N2.
EdgeListTy EL;
EXPECT_FALSE(DG.findIncomingEdgesToNode(N2, EL));
EXPECT_TRUE(EL.empty());
// Put the edge from N1 to N2 back in place.
N1.addEdge(E2);
// Check that E2 is the only incoming edge to N2.
EL.clear();
EXPECT_TRUE(DG.findIncomingEdgesToNode(N2, EL));
EXPECT_EQ(*EL[0], E2);
}
TEST(DirectedGraphTest, hasEdgeTo) {
DGTestGraph DG;
DGTestNode N1, N2, N3;
DGTestEdge E1(N1), E2(N2), E3(N3), E4(N1);
DG.addNode(N1);
DG.addNode(N2);
DG.addNode(N3);
DG.connect(N1, N2, E2);
DG.connect(N2, N3, E3);
DG.connect(N3, N1, E1);
DG.connect(N2, N1, E4);
// The graph looks like this now:
//
// +-----+
// v |
// N1 -> N2 -> N3
// ^ |
// +-----------+
EXPECT_TRUE(N2.hasEdgeTo(N1));
EXPECT_TRUE(N3.hasEdgeTo(N1));
}
TEST(DirectedGraphTest, AddRemoveNode) {
DGTestGraph DG;
DGTestNode N1, N2, N3;
DGTestEdge E1(N1), E2(N2), E3(N3);
DG.addNode(N1);
DG.addNode(N2);
DG.addNode(N3);
DG.connect(N1, N2, E2);
DG.connect(N2, N3, E3);
DG.connect(N3, N1, E1);
// The graph looks like this now:
//
// +---------------+
// v |
// N1 -> N2 -> N3 -+
// Check that there are 3 nodes in the graph.
EXPECT_TRUE(DG.size() == 3);
// Check that a node in the graph can be removed, but not more than once.
EXPECT_TRUE(DG.removeNode(N1));
EXPECT_EQ(DG.findNode(N1), DG.end());
EXPECT_FALSE(DG.removeNode(N1));
// The graph looks like this now:
//
// N2 -> N3
// Check that there are 2 nodes in the graph and only N2 is connected to N3.
EXPECT_TRUE(DG.size() == 2);
EXPECT_TRUE(N3.getEdges().empty());
EdgeListTy EL;
EXPECT_FALSE(DG.findIncomingEdgesToNode(N2, EL));
EXPECT_TRUE(EL.empty());
}
TEST(DirectedGraphTest, SCC) {
DGTestGraph DG;
DGTestNode N1, N2, N3, N4;
DGTestEdge E1(N1), E2(N2), E3(N3), E4(N4);
DG.addNode(N1);
DG.addNode(N2);
DG.addNode(N3);
DG.addNode(N4);
DG.connect(N1, N2, E2);
DG.connect(N2, N3, E3);
DG.connect(N3, N1, E1);
DG.connect(N3, N4, E4);
// The graph looks like this now:
//
// +---------------+
// v |
// N1 -> N2 -> N3 -+ N4
// | ^
// +--------+
// Test that there are two SCCs:
// 1. {N1, N2, N3}
// 2. {N4}
using NodeListTy = SmallPtrSet<DGTestNode *, 3>;
SmallVector<NodeListTy, 4> ListOfSCCs;
for (auto &SCC : make_range(scc_begin(&DG), scc_end(&DG)))
ListOfSCCs.push_back(NodeListTy(SCC.begin(), SCC.end()));
EXPECT_TRUE(ListOfSCCs.size() == 2);
for (auto &SCC : ListOfSCCs) {
if (SCC.size() > 1)
continue;
EXPECT_TRUE(SCC.size() == 1);
EXPECT_TRUE(SCC.count(&N4) == 1);
}
for (auto &SCC : ListOfSCCs) {
if (SCC.size() <= 1)
continue;
EXPECT_TRUE(SCC.size() == 3);
EXPECT_TRUE(SCC.count(&N1) == 1);
EXPECT_TRUE(SCC.count(&N2) == 1);
EXPECT_TRUE(SCC.count(&N3) == 1);
EXPECT_TRUE(SCC.count(&N4) == 0);
}
}
} // namespace llvm