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
|
"""
Tests for ConjunctiveGraph that do not depend on the underlying store
"""
from rdflib import ConjunctiveGraph, Graph
from rdflib.term import Identifier, URIRef, BNode
from rdflib.parser import StringInputSource
from os import path
DATA = u"""
<http://example.org/record/1> a <http://xmlns.com/foaf/0.1/Document> .
"""
PUBLIC_ID = u"http://example.org/record/1"
def test_bnode_publicid():
g = ConjunctiveGraph()
b = BNode()
data = '<d:d> <e:e> <f:f> .'
print("Parsing %r into %r" % (data, b))
g.parse(data=data, format='turtle', publicID=b)
triples = list(g.get_context(b).triples((None, None, None)))
if not triples:
raise Exception("No triples found in graph %r" % b)
u = URIRef(b)
triples = list(g.get_context(u).triples((None, None, None)))
if triples:
raise Exception("Bad: Found in graph %r: %r" % (u, triples))
def test_quad_contexts():
g = ConjunctiveGraph()
a = URIRef('urn:a')
b = URIRef('urn:b')
g.get_context(a).add((a, a, a))
g.addN([(b, b, b, b)])
assert set(g) == set([(a, a, a), (b, b, b)])
for q in g.quads():
assert isinstance(q[3], Graph)
def test_graph_ids():
def check(kws):
cg = ConjunctiveGraph()
cg.parse(**kws)
for g in cg.contexts():
gid = g.identifier
assert isinstance(gid, Identifier)
yield check, dict(data=DATA, publicID=PUBLIC_ID, format="turtle")
source = StringInputSource(DATA.encode('utf8'))
source.setPublicId(PUBLIC_ID)
yield check, dict(source=source, format='turtle')
if __name__ == '__main__':
import nose
nose.main(defaultTest=__name__)
|