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
|
"""
Test for empty xml:base values
xml:base='' should resolve to the given publicID per XML Base specification
and RDF/XML dependence on it
"""
from rdflib.graph import ConjunctiveGraph
from rdflib.term import URIRef
from rdflib.namespace import RDF, FOAF
from io import StringIO
import unittest
test_data = """
<rdf:RDF
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xml:base="">
<rdf:Description rdf:about="">
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
</rdf:Description>
</rdf:RDF>"""
test_data2 = """
<rdf:RDF
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xml:base="../">
<rdf:Description rdf:about="baz">
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
</rdf:Description>
</rdf:RDF>"""
baseUri = URIRef("http://example.com/")
baseUri2 = URIRef("http://example.com/foo/bar")
class TestEmptyBase(unittest.TestCase):
def setUp(self):
self.graph = ConjunctiveGraph()
self.graph.parse(StringIO(test_data), publicID=baseUri, format="xml")
def test_base_ref(self):
self.assertTrue(
len(list(self.graph)), "There should be at least one statement in the graph"
)
self.assertTrue(
(baseUri, RDF.type, FOAF.Document) in self.graph,
"There should be a triple with %s as the subject" % baseUri,
)
class TestRelativeBase(unittest.TestCase):
def setUp(self):
self.graph = ConjunctiveGraph()
self.graph.parse(StringIO(test_data2), publicID=baseUri2, format="xml")
def test_base_ref(self):
self.assertTrue(
len(self.graph), "There should be at least one statement in the graph"
)
resolvedBase = URIRef("http://example.com/baz")
self.assertTrue(
(resolvedBase, RDF.type, FOAF.Document) in self.graph,
"There should be a triple with %s as the subject" % resolvedBase,
)
if __name__ == "__main__":
unittest.main()
|