test_ldp.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. import pytest
  2. import uuid
  3. from hashlib import sha1
  4. from flask import url_for
  5. from rdflib import Graph
  6. from rdflib.namespace import RDF
  7. from rdflib.term import Literal, URIRef
  8. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  9. from lakesuperior.model.ldpr import Ldpr
  10. from lakesuperior.toolbox import Toolbox
  11. @pytest.fixture(scope='module')
  12. def random_uuid():
  13. return str(uuid.uuid4())
  14. @pytest.mark.usefixtures('client_class')
  15. @pytest.mark.usefixtures('db')
  16. class TestLdp:
  17. '''
  18. Test HTTP interaction with LDP endpoint.
  19. '''
  20. def test_get_root_node(self):
  21. '''
  22. Get the root node from two different endpoints.
  23. The test triplestore must be initialized, hence the `db` fixture.
  24. '''
  25. ldp_resp = self.client.get('/ldp')
  26. rest_resp = self.client.get('/rest')
  27. assert ldp_resp.status_code == 200
  28. assert rest_resp.status_code == 200
  29. #assert ldp_resp.data == rest_resp.data
  30. def test_put_empty_resource(self, random_uuid):
  31. '''
  32. Check response headers for a PUT operation with empty payload.
  33. '''
  34. res = self.client.put('/ldp/{}'.format(random_uuid))
  35. assert res.status_code == 201
  36. def test_put_existing_resource(self, random_uuid):
  37. '''
  38. Trying to PUT an existing resource should return a 204 if the payload
  39. is empty.
  40. '''
  41. path = '/ldp/nonidempotent01'
  42. assert self.client.put(path).status_code == 201
  43. assert self.client.get(path).status_code == 200
  44. assert self.client.put(path).status_code == 204
  45. def test_put_ldp_rs(self, client):
  46. '''
  47. PUT a resource with RDF payload and verify.
  48. '''
  49. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  50. self.client.put('/ldp/ldprs01', data=f, content_type='text/turtle')
  51. resp = self.client.get('/ldp/ldprs01', headers={'accept' : 'text/turtle'})
  52. assert resp.status_code == 200
  53. g = Graph().parse(data=resp.data, format='text/turtle')
  54. assert URIRef('http://vocab.getty.edu/ontology#Subject') in \
  55. g.objects(None, RDF.type)
  56. def test_put_ldp_nr(self, rnd_img):
  57. '''
  58. PUT a resource with binary payload and verify checksums.
  59. '''
  60. rnd_img['content'].seek(0)
  61. self.client.put('/ldp/ldpnr01', data=rnd_img['content'], headers={
  62. 'Content-Disposition' : 'attachment; filename={}'.format(
  63. rnd_img['filename'])})
  64. resp = self.client.get('/ldp/ldpnr01', headers={'accept' : 'image/png'})
  65. assert resp.status_code == 200
  66. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  67. def test_post_resource(self, client):
  68. '''
  69. Check response headers for a POST operation with empty payload.
  70. '''
  71. res = self.client.post('/ldp/')
  72. assert res.status_code == 201
  73. assert 'Location' in res.headers
  74. def test_post_slug(self):
  75. '''
  76. Verify that a POST with slug results in the expected URI only if the
  77. resource does not exist already.
  78. '''
  79. slug01_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  80. assert slug01_resp.status_code == 201
  81. assert slug01_resp.headers['location'] == \
  82. Toolbox().base_url + '/slug01'
  83. slug02_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  84. assert slug02_resp.status_code == 201
  85. assert slug02_resp.headers['location'] != \
  86. Toolbox().base_url + '/slug01'
  87. def test_post_404(self):
  88. '''
  89. Verify that a POST to a non-existing parent results in a 404.
  90. '''
  91. assert self.client.post('/ldp/{}'.format(uuid.uuid4()))\
  92. .status_code == 404
  93. def test_post_409(self, rnd_img):
  94. '''
  95. Verify that you cannot POST to a binary resource.
  96. '''
  97. rnd_img['content'].seek(0)
  98. self.client.put('/ldp/post_409', data=rnd_img['content'], headers={
  99. 'Content-Disposition' : 'attachment; filename={}'.format(
  100. rnd_img['filename'])})
  101. assert self.client.post('/ldp/post_409').status_code == 409
  102. def test_patch(self):
  103. '''
  104. Test patching a resource.
  105. '''
  106. path = '/ldp/test_patch01'
  107. self.client.put(path)
  108. uri = Toolbox().base_url + '/test_patch01'
  109. self.client.patch(path,
  110. data=open('tests/data/sparql_update/simple_insert.sparql'),
  111. headers={'content-type' : 'application/sparql-update'})
  112. resp = self.client.get(path)
  113. g = Graph().parse(data=resp.data, format='text/turtle')
  114. print('Triples after first PATCH: {}'.format(set(g)))
  115. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  116. self.client.patch(path,
  117. data=open('tests/data/sparql_update/delete+insert+where.sparql'),
  118. headers={'content-type' : 'application/sparql-update'})
  119. resp = self.client.get(path)
  120. g = Graph().parse(data=resp.data, format='text/turtle')
  121. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  122. def test_delete(self):
  123. create_resp = self.client.put('/ldp/test_delete01')
  124. delete_resp = self.client.delete('/ldp/test_delete01')
  125. assert delete_resp.status_code == 204
  126. def test_tombstone(self):
  127. tstone_resp = self.client.get('/ldp/test_delete01')
  128. assert tstone_resp.status_code == 410
  129. assert tstone_resp.headers['Link'] == \
  130. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  131. .format(Toolbox().base_url)
  132. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  133. assert self.client.get(tstone_path).status_code == 405
  134. assert self.client.put(tstone_path).status_code == 405
  135. assert self.client.post(tstone_path).status_code == 405
  136. assert self.client.delete(tstone_path).status_code == 204
  137. assert self.client.get('/ldp/test_delete01').status_code == 404
  138. @pytest.mark.usefixtures('client_class')
  139. @pytest.mark.usefixtures('db')
  140. class TestPrefHeader:
  141. '''
  142. Test various combinations of `Prefer` header.
  143. '''
  144. @pytest.fixture(scope='class')
  145. def cont_structure(self):
  146. '''
  147. Create a container structure to be used for subsequent requests.
  148. '''
  149. parent_path = '/ldp/test_parent'
  150. self.client.put(parent_path)
  151. self.client.put(parent_path + '/child1')
  152. self.client.put(parent_path + '/child2')
  153. self.client.put(parent_path + '/child3')
  154. return {
  155. 'path' : parent_path,
  156. 'response' : self.client.get(parent_path),
  157. 'subject' : URIRef(Toolbox().base_url + '/test_parent')
  158. }
  159. def test_put_prefer_handling(self, random_uuid):
  160. '''
  161. Trying to PUT an existing resource should:
  162. - Return a 204 if the payload is empty
  163. - Return a 204 if the payload is RDF, server-managed triples are
  164. included and the 'Prefer' header is set to 'handling=lenient'
  165. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  166. server-managed triples are included and handling is set to 'strict'
  167. '''
  168. path = '/ldp/put_pref_header01'
  169. assert self.client.put(path).status_code == 201
  170. assert self.client.get(path).status_code == 200
  171. assert self.client.put(path).status_code == 204
  172. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  173. rsp_len = self.client.put(
  174. '/ldp/{}'.format(random_uuid),
  175. headers={
  176. 'Prefer' : 'handling=lenient',
  177. 'Content-Type' : 'text/turtle',
  178. },
  179. data=f
  180. )
  181. assert rsp_len.status_code == 204
  182. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  183. rsp_strict = self.client.put(
  184. path,
  185. headers={
  186. 'Prefer' : 'handling=strict',
  187. 'Content-Type' : 'text/turtle',
  188. },
  189. data=f
  190. )
  191. assert rsp_strict.status_code == 412
  192. def test_embed_children(self, cont_structure):
  193. '''
  194. verify the "embed children" prefer header.
  195. '''
  196. parent_path = cont_structure['path']
  197. cont_resp = cont_structure['response']
  198. cont_subject = cont_structure['subject']
  199. minimal_resp = self.client.get(parent_path, headers={
  200. 'Prefer' : 'return=minimal',
  201. })
  202. incl_embed_children_resp = self.client.get(parent_path, headers={
  203. 'Prefer' : 'return=representation; include={}'\
  204. .format(Ldpr.EMBED_CHILD_RES_URI),
  205. })
  206. omit_embed_children_resp = self.client.get(parent_path, headers={
  207. 'Prefer' : 'return=representation; omit={}'\
  208. .format(Ldpr.EMBED_CHILD_RES_URI),
  209. })
  210. assert omit_embed_children_resp.data == cont_resp.data
  211. incl_g = Graph().parse(
  212. data=incl_embed_children_resp.data, format='turtle')
  213. omit_g = Graph().parse(
  214. data=omit_embed_children_resp.data, format='turtle')
  215. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  216. assert len(children) == 3
  217. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  218. for child_uri in children:
  219. assert set(incl_g[ child_uri : : ])
  220. assert not set(omit_g[ child_uri : : ])
  221. def test_return_children(self, cont_structure):
  222. '''
  223. verify the "return children" prefer header.
  224. '''
  225. parent_path = cont_structure['path']
  226. cont_resp = cont_structure['response']
  227. cont_subject = cont_structure['subject']
  228. incl_children_resp = self.client.get(parent_path, headers={
  229. 'Prefer' : 'return=representation; include={}'\
  230. .format(Ldpr.RETURN_CHILD_RES_URI),
  231. })
  232. omit_children_resp = self.client.get(parent_path, headers={
  233. 'Prefer' : 'return=representation; omit={}'\
  234. .format(Ldpr.RETURN_CHILD_RES_URI),
  235. })
  236. assert incl_children_resp.data == cont_resp.data
  237. incl_g = Graph().parse(data=incl_children_resp.data, format='turtle')
  238. omit_g = Graph().parse(data=omit_children_resp.data, format='turtle')
  239. children = incl_g[cont_subject : nsc['ldp'].contains]
  240. for child_uri in children:
  241. assert not omit_g[ cont_subject : nsc['ldp'].contains : child_uri ]
  242. def test_inbound_rel(self, cont_structure):
  243. '''
  244. verify the "inboud relationships" prefer header.
  245. '''
  246. parent_path = cont_structure['path']
  247. cont_resp = cont_structure['response']
  248. cont_subject = cont_structure['subject']
  249. incl_inbound_resp = self.client.get(parent_path, headers={
  250. 'Prefer' : 'return=representation; include={}'\
  251. .format(Ldpr.RETURN_INBOUND_REF_URI),
  252. })
  253. omit_inbound_resp = self.client.get(parent_path, headers={
  254. 'Prefer' : 'return=representation; omit={}'\
  255. .format(Ldpr.RETURN_INBOUND_REF_URI),
  256. })
  257. assert omit_inbound_resp.data == cont_resp.data
  258. incl_g = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  259. omit_g = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  260. assert set(incl_g[ : : cont_subject ])
  261. assert not set(omit_g[ : : cont_subject ])
  262. def test_srv_mgd_triples(self, cont_structure):
  263. '''
  264. verify the "server managed triples" prefer header.
  265. '''
  266. parent_path = cont_structure['path']
  267. cont_resp = cont_structure['response']
  268. cont_subject = cont_structure['subject']
  269. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  270. 'Prefer' : 'return=representation; include={}'\
  271. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  272. })
  273. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  274. 'Prefer' : 'return=representation; omit={}'\
  275. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  276. })
  277. assert incl_srv_mgd_resp.data == cont_resp.data
  278. incl_g = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  279. omit_g = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  280. for pred in {
  281. nsc['fcrepo'].created,
  282. nsc['fcrepo'].createdBy,
  283. nsc['fcrepo'].lastModified,
  284. nsc['fcrepo'].lastModifiedBy,
  285. nsc['ldp'].contains,
  286. }:
  287. assert set(incl_g[ cont_subject : pred : ])
  288. assert not set(omit_g[ cont_subject : pred : ])
  289. for type in {
  290. nsc['fcrepo'].Resource,
  291. nsc['ldp'].Container,
  292. nsc['ldp'].Resource,
  293. }:
  294. assert incl_g[ cont_subject : RDF.type : type ]
  295. assert not omit_g[ cont_subject : RDF.type : type ]