This repository was archived by the owner on Mar 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdot_dsl_test.py
More file actions
121 lines (96 loc) · 3.27 KB
/
Copy pathdot_dsl_test.py
File metadata and controls
121 lines (96 loc) · 3.27 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
import unittest
from dot_dsl import Graph, Node, Edge, NODE, EDGE, ATTR
class DotDslTest(unittest.TestCase):
def test_empty_graph(self):
g = Graph()
self.assertEqual(g.nodes, [])
self.assertEqual(g.edges, [])
self.assertEqual(g.attrs, {})
def test_graph_with_one_node(self):
g = Graph([
(NODE, "a", {})
])
self.assertEqual(g.nodes, [Node("a", {})])
self.assertEqual(g.edges, [])
self.assertEqual(g.attrs, {})
def test_graph_with_one_node_with_keywords(self):
g = Graph([
(NODE, "a", {"color": "green"})
])
self.assertEqual(g.nodes, [Node("a", {"color": "green"})])
self.assertEqual(g.edges, [])
self.assertEqual(g.attrs, {})
def test_graph_with_one_edge(self):
g = Graph([
(EDGE, "a", "b", {})
])
self.assertEqual(g.nodes, [])
self.assertEqual(g.edges, [Edge("a", "b", {})])
self.assertEqual(g.attrs, {})
def test_graph_with_one_attribute(self):
g = Graph([
(ATTR, "foo", "1")
])
self.assertEqual(g.nodes, [])
self.assertEqual(g.edges, [])
self.assertEqual(g.attrs, {"foo": "1"})
def test_graph_with_attributes(self):
g = Graph([
(ATTR, "foo", "1"),
(ATTR, "title", "Testing Attrs"),
(NODE, "a", {"color": "green"}),
(NODE, "c", {}),
(NODE, "b", {"label": "Beta!"}),
(EDGE, "b", "c", {}),
(EDGE, "a", "b", {"color": "blue"}),
(ATTR, "bar", "true")
])
self.assertEqual(g.nodes, [Node("a", {"color": "green"}),
Node("c", {}),
Node("b", {"label": "Beta!"})])
self.assertEqual(g.edges, [Edge("b", "c", {}),
Edge("a", "b", {"color": "blue"})])
self.assertEqual(g.attrs, {
"foo": "1",
"title": "Testing Attrs",
"bar": "true"
})
def test_malformed_graph(self):
with self.assertRaisesWithMessage(TypeError):
Graph(1)
with self.assertRaisesWithMessage(TypeError):
Graph("problematic")
def test_malformed_graph_item(self):
with self.assertRaisesWithMessage(TypeError):
Graph([
()
])
with self.assertRaisesWithMessage(TypeError):
Graph([
(ATTR, )
])
def test_malformed_attr(self):
with self.assertRaisesWithMessage(ValueError):
Graph([
(ATTR, 1, 2, 3)
])
def test_malformed_node(self):
with self.assertRaisesWithMessage(ValueError):
Graph([
(NODE, 1, 2, 3)
])
def test_malformed_EDGE(self):
with self.assertRaisesWithMessage(ValueError):
Graph([
(EDGE, 1, 2)
])
def test_unknown_item(self):
with self.assertRaisesWithMessage(ValueError):
Graph([
(99, 1, 2)
])
# Utility methods
def assertRaisesWithMessage(self, exception):
return self.assertRaisesRegex(exception, r".+")
if __name__ == '__main__':
unittest.main()