2015-08-05 17:47:02 +08:00
|
|
|
from nose.tools import assert_equal
|
|
|
|
|
|
|
|
|
|
|
|
class TestPathExists(object):
|
|
|
|
|
|
|
|
def test_path_exists(self):
|
|
|
|
nodes = []
|
2016-09-10 19:42:21 +08:00
|
|
|
graph = GraphPathExists()
|
2015-08-05 17:47:02 +08:00
|
|
|
for id in range(0, 6):
|
|
|
|
nodes.append(graph.add_node(id))
|
|
|
|
graph.add_edge(0, 1, 5)
|
|
|
|
graph.add_edge(0, 4, 3)
|
|
|
|
graph.add_edge(0, 5, 2)
|
|
|
|
graph.add_edge(1, 3, 5)
|
|
|
|
graph.add_edge(1, 4, 4)
|
|
|
|
graph.add_edge(2, 1, 6)
|
|
|
|
graph.add_edge(3, 2, 7)
|
|
|
|
graph.add_edge(3, 4, 8)
|
|
|
|
|
2016-09-10 19:42:21 +08:00
|
|
|
assert_equal(graph.path_exists(nodes[0], nodes[2]), True)
|
|
|
|
assert_equal(graph.path_exists(nodes[0], nodes[0]), True)
|
|
|
|
assert_equal(graph.path_exists(nodes[4], nodes[5]), False)
|
2015-08-05 17:47:02 +08:00
|
|
|
|
|
|
|
print('Success: test_path_exists')
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
test = TestPathExists()
|
|
|
|
test.test_path_exists()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|