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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
# -*- coding: utf-8 -*-
#
import pytest
from os import path, walk
import glob
import rdflib
import pyshacl
from pyshacl.errors import ReportableRuntimeError
here_dir = path.abspath(path.dirname(__file__))
dash_files_dir = path.join(here_dir, 'resources', 'dash_tests')
dash_core_files = []
dash_sparql_files = []
dash_triple_rules_files = []
dash_sparql_rules_files = []
dash_expression_files = []
dash_target_files = []
dash_fn_files = []
# There are some tests we know will fail, but we don't want to stop deployment
# if we hit them. List them here:
ALLOWABLE_NOT_IMPLEMENTED = []
# This one relies on owl_imports to be turned on
# and also needs this file, but its missing: http://datashapes.org/shasf/tests/rules/triple/person
ALLOWABLE_FAILURES = ["/rules/triple/person2schema.test.ttl"]
for x in walk(path.join(dash_files_dir, 'core')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
if "node/datatype-002" in y:
dash_core_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_core_files)
def test_dash_validate_all_core(target_file, shacl_file):
# Literals in the data graph should be exactly the same as literals in the shapes graph
# When the validator parses the shapes graph, it does it with NORMALIZE_LITERALS disabled
# So we must also disable NORMALIZE_LITERALS when parsing the data graph
rdflib.NORMALIZE_LITERALS = False
try:
val, _, v_text = pyshacl.validate(
target_file, shacl_graph=shacl_file, inference='rdfs', check_dash_result=True, debug=True, meta_shacl=False
)
except (NotImplementedError, ReportableRuntimeError) as e:
print(e)
val = False
v_text = ""
assert val
print(v_text)
@pytest.mark.parametrize('target_file, shacl_file', dash_core_files)
def test_dash_validate_all_core_sparql_mode(target_file, shacl_file):
# Literals in the data graph should be exactly the same as literals in the shapes graph
# When the validator parses the shapes graph, it does it with NORMALIZE_LITERALS disabled
# So we must also disable NORMALIZE_LITERALS when parsing the data graph
rdflib.NORMALIZE_LITERALS = False
try:
if shacl_file is None:
# shacl_file cannot be None in SPARQL Remote Graph Mode
shacl_file = target_file
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
inference='none',
check_dash_result=True,
debug=True,
sparql_mode=True,
meta_shacl=False,
)
except (NotImplementedError, ReportableRuntimeError) as e:
print(e)
val = False
v_text = ""
print(v_text)
assert val
for x in walk(path.join(dash_files_dir, 'sparql')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_sparql_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_sparql_files)
def test_dash_validate_all_sparql(target_file, shacl_file):
# Literals in the data graph should be exactly the same as literals in the shapes graph
# When the validator parses the shapes graph, it does it with NORMALIZE_LITERALS disabled
# So we must also disable NORMALIZE_LITERALS when parsing the data graph
rdflib.NORMALIZE_LITERALS = False
try:
val, _, v_text = pyshacl.validate(
target_file, shacl_graph=shacl_file, inference='rdfs', check_dash_result=True, debug=True, meta_shacl=False
)
except (NotImplementedError, ReportableRuntimeError) as e:
print(e)
val = False
v_text = ""
assert val
print(v_text)
@pytest.mark.parametrize('target_file, shacl_file', dash_sparql_files)
def test_dash_validate_all_sparql_sparql_mode(target_file, shacl_file):
# Literals in the data graph should be exactly the same as literals in the shapes graph
# When the validator parses the shapes graph, it does it with NORMALIZE_LITERALS disabled
# So we must also disable NORMALIZE_LITERALS when parsing the data graph
rdflib.NORMALIZE_LITERALS = False
try:
if shacl_file is None:
# shacl_file cannot be None in SPARQL Remote Graph Mode
shacl_file = target_file
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
inference='none',
check_dash_result=True,
debug=True,
sparql_mode=True,
meta_shacl=False,
)
except (NotImplementedError, ReportableRuntimeError) as e:
print(e)
val = False
v_text = ""
assert val
print(v_text)
# Tests for SHACL Advanced Features: https://www.w3.org/TR/shacl-af
# Skip these, because sh:target is not part of the SPARQL core spec and support is not implemented
# for x in walk(path.join(dash_files_dir, 'target')):
# for y in glob.glob(path.join(x[0], '*.test.ttl')):
# dash_target_files.append((y, None))
# @pytest.mark.parametrize('target_file, shacl_file', dash_target_files)
# def test_dash_validate_all_target(target_file, shacl_file):
# try:
# val, _, v_text = pyshacl.validate(
# target_file, shacl_graph=shacl_file, inference='rdfs', check_dash_result=True, debug=True, meta_shacl=False)
# except (NotImplementedError, ReportableRuntimeError) as e:
# print(e)
# val = False
# v_text = ""
# assert val
# print(v_text)
# return True
# Get all sparql-rules tests.
for x in walk(path.join(dash_files_dir, 'rules', 'sparql')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_sparql_rules_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_sparql_rules_files)
def test_dash_validate_all_sparql_rules(target_file, shacl_file):
try:
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='rdfs',
check_dash_result=True,
debug=True,
meta_shacl=False,
)
except (NotImplementedError, ReportableRuntimeError) as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
assert val
print(v_text)
# Get all triple-rules tests.
for x in walk(path.join(dash_files_dir, 'rules', 'triple')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_triple_rules_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_triple_rules_files)
def test_dash_validate_all_triple_rules(target_file, shacl_file):
test_name = shacl_file or target_file
try:
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='rdfs',
check_dash_result=True,
debug=True,
meta_shacl=False,
)
except NotImplementedError as ne:
for ani in ALLOWABLE_NOT_IMPLEMENTED:
if test_name.endswith(ani):
v_text = "Skipping not implemented feature in test: {}".format(test_name)
print(v_text)
val = True
break
else:
print(ne)
val = False
v_text = ""
except ReportableRuntimeError as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
try:
assert val
except AssertionError as ae:
for af in ALLOWABLE_FAILURES:
if test_name.endswith(af):
v_text = "Allowing failure in test: {}".format(test_name)
print(v_text)
break
else:
raise ae
print(v_text)
# Get all SHACL-AF sh:target tests.
for x in walk(path.join(dash_files_dir, 'target')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_target_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_target_files)
def test_dash_validate_target(target_file, shacl_file):
test_name = shacl_file or target_file
try:
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='rdfs',
check_dash_result=True,
debug=True,
meta_shacl=False,
)
except NotImplementedError as ne:
for ani in ALLOWABLE_NOT_IMPLEMENTED:
if test_name.endswith(ani):
v_text = "Skipping not implemented feature in test: {}".format(test_name)
print(v_text)
val = True
break
else:
print(ne)
val = False
v_text = ""
except ReportableRuntimeError as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
try:
assert val
except AssertionError as ae:
for af in ALLOWABLE_FAILURES:
if test_name.endswith(af):
v_text = "Allowing failure in test: {}".format(test_name)
print(v_text)
break
else:
raise ae
print(v_text)
@pytest.mark.parametrize('target_file, shacl_file', dash_target_files)
def test_dash_validate_target_sparql_mode(target_file, shacl_file):
test_name = shacl_file or target_file
try:
if shacl_file is None:
# shacl_file cannot be None in SPARQL Remote Graph Mode
shacl_file = target_file
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='none',
check_dash_result=True,
debug=True,
sparql_mode=True,
meta_shacl=False,
)
except NotImplementedError as ne:
for ani in ALLOWABLE_NOT_IMPLEMENTED:
if test_name.endswith(ani):
v_text = "Skipping not implemented feature in test: {}".format(test_name)
print(v_text)
val = True
break
else:
print(ne)
val = False
v_text = ""
except ReportableRuntimeError as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
try:
assert val
except AssertionError as ae:
for af in ALLOWABLE_FAILURES:
if test_name.endswith(af):
v_text = "Allowing failure in test: {}".format(test_name)
print(v_text)
break
else:
raise ae
print(v_text)
# Get all SHACL-AF sh:expression tests.
for x in walk(path.join(dash_files_dir, 'expression')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_expression_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_expression_files)
def test_dash_validate_expression(target_file, shacl_file):
test_name = shacl_file or target_file
try:
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='rdfs',
check_dash_result=True,
debug=True,
meta_shacl=False,
)
except NotImplementedError as ne:
for ani in ALLOWABLE_NOT_IMPLEMENTED:
if test_name.endswith(ani):
v_text = "Skipping not implemented feature in test: {}".format(test_name)
print(v_text)
val = True
break
else:
print(ne)
val = False
v_text = ""
except ReportableRuntimeError as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
try:
assert val
except AssertionError as ae:
for af in ALLOWABLE_FAILURES:
if test_name.endswith(af):
v_text = "Allowing failure in test: {}".format(test_name)
print(v_text)
break
else:
raise ae
print(v_text)
# Get all SHACLFunction tests
for x in walk(path.join(dash_files_dir, 'function')):
for y in glob.glob(path.join(x[0], '*.test.ttl')):
dash_fn_files.append((y, None))
@pytest.mark.parametrize('target_file, shacl_file', dash_fn_files)
def test_dash_validate_functions(target_file, shacl_file):
test_name = shacl_file or target_file
try:
val, _, v_text = pyshacl.validate(
target_file,
shacl_graph=shacl_file,
advanced=True,
inference='rdfs',
check_dash_result=True,
debug=True,
meta_shacl=False,
)
except NotImplementedError as ne:
for ani in ALLOWABLE_NOT_IMPLEMENTED:
if test_name.endswith(ani):
v_text = "Skipping not implemented feature in test: {}".format(test_name)
print(v_text)
val = True
break
else:
print(ne)
val = False
v_text = ""
except ReportableRuntimeError as e:
import traceback
print(e)
traceback.print_tb(e.__traceback__)
val = False
v_text = ""
try:
assert val
except AssertionError as ae:
for af in ALLOWABLE_FAILURES:
if test_name.endswith(af):
v_text = "Allowing failure in test: {}".format(test_name)
print(v_text)
break
else:
raise ae
print(v_text)
|