forked from NationalSecurityAgency/lemongraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
397 lines (330 loc) · 13 KB
/
test.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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import os
import tempfile
import unittest
from LemonGraph import Graph, Serializer, dirlist, Query
node = lambda i: dict((k, Nodes[i][k]) for k in ('type', 'value'))
edge = lambda i: dict((k, Edges[i][k]) for k in ('type', 'value', 'src', 'tgt'))
Nodes = [
{'type': 'foo', 'value': 'bar', 'properties': {'np1k': 'np1v'}},
{'type': 'foo', 'value': 'baz', 'properties': {'np2k': 'np2v'}},
{'type': 'goo', 'value': 'gaz', 'properties': {'np3k': 'np3v'}},
]
Edges = [
{'src': node(0), 'tgt': node(1), 'type': 'edge', 'value': 'e1'},
{'src': node(1), 'tgt': node(2), 'type': 'edge2', 'value': 'e2'},
]
def load_data(txn):
for obj in Nodes:
txn.node(**obj)
for obj in Edges:
cpy = {}
cpy.update(obj)
cpy['src'] = txn.node(**cpy['src'])
cpy['tgt'] = txn.node(**cpy['tgt'])
txn.edge(**cpy)
class TestGraph(unittest.TestCase):
# each test_foo() method is wrapped w/ setup/teardown around it, so each test has a fresh graph
def setUp(self):
fd, path = tempfile.mkstemp()
os.close(fd)
self.g = Graph(path)
def tearDown(self):
self.g.delete()
def test_commit(self):
with self.g.transaction(write=True) as txn:
self.assertEqual(txn.nextID, 1)
txn.node(type='foo', value='bar')
self.assertEqual(txn.nextID, 2)
txn.commit()
# should never reach this
self.assertTrue(False)
with self.g.transaction(write=False) as txn:
self.assertEqual(txn.nextID, 2)
def test_abort(self):
with self.g.transaction(write=True) as txn:
self.assertEqual(txn.nextID, 1)
txn.node(type='foo', value='bar')
self.assertEqual(txn.nextID, 2)
txn.abort()
# should never reach this
self.assertTrue(False)
with self.g.transaction(write=False) as txn:
self.assertEqual(txn.nextID, 1)
def test_load_data(self):
with self.g.transaction(write=True) as txn:
load_data(txn)
self.assertEqual(txn.nodes_count(), len(Nodes))
self.assertEqual(txn.edges_count(), len(Edges))
def test_counts(self):
with self.g.transaction(write=True) as txn:
self.assertEqual(txn.nodes_count(), 0)
self.assertEqual(txn.edges_count(), 0)
n1 = txn.node(type="foo", value="bar")
self.assertEqual(txn.nodes_count(), 1)
n2 = txn.node(type="foo", value="baz")
self.assertEqual(txn.nodes_count(), 2)
self.assertEqual(txn.nodes_count(beforeID=n2.ID), 1)
txn.edge(src=n1, tgt=n2, type="foo")
self.assertEqual(txn.edges_count(), 1)
with self.g.transaction(write=True) as txn:
self.assertEqual(txn.nodes_count(beforeID=n2.ID), 1)
txn.node(type="foo", value="blah")
self.assertEqual(txn.nodes_count(), 3)
n1 = txn.node(type="foo", value="bar")
n1.delete()
self.assertEqual(txn.nodes_count(), 2)
self.assertEqual(txn.edges_count(), 0)
with self.g.transaction(write=False) as txn:
self.assertEqual(txn.nodes_count(), 2)
self.assertEqual(txn.edges_count(), 0)
self.assertEqual(txn.nodes_count(beforeID=txn.lastID), 3)
def test_edges_by_type(self):
with self.g.transaction(write=True) as txn:
load_data(txn)
n1 = node(1)
n1 = txn.node(**n1)
all_edges = sum(1 for x in n1.iterlinks())
fewer_edges = sum(1 for x in n1.iterlinks(types=(edge(1)['type'],)))
self.assertTrue(all_edges > fewer_edges)
def test_edge_dirs(self):
with self.g.transaction(write=True) as txn:
load_data(txn)
with self.g.transaction(write=False) as txn:
n1 = node(1)
n1 = txn.node(**n1)
all_edges = set(e.ID for e in n1.edges)
out_edges = set(e.ID for e in n1.edges(dir="out"))
in_edges = set(e.ID for e in n1.edges(dir="in"))
self.assertTrue(all_edges)
self.assertTrue(out_edges)
self.assertTrue(in_edges)
self.assertTrue(all_edges - in_edges)
self.assertTrue(all_edges - out_edges)
self.assertTrue(in_edges.isdisjoint(out_edges))
def test_query(self):
with self.g.transaction(write=True) as txn:
load_data(txn)
with self.g.transaction(write=False) as txn:
chains = 0
for _ in txn.query("n(type='foo')->e()-n()"):
chains += 1
self.assertTrue(chains)
def test_graph_props(self):
with self.g.transaction(write=True) as txn:
self.assertFalse('foo' in txn)
txn['foo'] = 'bar'
self.assertTrue('foo' in txn)
def test_kv(self):
with self.g.transaction(write=True) as txn:
b = txn.kv('foo')
keys = ('fon', 'foo', 'foobar', 'foobaz', 'fom')
for i, key in enumerate(('fo', 'fon', 'foo', 'foobar', 'foobaz', 'fom')):
b[key] = i
res = tuple(b.iterkeys(pfx='foo'))
self.assertEqual(keys[1:-1], res)
txn.abort()
with self.g.transaction(write=True) as txn:
b = txn.kv('foo', map_data=True)
self.assertFalse('bar' in b)
b['bar'] = 'blah'
self.assertTrue('bar' in b)
txn.abort()
with self.g.transaction(write=True) as txn:
b = txn.kv('foo', map_keys=True)
self.assertFalse('bar' in b)
b['bar'] = 'blah'
self.assertTrue('bar' in b)
count = sum(1 for x in b)
self.assertTrue(1 == count)
def test_fifo(self):
with self.g.transaction(write=True) as txn:
f = txn.fifo('foo', serialize_value=Serializer.uint())
f.push(1, 2, 3)
out = f.pop(4)
self.assertEqual(out, (1, 2, 3))
self.assertTrue(f.empty)
f.push(4, 5, 6)
self.assertFalse(f.empty)
self.assertEqual(len(f), 3)
out = f.pop(4)
self.assertEqual(out, (4, 5, 6))
self.assertEqual(len(f), 0)
def test_nested(self):
with self.g.transaction(write=True) as t0:
t0['foo'] = "t0"
with t0.transaction(write=True) as t1:
t1['foo'] = "t1"
with t1.transaction(write=True) as t2:
self.assertTrue(t2['foo'] == "t1")
t2['foo'] = "t2"
self.assertTrue(t2['foo'] == "t2")
t1.abort()
# should never get here
self.assertTrue(False)
self.assertTrue(t0['foo'] == "t0")
t0['foo'] = "t00"
with self.g.transaction(write=True) as t0:
self.assertTrue(t0['foo'] == "t00")
t0['foo'] = "t000"
with t0.transaction(write=True) as t1:
t1['foo'] = "t1"
t0.commit()
# should never get here
self.assertTrue(False)
# or here
self.assertTrue(False)
with self.g.transaction(write=True) as t0:
self.assertTrue(t0['foo'] == "t000")
def test_reset(self):
with self.g.transaction(write=True) as txn:
txn.node(type="foo", value="bar")
nextID = txn.nextID
with self.g.transaction(write=True) as txn:
self.assertEqual(nextID, txn.nextID)
txn.reset()
self.assertEqual(1, txn.nextID)
with self.g.transaction(write=False) as txn:
self.assertEqual(1, txn.nextID)
class TestAlgorithms(unittest.TestCase):
serializer = Serializer.msgpack()
# each test_foo() method is wrapped w/ setup/teardown around it, so each test has a fresh graph
def setUp(self):
fd, path = tempfile.mkstemp()
os.close(fd)
self.g = Graph(path, serialize_property_value=self.serializer)
def tearDown(self):
self.g.delete()
def test_sp1(self):
with self.g.transaction(write=True) as txn:
load_data(txn)
with self.g.transaction(write=False) as txn:
n0 = txn.node(**node(0))
n1 = txn.node(**node(1))
n2 = txn.node(**node(2))
e0 = edge(0)
e1 = edge(1)
e0['src'] = txn.node(**e0['src'])
e0['tgt'] = txn.node(**e0['tgt'])
e1['src'] = txn.node(**e1['src'])
e1['tgt'] = txn.node(**e1['tgt'])
e0 = txn.edge(**e0)
e1 = txn.edge(**e1)
expect_path = (n0, e0, n1, e1, n2)
res_path = n0.shortest_path(n2, directed=False)
self.assertEqual(
tuple(x.ID for x in expect_path),
tuple(x.ID for x in res_path))
res_path = n0.shortest_path(n2, directed=True)
self.assertEqual(
tuple(x.ID for x in expect_path),
tuple(x.ID for x in res_path))
fail = n2.shortest_path(n0, directed=True)
self.assertEqual(fail, None)
def test_sp2(self):
with self.g.transaction(write=True) as txn:
'''
n1a
/ \
e0a e1a
/ \
n0 n2
\ /
e0b e1b
\ /
n1b
'''
n0 = txn.node(type='foo', value='0')
n1a = txn.node(type='foo', value='1a')
n1b = txn.node(type='foo', value='1b')
n2 = txn.node(type='foo', value='2')
e0a = txn.edge(type='foo', src=n0, tgt=n1a)
e0b = txn.edge(type='foo', src=n0, tgt=n1b)
e1a = txn.edge(type='foo', src=n1a, tgt=n2)
e1b = txn.edge(type='foo', src=n1b, tgt=n2)
# should transit upper path
self.assertPathEqual(n0.shortest_path(n2), (n0, e0a, n1a, e1a, n2))
# use cost to force it through lower path
e1b['cost'] = 0.5
self.assertPathEqual(n0.shortest_path(n2, cost_field='cost'), (n0, e0b, n1b, e1b, n2))
# use default cost to make it find the upper path again
self.assertPathEqual(n0.shortest_path(n2, cost_field='cost', cost_default=0.5), (n0, e0a, n1a, e1a, n2))
def assertPathEqual(self, a, b):
self.assertEqual(type(a), type(b))
if a is not None:
self.assertEqual(
tuple(x.ID for x in a),
tuple(x.ID for x in b))
class TestSerializers(unittest.TestCase):
def test_default(self):
s = Serializer()
a = (None, 'foo', 1)
b = (b'', b'foo', b'1')
c = ('', 'foo', '1')
for x, y, z in zip(a, b, c):
self.assertEqual(s.encode(x), y)
self.assertEqual(s.decode(y), z)
def test_uint(self):
s = Serializer.uint()
a = (0, 255, 256, (1 << 64) - 1)
b = (b"\x00", b"\x01\xff",
b"\x02\x01\x00", b"\x08\xff\xff\xff\xff\xff\xff\xff\xff")
c = (0, 255, 256, (1 << 64) - 1)
for x, y, z in zip(a, b, c):
self.assertEqual(s.encode(x), y)
self.assertEqual(s.decode(y), z)
def test_uints(self):
s = Serializer.uints(2)
a = ((0, 255), (256, (1 << 64) - 1))
b = (b"\x00\x01\xff",
b"\x02\x01\x00\x08\xff\xff\xff\xff\xff\xff\xff\xff")
c = ((0, 255), (256, (1 << 64) - 1))
for x, y, z in zip(a, b, c):
self.assertEqual(s.encode(x), y)
self.assertEqual(s.decode(y), z)
def test_uints_string(self):
s = Serializer.uints(3, string=True)
a = ((0, 255, "foo"), (256, (1 << 64) - 1, ""))
b = (b"\x00\x01\xff\x01\x03foo",
b"\x02\x01\x00\x08\xff\xff\xff\xff\xff\xff\xff\xff\x00")
c = ((0, 255, "foo"), (256, (1 << 64) - 1, ""))
for x, y, z in zip(a, b, c):
self.assertEqual(s.encode(x), y)
self.assertEqual(s.decode(y), z)
def test_msgpack(self):
s = Serializer.msgpack()
a = { 'foo': 'bar', u'foo\u2020': u'bar\u2020' }
b = s.encode(a)
c = s.decode(b)
self.assertEqual(a, c)
class TestDL(unittest.TestCase):
def test_dirlist(self):
dots = 0
for x in dirlist('/'):
if x == '.':
dots += 1
elif x == '..':
dots += 2
self.assertEqual(dots, 3)
class TestQL(unittest.TestCase):
chains = (
({'foo': 'bar'},),
({'foo': 'bar'}, {'type': 'foo'}),
)
matches = {
'n()': [0],
'e()': [0],
'n(foo~/^bar$/)': [0],
'n()-n(type="foo")': [1],
}
def test_a(self):
results = {}
q = Query(self.matches.keys())
for i, chain in enumerate(self.chains):
for p, _ in q.validate(chain):
try:
results[p].append(i)
except KeyError:
results[p] = [i]
self.assertEqual(self.matches, results)
if __name__ == '__main__':
unittest.main()