-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtest_all.py
365 lines (276 loc) · 13.1 KB
/
test_all.py
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
import unittest
from tests.utils import base
import redis
from redisgraph import Node, Edge, Graph, Path
class TestStringMethods(base.TestCase):
def setUp(self):
super().setUp()
self.r = redis.Redis(host='localhost', port=6379, decode_responses=True)
def test_graph_creation(self):
redis_graph = Graph('social', self.r)
john = Node(label='person', properties={'name': 'John Doe', 'age': 33, 'gender': 'male', 'status': 'single'})
redis_graph.add_node(john)
japan = Node(label='country', properties={'name': 'Japan'})
redis_graph.add_node(japan)
edge = Edge(john, 'visited', japan, properties={'purpose': 'pleasure'})
redis_graph.add_edge(edge)
redis_graph.commit()
query = (
'MATCH (p:person)-[v:visited {purpose:"pleasure"}]->(c:country) '
'RETURN p, v, c')
result = redis_graph.query(query)
person = result.result_set[0][0]
visit = result.result_set[0][1]
country = result.result_set[0][2]
self.assertEqual(person, john)
self.assertEqual(visit.properties, edge.properties)
self.assertEqual(country, japan)
query = """RETURN [1, 2.3, "4", true, false, null]"""
result = redis_graph.query(query)
self.assertEqual([1, 2.3, "4", True, False, None], result.result_set[0][0])
# All done, remove graph.
redis_graph.delete()
def test_array_functions(self):
redis_graph = Graph('social', self.r)
query = """CREATE (p:person{name:'a',age:32, array:[0,1,2]})"""
redis_graph.query(query)
query = """WITH [0,1,2] as x return x"""
result = redis_graph.query(query)
self.assertEqual([0, 1, 2], result.result_set[0][0])
query = """MATCH(n) return collect(n)"""
result = redis_graph.query(query)
a = Node(node_id=0, label='person', properties={'name': 'a', 'age': 32, 'array': [0, 1, 2]})
self.assertEqual([a], result.result_set[0][0])
# All done, remove graph.
redis_graph.delete()
def test_path(self):
redis_graph = Graph('social', self.r)
node0 = Node(node_id=0, label="L1")
node1 = Node(node_id=1, label="L1")
edge01 = Edge(node0, "R1", node1, edge_id=0, properties={'value': 1})
redis_graph.add_node(node0)
redis_graph.add_node(node1)
redis_graph.add_edge(edge01)
redis_graph.flush()
path01 = Path.new_empty_path().add_node(node0).add_edge(edge01).add_node(node1)
expected_results = [[path01]]
query = "MATCH p=(:L1)-[:R1]->(:L1) RETURN p ORDER BY p"
result = redis_graph.query(query)
self.assertEqual(expected_results, result.result_set)
# All done, remove graph.
redis_graph.delete()
def test_param(self):
redis_graph = Graph('params', self.r)
params = [1, 2.3, "str", True, False, None, [0, 1, 2]]
query = "RETURN $param"
for param in params:
result = redis_graph.query(query, {'param': param})
expected_results = [[param]]
self.assertEqual(expected_results, result.result_set)
# All done, remove graph.
redis_graph.delete()
def test_map(self):
redis_graph = Graph('map', self.r)
query = "RETURN {a:1, b:'str', c:NULL, d:[1,2,3], e:True, f:{x:1, y:2}}"
actual = redis_graph.query(query).result_set[0][0]
expected = {'a': 1, 'b': 'str', 'c': None, 'd': [1, 2, 3], 'e': True, 'f': {'x': 1, 'y': 2}}
self.assertEqual(actual, expected)
# All done, remove graph.
redis_graph.delete()
def test_point(self):
redis_graph = Graph('map', self.r)
query = "RETURN point({latitude: 32.070794860, longitude: 34.820751118})"
expected_lat = 32.070794860
expected_lon = 34.820751118
actual = redis_graph.query(query).result_set[0][0]
self.assertTrue(abs(actual['latitude'] - expected_lat) < 0.001)
self.assertTrue(abs(actual['longitude'] - expected_lon) < 0.001)
query = "RETURN point({latitude: 32, longitude: 34.0})"
expected_lat = 32
expected_lon = 34
actual = redis_graph.query(query).result_set[0][0]
self.assertTrue(abs(actual['latitude'] - expected_lat) < 0.001)
self.assertTrue(abs(actual['longitude'] - expected_lon) < 0.001)
# All done, remove graph.
redis_graph.delete()
def test_index_response(self):
redis_graph = Graph('social', self.r)
result_set = redis_graph.query("CREATE INDEX ON :person(age)")
self.assertEqual(1, result_set.indices_created)
result_set = redis_graph.query("CREATE INDEX ON :person(age)")
self.assertEqual(0, result_set.indices_created)
result_set = redis_graph.query("DROP INDEX ON :person(age)")
self.assertEqual(1, result_set.indices_deleted)
try:
result_set = redis_graph.query("DROP INDEX ON :person(age)")
except redis.exceptions.ResponseError as e:
self.assertEqual(e.__str__(), "Unable to drop index on :person(age): no such index.")
redis_graph.delete()
def test_stringify_query_result(self):
redis_graph = Graph('stringify', self.r)
john = Node(alias='a', label='person',
properties={'name': 'John Doe', 'age': 33, 'gender': 'male', 'status': 'single'})
redis_graph.add_node(john)
japan = Node(alias='b', label='country', properties={'name': 'Japan'})
redis_graph.add_node(japan)
edge = Edge(john, 'visited', japan, properties={'purpose': 'pleasure'})
redis_graph.add_edge(edge)
self.assertEqual(str(john),
"""(a:person{age:33,gender:"male",name:"John Doe",status:"single"})""")
self.assertEqual(str(edge),
"""(a:person{age:33,gender:"male",name:"John Doe",status:"single"})""" +
"""-[:visited{purpose:"pleasure"}]->""" +
"""(b:country{name:"Japan"})""")
self.assertEqual(str(japan), """(b:country{name:"Japan"})""")
redis_graph.commit()
query = """MATCH (p:person)-[v:visited {purpose:"pleasure"}]->(c:country)
RETURN p, v, c"""
result = redis_graph.query(query)
person = result.result_set[0][0]
visit = result.result_set[0][1]
country = result.result_set[0][2]
self.assertEqual(str(person), """(:person{age:33,gender:"male",name:"John Doe",status:"single"})""")
self.assertEqual(str(visit), """()-[:visited{purpose:"pleasure"}]->()""")
self.assertEqual(str(country), """(:country{name:"Japan"})""")
redis_graph.delete()
def test_optional_match(self):
redis_graph = Graph('optional', self.r)
# Build a graph of form (a)-[R]->(b)
node0 = Node(node_id=0, label="L1", properties={'value': 'a'})
node1 = Node(node_id=1, label="L1", properties={'value': 'b'})
edge01 = Edge(node0, "R", node1, edge_id=0)
redis_graph.add_node(node0)
redis_graph.add_node(node1)
redis_graph.add_edge(edge01)
redis_graph.flush()
# Issue a query that collects all outgoing edges from both nodes (the second has none).
query = """MATCH (a) OPTIONAL MATCH (a)-[e]->(b) RETURN a, e, b ORDER BY a.value"""
expected_results = [[node0, edge01, node1],
[node1, None, None]]
result = redis_graph.query(query)
self.assertEqual(expected_results, result.result_set)
redis_graph.delete()
def test_cached_execution(self):
redis_graph = Graph('cached', self.r)
redis_graph.query("CREATE ()")
uncached_result = redis_graph.query("MATCH (n) RETURN n, $param", {'param': [0]})
self.assertFalse(uncached_result.cached_execution)
# loop to make sure the query is cached on each thread on server
for x in range(0, 64):
cached_result = redis_graph.query("MATCH (n) RETURN n, $param", {'param': [0]})
self.assertEqual(uncached_result.result_set, cached_result.result_set)
# should be cached on all threads by now
self.assertTrue(cached_result.cached_execution)
redis_graph.delete()
def test_execution_plan(self):
redis_graph = Graph('execution_plan', self.r)
create_query = """CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
redis_graph.query(create_query)
result = redis_graph.execution_plan("MATCH (r:Rider)-[:rides]->(t:Team) WHERE t.name = $name RETURN r.name, t.name, $params", {'name': 'Yehuda'})
expected = "Results\n Project\n Conditional Traverse | (t:Team)->(r:Rider)\n Filter\n Node By Label Scan | (t:Team)"
self.assertEqual(result, expected)
redis_graph.delete()
def test_query_timeout(self):
redis_graph = Graph('timeout', self.r)
# Build a sample graph with 1000 nodes.
redis_graph.query("UNWIND range(0,1000) as val CREATE ({v: val})")
# Issue a long-running query with a 1-millisecond timeout.
try:
redis_graph.query("MATCH (a), (b), (c), (d) RETURN *", timeout=1)
assert(False)
except redis.exceptions.ResponseError as e:
assert("Query timed out" in e.args)
# Expecting an error.
pass
try:
redis_graph.query("RETURN 1", timeout="str")
assert(False)
except Exception as e:
assert("Timeout argument must be a positive integer" in e.args)
# Expecting an error.
pass
def test_read_only_query(self):
redis_graph = Graph('read_only', self.r)
try:
# Issue a write query, specifying read-only true, this call should fail.
redis_graph.query("CREATE (p:person {name:'a'})", read_only=True)
assert(False)
except Exception:
# Expecting an error.
pass
def test_cache_sync(self):
pass
return
# This test verifies that client internal graph schema cache stays
# in sync with the graph schema
#
# Client B will try to get Client A out of sync by:
# 1. deleting the graph
# 2. reconstructing the graph in a different order, this will casuse
# a differance in the current mapping between string IDs and the
# mapping Client A is aware of
#
# Client A should pick up on the changes by comparing graph versions
# and resyncing its cache.
A = Graph('cache-sync', self.r)
B = Graph('cache-sync', self.r)
# Build order:
# 1. introduce label 'L' and 'K'
# 2. introduce attribute 'x' and 'q'
# 3. introduce relationship-type 'R' and 'S'
A.query("CREATE (:L)")
B.query("CREATE (:K)")
A.query("MATCH (n) SET n.x = 1")
B.query("MATCH (n) SET n.q = 1")
A.query("MATCH (n) CREATE (n)-[:R]->()")
B.query("MATCH (n) CREATE (n)-[:S]->()")
# Cause client A to populate its cache
A.query("MATCH (n)-[e]->() RETURN n, e")
assert(len(A._labels) == 2)
assert(len(A._properties) == 2)
assert(len(A._relationshipTypes) == 2)
assert(A._labels[0] == 'L')
assert(A._labels[1] == 'K')
assert(A._properties[0] == 'x')
assert(A._properties[1] == 'q')
assert(A._relationshipTypes[0] == 'R')
assert(A._relationshipTypes[1] == 'S')
# Have client B reconstruct the graph in a different order.
B.delete()
# Build order:
# 1. introduce relationship-type 'R'
# 2. introduce label 'L'
# 3. introduce attribute 'x'
B.query("CREATE ()-[:S]->()")
B.query("CREATE ()-[:R]->()")
B.query("CREATE (:K)")
B.query("CREATE (:L)")
B.query("MATCH (n) SET n.q = 1")
B.query("MATCH (n) SET n.x = 1")
# A's internal cached mapping is now out of sync
# issue a query and make sure A's cache is synced.
A.query("MATCH (n)-[e]->() RETURN n, e")
assert(len(A._labels) == 2)
assert(len(A._properties) == 2)
assert(len(A._relationshipTypes) == 2)
assert(A._labels[0] == 'K')
assert(A._labels[1] == 'L')
assert(A._properties[0] == 'q')
assert(A._properties[1] == 'x')
assert(A._relationshipTypes[0] == 'S')
assert(A._relationshipTypes[1] == 'R')
def test_metadata(self):
A = Graph('metadata', self.r)
# Since this query modifies schemas and returns data, it should
# update all graph metadata in a single call.
A.query("CREATE (l:L {v: 1}) RETURN l")
assert(len(A._labels) == 1)
assert(len(A._properties) == 1)
assert(len(A._relationshipTypes) == 0)
assert(A._labels[0] == 'L')
assert(A._properties[0] == 'v')
assert(A.version != 0)
if __name__ == '__main__':
unittest.main()