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 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
|
from __future__ import print_function
import os
from pathlib import PurePath
import sys
from io import TextIOWrapper
# Needed to pass
# http://www.w3.org/2009/sparql/docs/tests/data-sparql11/
# syntax-update-2/manifest#syntax-update-other-01
from test import TEST_DIR
from test.manifest import UP, MF, RDFTest, read_manifest
import pytest
from test.testutils import file_uri_to_path
sys.setrecursionlimit(6000) # default is 1000
from collections import Counter
import datetime
import isodate
import typing
from typing import Dict, Callable
from rdflib import Dataset, Graph, URIRef, BNode
from rdflib.term import Node
from rdflib.query import Result
from rdflib.compare import isomorphic
from rdflib.plugins import sparql as rdflib_sparql_module
from rdflib.plugins.sparql.algebra import pprintAlgebra, translateQuery, translateUpdate
from rdflib.plugins.sparql.parser import parseQuery, parseUpdate
from rdflib.plugins.sparql.results.rdfresults import RDFResultParser
from rdflib.plugins.sparql.update import evalUpdate
from rdflib.compat import decodeStringEscape, bopen
from urllib.parse import urljoin
from io import BytesIO
def eq(a, b, msg):
# return eq_(a, b, msg + ": (%r!=%r)" % (a, b))
assert a == b, msg + ": (%r!=%r)" % (a, b)
def setFlags():
import rdflib
# Several tests rely on lexical form of literals being kept!
rdflib.NORMALIZE_LITERALS = False
# we need an explicit default graph
rdflib_sparql_module.SPARQL_DEFAULT_GRAPH_UNION = False
# we obviously need this
rdflib.DAWG_LITERAL_COLLATION = True
def resetFlags():
import rdflib
# Several tests rely on lexical form of literals being kept!
rdflib.NORMALIZE_LITERALS = True
# we need an explicit default graph
rdflib_sparql_module.SPARQL_DEFAULT_GRAPH_UNION = True
# we obviously need this
rdflib.DAWG_LITERAL_COLLATION = False
DEBUG_FAIL = True
DEBUG_FAIL = False
DEBUG_ERROR = True
DEBUG_ERROR = False
SPARQL10Tests = True
# SPARQL10Tests = False
SPARQL11Tests = True
# SPARQL11Tests=False
RDFLibTests = True
DETAILEDASSERT = True
# DETAILEDASSERT=False
NAME = None
fails: typing.Counter[str] = Counter()
errors: typing.Counter[str] = Counter()
failed_tests = []
error_tests = []
def bopen_read_close(fn):
with bopen(fn) as f:
return f.read()
try:
with open("skiptests.list") as skip_tests_f:
skiptests = dict(
[
(URIRef(x.strip().split("\t")[0]), x.strip().split("\t")[1])
for x in skip_tests_f
]
)
except IOError:
skiptests = dict()
def _fmt(f):
if f.endswith(".rdf"):
return "xml"
return "turtle"
def bindingsCompatible(a, b):
"""
Are two binding-sets compatible.
From the spec: http://www.w3.org/2009/sparql/docs/tests/#queryevaltests
A SPARQL implementation passes a query evaluation test if the
graph produced by evaluating the query against the RDF dataset
(and encoding in the DAWG result set vocabulary, if necessary) is
equivalent [RDF-CONCEPTS] to the graph named in the result (after
encoding in the DAWG result set vocabulary, if necessary). Note
that, solution order only is considered relevant, if the result is
expressed in the test suite in the DAWG result set vocabulary,
with explicit rs:index triples; otherwise solution order is
considered irrelevant for passing. Equivalence can be tested by
checking that the graphs are isomorphic and have identical IRI and
literal nodes. Note that testing whether two result sets are
isomorphic is simpler than full graph isomorphism. Iterating over
rows in one set, finding a match with the other set, removing this
pair, then making sure all rows are accounted for, achieves the
same effect.
"""
def rowCompatible(x, y):
m = {}
y = y.asdict()
for v1, b1 in x.asdict().items():
if v1 not in y:
return False
if isinstance(b1, BNode):
if b1 in m:
if y[v1] != m[b1]:
return False
else:
m[b1] = y[v1]
else:
# if y[v1]!=b1:
# return False
try:
if y[v1].neq(b1):
return False
except TypeError:
return False
return True
if not a:
if b:
return False
return True
x = next(iter(a))
for y in b:
if rowCompatible(x, y):
if bindingsCompatible(a - set((x,)), b - set((y,))):
return True
return False
def pp_binding(solutions):
"""
Pretty print a single binding - for less eye-strain when debugging
"""
return (
"\n["
+ ",\n\t".join(
"{" + ", ".join("%s:%s" % (x[0], x[1].n3()) for x in bindings.items()) + "}"
for bindings in solutions
)
+ "]\n"
)
def update_test(t: RDFTest):
# the update-eval tests refer to graphs on http://example.org
rdflib_sparql_module.SPARQL_LOAD_GRAPHS = False
uri, name, comment, data, graphdata, query, res, syntax = t
query_path: PurePath = file_uri_to_path(query)
if uri in skiptests:
pytest.skip()
try:
g = Dataset()
if not res:
if syntax:
with bopen(query_path) as f:
translateUpdate(parseUpdate(f))
else:
try:
with bopen(query_path) as f:
translateUpdate(parseUpdate(f))
raise AssertionError("Query shouldn't have parsed!")
except:
pass # negative syntax test
return
resdata, resgraphdata = res
# read input graphs
if data:
g.default_context.load(data, format=_fmt(data))
if graphdata:
for x, l in graphdata:
g.load(x, publicID=URIRef(l), format=_fmt(x))
with bopen(query_path) as f:
req = translateUpdate(parseUpdate(f))
evalUpdate(g, req)
# read expected results
resg = Dataset()
if resdata:
resg.default_context.load(resdata, format=_fmt(resdata))
if resgraphdata:
for x, l in resgraphdata:
resg.load(x, publicID=URIRef(l), format=_fmt(x))
eq(
set(x.identifier for x in g.contexts() if x != g.default_context),
set(x.identifier for x in resg.contexts() if x != resg.default_context),
"named graphs in datasets do not match",
)
assert isomorphic(
g.default_context, resg.default_context
), "Default graphs are not isomorphic"
for x in g.contexts():
if x == g.default_context:
continue
assert isomorphic(x, resg.get_context(x.identifier)), (
"Graphs with ID %s are not isomorphic" % x.identifier
)
except Exception as e:
if isinstance(e, AssertionError):
failed_tests.append(uri)
fails[str(e)] += 1
else:
error_tests.append(uri)
errors[str(e)] += 1
if DEBUG_ERROR and not isinstance(e, AssertionError) or DEBUG_FAIL:
print("======================================")
print(uri)
print(name)
print(comment)
if not res:
if syntax:
print("Positive syntax test")
else:
print("Negative syntax test")
if data:
print("----------------- DATA --------------------")
print(">>>", data)
data_path: PurePath = file_uri_to_path(data)
print(bopen_read_close(data_path))
if graphdata:
print("----------------- GRAPHDATA --------------------")
for x, l in graphdata:
print(">>>", x, l)
x_path: PurePath = file_uri_to_path(x)
print(bopen_read_close(x_path))
print("----------------- Request -------------------")
print(">>>", query)
print(bopen_read_close(query_path))
if res:
if resdata:
print("----------------- RES DATA --------------------")
print(">>>", resdata)
resdata_path: PurePath = file_uri_to_path(resdata)
print(bopen_read_close(resdata_path))
if resgraphdata:
print("----------------- RES GRAPHDATA -------------------")
for x, l in resgraphdata:
print(">>>", x, l)
x_path = file_uri_to_path(x)
print(bopen_read_close(x_path))
print("------------- MY RESULT ----------")
print(g.serialize(format="trig"))
try:
pq = translateUpdate(parseUpdate(bopen_read_close(query_path)))
print("----------------- Parsed ------------------")
pprintAlgebra(pq)
# print pq
except:
print("(parser error)")
print(decodeStringEscape(str(e)))
import pdb
pdb.post_mortem(sys.exc_info()[2])
raise
def query_test(t: RDFTest):
uri, name, comment, data, graphdata, query, resfile, syntax = t
# the query-eval tests refer to graphs to load by resolvable filenames
rdflib_sparql_module.SPARQL_LOAD_GRAPHS = True
query_path: PurePath = file_uri_to_path(query)
resfile_path = file_uri_to_path(resfile) if resfile else None
if uri in skiptests:
pytest.skip()
def skip(reason="(none)"):
print("Skipping %s from now on." % uri)
with bopen("skiptests.list", "a") as f:
f.write("%s\t%s\n" % (uri, reason))
try:
g = Dataset()
if data:
g.default_context.load(data, format=_fmt(data))
if graphdata:
for x in graphdata:
g.load(x, format=_fmt(x))
if not resfile:
# no result - syntax test
if syntax:
translateQuery(
parseQuery(bopen_read_close(query_path)), base=urljoin(query, ".")
)
else:
# negative syntax test
try:
translateQuery(
parseQuery(bopen_read_close(query_path)),
base=urljoin(query, "."),
)
assert False, "Query should not have parsed!"
except:
pass # it's fine - the query should not parse
return
# eval test - carry out query
res2 = g.query(bopen_read_close(query_path), base=urljoin(query, "."))
if resfile.endswith("ttl"):
resg = Graph()
resg.load(resfile, format="turtle", publicID=resfile)
res = RDFResultParser().parse(resg)
elif resfile.endswith("rdf"):
resg = Graph()
resg.load(resfile, publicID=resfile)
res = RDFResultParser().parse(resg)
else:
with bopen(resfile_path) as f:
if resfile.endswith("srj"):
res = Result.parse(f, format="json")
elif resfile.endswith("tsv"):
res = Result.parse(TextIOWrapper(f), format="tsv")
elif resfile.endswith("csv"):
res = Result.parse(f, format="csv")
# CSV is lossy, round-trip our own resultset to
# lose the same info :)
# write bytes, read strings...
s = BytesIO()
res2.serialize(s, format="csv")
s.seek(0)
res2 = Result.parse(s, format="csv")
s.close()
else:
res = Result.parse(f, format="xml")
if not DETAILEDASSERT:
eq(res.type, res2.type, "Types do not match")
if res.type == "SELECT":
eq(set(res.vars), set(res2.vars), "Vars do not match")
comp = bindingsCompatible(set(res), set(res2))
assert comp, "Bindings do not match"
elif res.type == "ASK":
eq(res.askAnswer, res2.askAnswer, "Ask answer does not match")
elif res.type in ("DESCRIBE", "CONSTRUCT"):
assert isomorphic(res.graph, res2.graph), "graphs are not isomorphic!"
else:
raise Exception("Unknown result type: %s" % res.type)
else:
eq(
res.type,
res2.type,
"Types do not match: %r != %r" % (res.type, res2.type),
)
if res.type == "SELECT":
eq(
set(res.vars),
set(res2.vars),
"Vars do not match: %r != %r" % (set(res.vars), set(res2.vars)),
)
assert bindingsCompatible(
set(res), set(res2)
), "Bindings do not match: \nexpected:\n%s\n!=\ngot:\n%s" % (
res.serialize(format="txt", namespace_manager=g.namespace_manager),
res2.serialize(format="txt", namespace_manager=g.namespace_manager),
)
elif res.type == "ASK":
eq(
res.askAnswer,
res2.askAnswer,
"Ask answer does not match: %r != %r"
% (res.askAnswer, res2.askAnswer),
)
elif res.type in ("DESCRIBE", "CONSTRUCT"):
assert isomorphic(res.graph, res2.graph), "graphs are not isomorphic!"
else:
raise Exception("Unknown result type: %s" % res.type)
except Exception as e:
if isinstance(e, AssertionError):
failed_tests.append(uri)
fails[str(e)] += 1
else:
error_tests.append(uri)
errors[str(e)] += 1
if DEBUG_ERROR and not isinstance(e, AssertionError) or DEBUG_FAIL:
print("======================================")
print(uri)
print(name)
print(comment)
if not resfile:
if syntax:
print("Positive syntax test")
else:
print("Negative syntax test")
if data:
print("----------------- DATA --------------------")
print(">>>", data)
data_path: PurePath = file_uri_to_path(data)
print(bopen_read_close(data_path))
if graphdata:
print("----------------- GRAPHDATA --------------------")
for x in graphdata:
print(">>>", x)
x_path: PurePath = file_uri_to_path(x)
print(bopen_read_close(x_path))
print("----------------- Query -------------------")
print(">>>", query)
print(bopen_read_close(query_path))
if resfile:
print("----------------- Res -------------------")
print(">>>", resfile)
print(bopen_read_close(resfile_path))
try:
pq = parseQuery(bopen_read_close(query_path))
print("----------------- Parsed ------------------")
pprintAlgebra(translateQuery(pq, base=urljoin(query, ".")))
except:
print("(parser error)")
print(decodeStringEscape(str(e)))
import pdb
pdb.post_mortem(sys.exc_info()[2])
raise
testers: Dict[Node, Callable[[RDFTest], None]] = {
UP.UpdateEvaluationTest: update_test,
MF.UpdateEvaluationTest: update_test,
MF.PositiveUpdateSyntaxTest11: update_test,
MF.NegativeUpdateSyntaxTest11: update_test,
MF.QueryEvaluationTest: query_test,
MF.NegativeSyntaxTest11: query_test,
MF.PositiveSyntaxTest11: query_test,
MF.CSVResultFormatTest: query_test,
}
@pytest.fixture(scope="module", autouse=True)
def handle_flags():
setFlags()
yield
resetFlags()
@pytest.mark.parametrize(
"rdf_test_uri, type, rdf_test",
read_manifest("test/DAWG/data-r2/manifest-evaluation.ttl"),
)
def test_dawg_data_sparql10(rdf_test_uri: URIRef, type: Node, rdf_test: RDFTest):
testers[type](rdf_test)
@pytest.mark.parametrize(
"rdf_test_uri, type, rdf_test",
read_manifest("test/DAWG/data-sparql11/manifest-all.ttl"),
)
def test_dawg_data_sparql11(rdf_test_uri: URIRef, type: Node, rdf_test: RDFTest):
testers[type](rdf_test)
@pytest.mark.parametrize(
"rdf_test_uri, type, rdf_test", read_manifest("test/DAWG/rdflib/manifest.ttl")
)
def test_dawg_rdflib(rdf_test_uri: URIRef, type: Node, rdf_test: RDFTest):
testers[type](rdf_test)
|