test_resource_api.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. import pdb
  2. import pytest
  3. from io import BytesIO
  4. from uuid import uuid4
  5. from rdflib import Graph, Literal, URIRef
  6. from lakesuperior.api import resource as rsrc_api
  7. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  8. from lakesuperior.exceptions import (
  9. IncompatibleLdpTypeError, InvalidResourceError, ResourceNotExistsError,
  10. TombstoneError)
  11. from lakesuperior.globals import RES_CREATED, RES_UPDATED
  12. from lakesuperior.model.ldpr import Ldpr
  13. @pytest.fixture(scope='module')
  14. def random_uuid():
  15. return str(uuid.uuid4())
  16. @pytest.mark.usefixtures('db')
  17. class TestResourceApi:
  18. '''
  19. Test interaction with the Resource API.
  20. '''
  21. def test_nodes_exist(self):
  22. """
  23. Verify whether nodes exist or not.
  24. """
  25. assert rsrc_api.exists('/') is True
  26. assert rsrc_api.exists('/{}'.format(uuid4())) is False
  27. def test_get_root_node_metadata(self):
  28. """
  29. Get the root node metadata.
  30. The ``dcterms:title`` property should NOT be included.
  31. """
  32. gr = rsrc_api.get_metadata('/')
  33. assert isinstance(gr, Graph)
  34. assert len(gr) == 9
  35. assert gr[gr.identifier : nsc['rdf'].type : nsc['ldp'].Resource ]
  36. assert not gr[gr.identifier : nsc['dcterms'].title : "Repository Root"]
  37. def test_get_root_node(self):
  38. """
  39. Get the root node.
  40. The ``dcterms:title`` property should be included.
  41. """
  42. rsrc = rsrc_api.get('/')
  43. assert isinstance(rsrc, Ldpr)
  44. gr = rsrc.imr
  45. assert len(gr) == 10
  46. assert gr[gr.identifier : nsc['rdf'].type : nsc['ldp'].Resource ]
  47. assert gr[
  48. gr.identifier : nsc['dcterms'].title : Literal('Repository Root')]
  49. def test_get_nonexisting_node(self):
  50. """
  51. Get a non-existing node.
  52. """
  53. with pytest.raises(ResourceNotExistsError):
  54. gr = rsrc_api.get('/{}'.format(uuid4()))
  55. def test_create_from_graph(self):
  56. """
  57. Create a resource from a provided graph.
  58. """
  59. uid = '/rsrc_from_graph'
  60. uri = nsc['fcres'][uid]
  61. gr = Graph().parse(
  62. data='<> a <http://ex.org/type#A> .', format='turtle',
  63. publicID=uri)
  64. #pdb.set_trace()
  65. evt = rsrc_api.create_or_replace(uid, init_gr=gr)
  66. rsrc = rsrc_api.get(uid)
  67. assert rsrc.imr[
  68. rsrc.uri : nsc['rdf'].type : URIRef('http://ex.org/type#A')]
  69. assert rsrc.imr[
  70. rsrc.uri : nsc['rdf'].type : nsc['ldp'].RDFSource]
  71. def test_create_from_rdf_stream(self):
  72. """
  73. Create a resource from a RDF stream (Turtle).
  74. This is the same method used by the LDP endpoint.
  75. """
  76. uid = '/rsrc_from_stream'
  77. uri = nsc['fcres'][uid]
  78. stream = BytesIO(b'<> a <http://ex.org/type#B> .')
  79. #pdb.set_trace()
  80. evt = rsrc_api.create_or_replace(
  81. uid, stream=stream, mimetype='text/turtle')
  82. rsrc = rsrc_api.get(uid)
  83. assert rsrc.imr[
  84. rsrc.uri : nsc['rdf'].type : URIRef('http://ex.org/type#B')]
  85. assert rsrc.imr[
  86. rsrc.uri : nsc['rdf'].type : nsc['ldp'].RDFSource]
  87. def test_create_ldp_nr(self):
  88. """
  89. Create a non-RDF resource (LDP-NR).
  90. """
  91. uid = '/{}'.format(uuid4())
  92. data = b'Hello. This is some dummy content.'
  93. rsrc_api.create_or_replace(
  94. uid, stream=BytesIO(data), mimetype='text/plain')
  95. rsrc = rsrc_api.get(uid)
  96. assert rsrc.content.read() == data
  97. def test_replace_rsrc(self):
  98. uid = '/test_replace'
  99. uri = nsc['fcres'][uid]
  100. gr1 = Graph().parse(
  101. data='<> a <http://ex.org/type#A> .', format='turtle',
  102. publicID=uri)
  103. evt = rsrc_api.create_or_replace(uid, init_gr=gr1)
  104. assert evt == RES_CREATED
  105. rsrc = rsrc_api.get(uid)
  106. assert rsrc.imr[
  107. rsrc.uri : nsc['rdf'].type : URIRef('http://ex.org/type#A')]
  108. assert rsrc.imr[
  109. rsrc.uri : nsc['rdf'].type : nsc['ldp'].RDFSource]
  110. gr2 = Graph().parse(
  111. data='<> a <http://ex.org/type#B> .', format='turtle',
  112. publicID=uri)
  113. #pdb.set_trace()
  114. evt = rsrc_api.create_or_replace(uid, init_gr=gr2)
  115. assert evt == RES_UPDATED
  116. rsrc = rsrc_api.get(uid)
  117. assert not rsrc.imr[
  118. rsrc.uri : nsc['rdf'].type : URIRef('http://ex.org/type#A')]
  119. assert rsrc.imr[
  120. rsrc.uri : nsc['rdf'].type : URIRef('http://ex.org/type#B')]
  121. assert rsrc.imr[
  122. rsrc.uri : nsc['rdf'].type : nsc['ldp'].RDFSource]
  123. def test_replace_incompatible_type(self):
  124. """
  125. Verify replacing resources with incompatible type.
  126. Replacing a LDP-NR with a LDP-RS, or vice versa, should fail.
  127. """
  128. uid_rs = '/test_incomp_rs'
  129. uid_nr = '/test_incomp_nr'
  130. data = b'mock binary content'
  131. gr = Graph().parse(
  132. data='<> a <http://ex.org/type#A> .', format='turtle',
  133. publicID=nsc['fcres'][uid_rs])
  134. rsrc_api.create_or_replace(uid_rs, init_gr=gr)
  135. rsrc_api.create_or_replace(
  136. uid_nr, stream=BytesIO(data), mimetype='text/plain')
  137. with pytest.raises(IncompatibleLdpTypeError):
  138. rsrc_api.create_or_replace(uid_nr, init_gr=gr)
  139. with pytest.raises(IncompatibleLdpTypeError):
  140. rsrc_api.create_or_replace(
  141. uid_rs, stream=BytesIO(data), mimetype='text/plain')
  142. with pytest.raises(IncompatibleLdpTypeError):
  143. rsrc_api.create_or_replace(uid_nr)