-
Notifications
You must be signed in to change notification settings - Fork 848
Expand file tree
/
Copy pathfeature_steps.py
More file actions
408 lines (328 loc) · 16.4 KB
/
feature_steps.py
File metadata and controls
408 lines (328 loc) · 16.4 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
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
398
399
400
401
402
403
404
405
406
407
408
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
from datetime import datetime
import json
import re
import uuid
from gremlin_python.statics import long, bigdecimal
from gremlin_python.structure.graph import Path, Vertex
from gremlin_python.process.anonymous_traversal import traversal
from gremlin_python.process.graph_traversal import __
from gremlin_python.process.traversal import Barrier, Cardinality, P, TextP, Pop, Scope, Column, Order, Direction, T, \
Pick, Operator, IO, WithOptions, Merge
from radish import given, when, then, world
from hamcrest import *
outV = __.outV
label = __.label
inV = __.inV
project = __.project
tail = __.tail
ignores = [
"g.withSideEffect(\"x\",{}).V().both().both().sideEffect(__.store(\"x\").by(\"name\")).cap(\"x\").unfold()", # Objects must be both of Map or Collection: a=LinkedHashMap b=BulkSet???
"g.withSack(10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000n, Operator.assign).V().local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()" # issues with BigInteger/BigDecimal - why do we carry BigDecimal? just use python Decimal module?
]
@given("the {graph_name:w} graph")
def choose_graph(step, graph_name):
step.context.ignore = False
tagset = [tag.name for tag in step.all_tags]
if not step.context.ignore:
step.context.ignore = "AllowNullPropertyValues" in tagset
if not step.context.ignore:
step.context.ignore = "StepSubgraph" in tagset
if not step.context.ignore:
step.context.ignore = "StepTree" in tagset
if (step.context.ignore):
return
step.context.graph_name = graph_name
step.context.g = traversal().with_(step.context.remote_conn[graph_name])
@given("the graph initializer of")
def initialize_graph(step):
if (step.context.ignore):
return
t = step.context.traversals.pop(0)(g=step.context.g)
# just be sure that the traversal returns something to prove that it worked to some degree. probably
# is overkill to try to assert the complete success of this init operation. presumably the test
# suite would fail elsewhere if this didn't work which would help identify a problem.
result = t.toList()
assert len(result) > 0
@given("an unsupported test")
def unsupported_scenario(step):
# this is a do nothing step as the test can't be supported for whatever reason
return
@given("using the parameter {param_name:w} defined as {param:QuotedString}")
def add_parameter(step, param_name, param):
if (step.context.ignore):
return
if not hasattr(step.context, "traversal_params"):
step.context.traversal_params = {}
step.context.traversal_params[param_name] = _convert(param.replace('\\"', '"'), step.context)
@given("using the side effect {key:w} defined as {value:QuotedString}")
def add_side_effect(step, key, value):
if (step.context.ignore):
return
if not hasattr(step.context, "traversal_side_effects"):
step.context.traversal_side_effects = {}
step.context.traversal_side_effects[key] = _convert(value.replace('\\"', '"'), step.context)
@given("the traversal of")
def translate_traversal(step):
if step.context.ignore == False:
step.context.ignore = step.text in ignores
# after backport of strategy construction improvements from master, there are now test failures (not currently
# running GLV tests on master) - TINKERPOP-3055
if step.context.ignore == False:
step.context.ignore = "withoutStrategies" in step.text
if step.context.ignore == False:
step.context.ignore = "withStrategies" in step.text
if step.context.ignore:
return
p = step.context.traversal_params if hasattr(step.context, "traversal_params") else {}
localg = step.context.g
tagset = [tag.name for tag in step.all_tags]
if "GraphComputerOnly" in tagset:
localg = step.context.g.withComputer()
p['g'] = localg
step.context.traversal = step.context.traversals.pop(0)(**p)
if hasattr(step.context, "traversal_side_effects"):
for key in step.context.traversal_side_effects:
step.context.traversal.bytecode.add_source("withSideEffect", key, step.context.traversal_side_effects[key])
@when("iterated to list")
def iterate_the_traversal(step):
if step.context.ignore:
return
try:
step.context.result = list(map(lambda x: _convert_results(x), step.context.traversal.toList()))
step.context.failed = False
step.context.failed_message = ''
except Exception as e:
step.context.failed = True
step.context.failed_message = getattr(e, 'message', repr(e))
@when("iterated next")
def next_the_traversal(step):
if step.context.ignore:
return
try:
step.context.result = list(map(lambda x: _convert_results(x), step.context.traversal.next()))
step.context.failed = False
step.context.failed_message = ''
except Exception as e:
step.context.failed = True
step.context.failed_message = getattr(e, 'message', repr(e))
@then("the traversal will raise an error")
def raise_an_error(step):
if step.context.ignore:
return
assert_that(step.context.failed, equal_to(True))
@then("the traversal will raise an error with message {comparison:w} text of {expected_message:QuotedString}")
def raise_an_error_with_message(step, comparison, expected_message):
if step.context.ignore:
return
assert_that(step.context.failed, equal_to(True))
if comparison == "containing":
assert_that(step.context.failed_message, contains_string(expected_message))
elif comparison == "ending":
assert_that(step.context.failed_message, ends_with(expected_message))
elif comparison == "starting":
assert_that(step.context.failed_message, starts_with(expected_message))
else:
raise ValueError("unknown comparison '" + comparison + "'- must be: containing, ending or starting")
@then("the result should be {characterized_as:w}")
def assert_result(step, characterized_as):
if step.context.ignore:
return
assert_that(step.context.failed, equal_to(False), step.context.failed_message)
if characterized_as == "empty": # no results
assert_that(len(step.context.result), equal_to(0))
elif characterized_as == "ordered": # results asserted in the order of the data table
_table_assertion(step.table, step.context.result, step.context, True)
elif characterized_as == "unordered": # results asserted in any order
_table_assertion(step.table, step.context.result, step.context, False)
elif characterized_as == "of": # results may be of any of the specified items in the data table
_any_assertion(step.table, step.context.result, step.context)
else:
raise ValueError("unknown data characterization of " + characterized_as)
@then("the graph should return {count:d} for count of {traversal_string:QuotedString}")
def assert_side_effects(step, count, traversal_string):
if step.context.ignore:
return
assert_that(step.context.failed, equal_to(False), step.context.failed_message)
p = step.context.traversal_params if hasattr(step.context, "traversal_params") else {}
p['g'] = step.context.g
t = step.context.traversals.pop(0)(**p)
assert_that(t.count().next(), equal_to(count))
@then("the result should have a count of {count:d}")
def assert_count(step, count):
if step.context.ignore:
return
assert_that(step.context.failed, equal_to(False), step.context.failed_message)
assert_that(len(list(step.context.result)), equal_to(count))
@then("nothing should happen because")
def nothing_happening(step):
return
def _split_by_element(s):
depth = 0
current = []
results = []
for c in s:
if c == '[':
depth += 1
current.append(c)
elif c == ']':
depth -= 1
current.append(c)
elif c == ',' and depth == 0:
results.append(''.join(current).strip())
current = []
else:
current.append(c)
if current:
results.append(''.join(current).strip())
return results
def _convert(val, ctx):
graph_name = ctx.graph_name
if isinstance(val, dict): # convert dictionary keys/values
n = {}
for key, value in val.items():
k = _convert(key, ctx)
# convert to tuple key if list/set as neither are hashable
n[tuple(k) if isinstance(k, (set, list)) else k] = _convert(value, ctx)
return n
elif isinstance(val, str) and re.match(r"^l\[.*\]$", val): # parse list
return [] if val == "l[]" else list(map((lambda x: _convert(x, ctx)), _split_by_element(val[2:-1])))
elif isinstance(val, str) and re.match(r"^s\[.*\]$", val): # parse set
return set() if val == "s[]" else set(map((lambda x: _convert(x, ctx)), _split_by_element(val[2:-1])))
elif isinstance(val, str) and re.match(r"^str\[.*\]$", val): # return string as is
return val[4:-1]
elif isinstance(val, str) and re.match(r"^dt\[.*\]$", val): # parse datetime
# python 3.8 can handle only subset of ISO 8601 dates
return datetime.fromisoformat(val[3:-1].replace('Z', '+00:00'))
elif isinstance(val, str) and re.match(r"^uuid\[.*\]$", val): # parse uuid
name = val[5:-1] # strip 'uuid[...]' or similar format
return uuid.UUID(name)
elif isinstance(val, str) and re.match(r"^d\[NaN\]$", val): # parse nan
return float("nan")
elif isinstance(val, str) and re.match(r"^d\[Infinity\]$", val): # parse +inf
return float("inf")
elif isinstance(val, str) and re.match(r"^d\[-Infinity\]$", val): # parse -inf
return float("-inf")
elif isinstance(val, str) and re.match(r"^d\[.*\]\.[bsilfdn]$", val): # parse numeric
return float(val[2:-3]) if val[2:-3].__contains__(".") else long(val[2:-3])
elif isinstance(val, str) and re.match(r"^d\[.*\]\.m$", val): # parse bigDecimal
return bigdecimal(val[2:-3])
elif isinstance(val, str) and re.match(r"^v\[.*\]\.id$", val): # parse vertex id
return __find_cached_element(ctx, graph_name, val[2:-4], "v").id
elif isinstance(val, str) and re.match(r"^v\[.*\]\.sid$", val): # parse vertex id as string
return str(__find_cached_element(ctx, graph_name, val[2:-5], "v").id)
elif isinstance(val, str) and re.match(r"^v\[.*\]$", val): # parse vertex
return __find_cached_element(ctx, graph_name, val[2:-1], "v")
elif isinstance(val, str) and re.match(r"^e\[.*\]\.id$", val): # parse edge id
return __find_cached_element(ctx, graph_name, val[2:-4], "e").id
elif isinstance(val, str) and re.match(r"^e\[.*\]\.sid$", val): # parse edge id as string
return str(__find_cached_element(ctx, graph_name, val[2:-5], "e").id)
elif isinstance(val, str) and re.match(r"^e\[.*\]$", val): # parse edge
return __find_cached_element(ctx, graph_name, val[2:-1], "e")
elif isinstance(val, str) and re.match(r"^vp\[.*\]$", val): # parse vertexproperty
return __find_cached_element(ctx, graph_name, val[3:-1], "vp")
elif isinstance(val, str) and re.match(r"^m\[.*\]$", val): # parse json as a map
return _convert(json.loads(val[2:-1]), ctx)
elif isinstance(val, str) and re.match(r"^p\[.*\]$", val): # parse path
path_objects = list(map((lambda x: _convert(x, ctx)), val[2:-1].split(",")))
return Path([set([])], path_objects)
elif isinstance(val, str) and re.match(r"^t\[.*\]$", val): # parse instance of T enum
return T[val[2:-1]]
elif isinstance(val, str) and re.match(r"^D\[.*\]$", val): # parse instance of Direction enum
return Direction[__alias_direction(val[2:-1])]
elif isinstance(val, str) and re.match(r"^M\[.*\]$", val): # parse instance of Merge enum
return Merge[__alias_merge(val[2:-1])]
elif isinstance(val, str) and re.match(r"^null$", val): # parse null to None
return None
elif isinstance(val, str) and re.match(r"^true$", val): # parse to boolean
return True
elif isinstance(val, str) and re.match(r"^false$", val): # parse to boolean
return False
else:
return val
def __alias_direction(d):
return "from_" if d == "from" else d
def __alias_merge(m):
if m == "inV":
return "in_v"
elif m == "outV":
return "out_v"
elif m == "onCreate":
return "on_create"
elif m == "onMatch":
return "on_match"
else:
return
def __find_cached_element(ctx, graph_name, identifier, element_type):
if graph_name == "empty":
if element_type == "v":
cache = world.create_lookup_v(ctx.remote_conn["empty"])
elif element_type == "vp":
cache = world.create_lookup_vp(ctx.remote_conn["empty"])
else:
cache = world.create_lookup_e(ctx.remote_conn["empty"])
else:
if element_type == "v":
cache = ctx.lookup_v[graph_name]
elif element_type == "vp":
cache = ctx.lookup_vp[graph_name]
else:
cache = ctx.lookup_e[graph_name]
# try to lookup the element - if it can't be found then it must be a reference Vertex
if identifier in cache:
return cache[identifier]
else:
return Vertex(identifier)
def _is_nan(val):
return isinstance(val, float) and (val != val)
def _convert_results(val):
if isinstance(val, Path):
# kill out labels as they aren't in the assertion logic
return Path([set([])], val.objects)
elif _is_nan(val):
# we need to use the string form for NaN to test the results since float.nan != float.nan
return "d[NaN]"
else:
return val
def _any_assertion(data, result, ctx):
converted = [_convert(line['result'], ctx) for line in data]
for r in result:
assert_that(r, is_in(converted))
def _table_assertion(data, result, ctx, ordered):
# results from traversal should have the same number of entries as the feature data table
assert_that(len(result), equal_to(len(data)), "result:" + str(result))
results_to_test = list(result)
# finds a match in the results for each line of data to assert and then removes that item
# from the list - in the end there should be no items left over and each will have been asserted
for ix, line in enumerate(data):
val = _convert(line['result'], ctx)
# we need to use the string form for NaN to test the results since float.nan != float.nan
if _is_nan(val):
val = "d[NaN]"
# clear the labels since we don't define them in .feature files
if isinstance(val, Path):
val.labels = [set([])]
if ordered:
assert_that(results_to_test[ix], equal_to(val))
else:
assert_that(val, is_in(results_to_test))
results_to_test.remove(val)
if not ordered:
assert_that(len(results_to_test), is_(0))