test_ldp.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  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. resp = self.client.put('/ldp/ldpnr01', data=rnd_img['content'],
  62. headers={
  63. 'Content-Disposition' : 'attachment; filename={}'.format(
  64. rnd_img['filename'])})
  65. assert resp.status_code == 201
  66. resp = self.client.get('/ldp/ldpnr01', headers={'accept' : 'image/png'})
  67. assert resp.status_code == 200
  68. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  69. def test_post_resource(self, client):
  70. '''
  71. Check response headers for a POST operation with empty payload.
  72. '''
  73. res = self.client.post('/ldp/')
  74. assert res.status_code == 201
  75. assert 'Location' in res.headers
  76. def test_post_slug(self):
  77. '''
  78. Verify that a POST with slug results in the expected URI only if the
  79. resource does not exist already.
  80. '''
  81. slug01_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  82. assert slug01_resp.status_code == 201
  83. assert slug01_resp.headers['location'] == \
  84. Toolbox().base_url + '/slug01'
  85. slug02_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  86. assert slug02_resp.status_code == 201
  87. assert slug02_resp.headers['location'] != \
  88. Toolbox().base_url + '/slug01'
  89. def test_post_404(self):
  90. '''
  91. Verify that a POST to a non-existing parent results in a 404.
  92. '''
  93. assert self.client.post('/ldp/{}'.format(uuid.uuid4()))\
  94. .status_code == 404
  95. def test_post_409(self, rnd_img):
  96. '''
  97. Verify that you cannot POST to a binary resource.
  98. '''
  99. rnd_img['content'].seek(0)
  100. self.client.put('/ldp/post_409', data=rnd_img['content'], headers={
  101. 'Content-Disposition' : 'attachment; filename={}'.format(
  102. rnd_img['filename'])})
  103. assert self.client.post('/ldp/post_409').status_code == 409
  104. def test_patch(self):
  105. '''
  106. Test patching a resource.
  107. '''
  108. path = '/ldp/test_patch01'
  109. self.client.put(path)
  110. uri = Toolbox().base_url + '/test_patch01'
  111. self.client.patch(path,
  112. data=open('tests/data/sparql_update/simple_insert.sparql'),
  113. headers={'content-type' : 'application/sparql-update'})
  114. resp = self.client.get(path)
  115. g = Graph().parse(data=resp.data, format='text/turtle')
  116. print('Triples after first PATCH: {}'.format(set(g)))
  117. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  118. self.client.patch(path,
  119. data=open('tests/data/sparql_update/delete+insert+where.sparql'),
  120. headers={'content-type' : 'application/sparql-update'})
  121. resp = self.client.get(path)
  122. g = Graph().parse(data=resp.data, format='text/turtle')
  123. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  124. def test_delete(self):
  125. create_resp = self.client.put('/ldp/test_delete01')
  126. delete_resp = self.client.delete('/ldp/test_delete01')
  127. assert delete_resp.status_code == 204
  128. def test_tombstone(self):
  129. tstone_resp = self.client.get('/ldp/test_delete01')
  130. assert tstone_resp.status_code == 410
  131. assert tstone_resp.headers['Link'] == \
  132. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  133. .format(Toolbox().base_url)
  134. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  135. assert self.client.get(tstone_path).status_code == 405
  136. assert self.client.put(tstone_path).status_code == 405
  137. assert self.client.post(tstone_path).status_code == 405
  138. assert self.client.delete(tstone_path).status_code == 204
  139. assert self.client.get('/ldp/test_delete01').status_code == 404
  140. @pytest.mark.usefixtures('client_class')
  141. @pytest.mark.usefixtures('db')
  142. class TestPrefHeader:
  143. '''
  144. Test various combinations of `Prefer` header.
  145. '''
  146. @pytest.fixture(scope='class')
  147. def cont_structure(self):
  148. '''
  149. Create a container structure to be used for subsequent requests.
  150. '''
  151. parent_path = '/ldp/test_parent'
  152. self.client.put(parent_path)
  153. self.client.put(parent_path + '/child1')
  154. self.client.put(parent_path + '/child2')
  155. self.client.put(parent_path + '/child3')
  156. return {
  157. 'path' : parent_path,
  158. 'response' : self.client.get(parent_path),
  159. 'subject' : URIRef(Toolbox().base_url + '/test_parent')
  160. }
  161. def test_put_prefer_handling(self, random_uuid):
  162. '''
  163. Trying to PUT an existing resource should:
  164. - Return a 204 if the payload is empty
  165. - Return a 204 if the payload is RDF, server-managed triples are
  166. included and the 'Prefer' header is set to 'handling=lenient'
  167. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  168. server-managed triples are included and handling is set to 'strict'
  169. '''
  170. path = '/ldp/put_pref_header01'
  171. assert self.client.put(path).status_code == 201
  172. assert self.client.get(path).status_code == 200
  173. assert self.client.put(path).status_code == 204
  174. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  175. rsp_len = self.client.put(
  176. '/ldp/{}'.format(random_uuid),
  177. headers={
  178. 'Prefer' : 'handling=lenient',
  179. 'Content-Type' : 'text/turtle',
  180. },
  181. data=f
  182. )
  183. assert rsp_len.status_code == 204
  184. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  185. rsp_strict = self.client.put(
  186. path,
  187. headers={
  188. 'Prefer' : 'handling=strict',
  189. 'Content-Type' : 'text/turtle',
  190. },
  191. data=f
  192. )
  193. assert rsp_strict.status_code == 412
  194. def test_embed_children(self, cont_structure):
  195. '''
  196. verify the "embed children" prefer header.
  197. '''
  198. parent_path = cont_structure['path']
  199. cont_resp = cont_structure['response']
  200. cont_subject = cont_structure['subject']
  201. minimal_resp = self.client.get(parent_path, headers={
  202. 'Prefer' : 'return=minimal',
  203. })
  204. incl_embed_children_resp = self.client.get(parent_path, headers={
  205. 'Prefer' : 'return=representation; include={}'\
  206. .format(Ldpr.EMBED_CHILD_RES_URI),
  207. })
  208. omit_embed_children_resp = self.client.get(parent_path, headers={
  209. 'Prefer' : 'return=representation; omit={}'\
  210. .format(Ldpr.EMBED_CHILD_RES_URI),
  211. })
  212. assert omit_embed_children_resp.data == cont_resp.data
  213. incl_g = Graph().parse(
  214. data=incl_embed_children_resp.data, format='turtle')
  215. omit_g = Graph().parse(
  216. data=omit_embed_children_resp.data, format='turtle')
  217. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  218. assert len(children) == 3
  219. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  220. for child_uri in children:
  221. assert set(incl_g[ child_uri : : ])
  222. assert not set(omit_g[ child_uri : : ])
  223. def test_return_children(self, cont_structure):
  224. '''
  225. verify the "return children" prefer header.
  226. '''
  227. parent_path = cont_structure['path']
  228. cont_resp = cont_structure['response']
  229. cont_subject = cont_structure['subject']
  230. incl_children_resp = self.client.get(parent_path, headers={
  231. 'Prefer' : 'return=representation; include={}'\
  232. .format(Ldpr.RETURN_CHILD_RES_URI),
  233. })
  234. omit_children_resp = self.client.get(parent_path, headers={
  235. 'Prefer' : 'return=representation; omit={}'\
  236. .format(Ldpr.RETURN_CHILD_RES_URI),
  237. })
  238. assert incl_children_resp.data == cont_resp.data
  239. incl_g = Graph().parse(data=incl_children_resp.data, format='turtle')
  240. omit_g = Graph().parse(data=omit_children_resp.data, format='turtle')
  241. children = incl_g[cont_subject : nsc['ldp'].contains]
  242. for child_uri in children:
  243. assert not omit_g[ cont_subject : nsc['ldp'].contains : child_uri ]
  244. def test_inbound_rel(self, cont_structure):
  245. '''
  246. verify the "inboud relationships" prefer header.
  247. '''
  248. parent_path = cont_structure['path']
  249. cont_resp = cont_structure['response']
  250. cont_subject = cont_structure['subject']
  251. incl_inbound_resp = self.client.get(parent_path, headers={
  252. 'Prefer' : 'return=representation; include={}'\
  253. .format(Ldpr.RETURN_INBOUND_REF_URI),
  254. })
  255. omit_inbound_resp = self.client.get(parent_path, headers={
  256. 'Prefer' : 'return=representation; omit={}'\
  257. .format(Ldpr.RETURN_INBOUND_REF_URI),
  258. })
  259. assert omit_inbound_resp.data == cont_resp.data
  260. incl_g = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  261. omit_g = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  262. assert set(incl_g[ : : cont_subject ])
  263. assert not set(omit_g[ : : cont_subject ])
  264. def test_srv_mgd_triples(self, cont_structure):
  265. '''
  266. verify the "server managed triples" prefer header.
  267. '''
  268. parent_path = cont_structure['path']
  269. cont_resp = cont_structure['response']
  270. cont_subject = cont_structure['subject']
  271. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  272. 'Prefer' : 'return=representation; include={}'\
  273. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  274. })
  275. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  276. 'Prefer' : 'return=representation; omit={}'\
  277. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  278. })
  279. assert incl_srv_mgd_resp.data == cont_resp.data
  280. incl_g = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  281. omit_g = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  282. for pred in {
  283. nsc['fcrepo'].created,
  284. nsc['fcrepo'].createdBy,
  285. nsc['fcrepo'].lastModified,
  286. nsc['fcrepo'].lastModifiedBy,
  287. nsc['ldp'].contains,
  288. }:
  289. assert set(incl_g[ cont_subject : pred : ])
  290. assert not set(omit_g[ cont_subject : pred : ])
  291. for type in {
  292. nsc['fcrepo'].Resource,
  293. nsc['ldp'].Container,
  294. nsc['ldp'].Resource,
  295. }:
  296. assert incl_g[ cont_subject : RDF.type : type ]
  297. assert not omit_g[ cont_subject : RDF.type : type ]