test_ldp.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  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. '''
  126. Test delete response codes.
  127. '''
  128. create_resp = self.client.put('/ldp/test_delete01')
  129. delete_resp = self.client.delete('/ldp/test_delete01')
  130. assert delete_resp.status_code == 204
  131. bogus_delete_resp = self.client.delete('/ldp/test_delete101')
  132. assert bogus_delete_resp.status_code == 404
  133. def test_tombstone(self):
  134. '''
  135. Test tombstone behaviors.
  136. '''
  137. tstone_resp = self.client.get('/ldp/test_delete01')
  138. assert tstone_resp.status_code == 410
  139. assert tstone_resp.headers['Link'] == \
  140. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  141. .format(Toolbox().base_url)
  142. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  143. assert self.client.get(tstone_path).status_code == 405
  144. assert self.client.put(tstone_path).status_code == 405
  145. assert self.client.post(tstone_path).status_code == 405
  146. assert self.client.delete(tstone_path).status_code == 204
  147. assert self.client.get('/ldp/test_delete01').status_code == 404
  148. def test_delete_recursive(self):
  149. '''
  150. Test response codes for resources deleted recursively and their
  151. tombstones.
  152. '''
  153. self.client.put('/ldp/test_delete_recursive01')
  154. self.client.put('/ldp/test_delete_recursive01/a')
  155. self.client.delete('/ldp/test_delete_recursive01')
  156. tstone_resp = self.client.get('/ldp/test_delete_recursive01')
  157. assert tstone_resp.status_code == 410
  158. assert tstone_resp.headers['Link'] == \
  159. '<{}/test_delete_recursive01/fcr:tombstone>; rel="hasTombstone"'\
  160. .format(Toolbox().base_url)
  161. child_tstone_resp = self.client.get('/ldp/test_delete_recursive01/a')
  162. assert child_tstone_resp.status_code == tstone_resp.status_code
  163. assert 'Link' not in child_tstone_resp.headers.keys()
  164. @pytest.mark.usefixtures('client_class')
  165. @pytest.mark.usefixtures('db')
  166. class TestPrefHeader:
  167. '''
  168. Test various combinations of `Prefer` header.
  169. '''
  170. @pytest.fixture(scope='class')
  171. def cont_structure(self):
  172. '''
  173. Create a container structure to be used for subsequent requests.
  174. '''
  175. parent_path = '/ldp/test_parent'
  176. self.client.put(parent_path)
  177. self.client.put(parent_path + '/child1')
  178. self.client.put(parent_path + '/child2')
  179. self.client.put(parent_path + '/child3')
  180. return {
  181. 'path' : parent_path,
  182. 'response' : self.client.get(parent_path),
  183. 'subject' : URIRef(Toolbox().base_url + '/test_parent')
  184. }
  185. def test_put_prefer_handling(self, random_uuid):
  186. '''
  187. Trying to PUT an existing resource should:
  188. - Return a 204 if the payload is empty
  189. - Return a 204 if the payload is RDF, server-managed triples are
  190. included and the 'Prefer' header is set to 'handling=lenient'
  191. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  192. server-managed triples are included and handling is set to 'strict'
  193. '''
  194. path = '/ldp/put_pref_header01'
  195. assert self.client.put(path).status_code == 201
  196. assert self.client.get(path).status_code == 200
  197. assert self.client.put(path).status_code == 204
  198. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  199. rsp_len = self.client.put(
  200. '/ldp/{}'.format(random_uuid),
  201. headers={
  202. 'Prefer' : 'handling=lenient',
  203. 'Content-Type' : 'text/turtle',
  204. },
  205. data=f
  206. )
  207. assert rsp_len.status_code == 204
  208. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  209. rsp_strict = self.client.put(
  210. path,
  211. headers={
  212. 'Prefer' : 'handling=strict',
  213. 'Content-Type' : 'text/turtle',
  214. },
  215. data=f
  216. )
  217. assert rsp_strict.status_code == 412
  218. def test_embed_children(self, cont_structure):
  219. '''
  220. verify the "embed children" prefer header.
  221. '''
  222. parent_path = cont_structure['path']
  223. cont_resp = cont_structure['response']
  224. cont_subject = cont_structure['subject']
  225. minimal_resp = self.client.get(parent_path, headers={
  226. 'Prefer' : 'return=minimal',
  227. })
  228. incl_embed_children_resp = self.client.get(parent_path, headers={
  229. 'Prefer' : 'return=representation; include={}'\
  230. .format(Ldpr.EMBED_CHILD_RES_URI),
  231. })
  232. omit_embed_children_resp = self.client.get(parent_path, headers={
  233. 'Prefer' : 'return=representation; omit={}'\
  234. .format(Ldpr.EMBED_CHILD_RES_URI),
  235. })
  236. assert omit_embed_children_resp.data == cont_resp.data
  237. incl_g = Graph().parse(
  238. data=incl_embed_children_resp.data, format='turtle')
  239. omit_g = Graph().parse(
  240. data=omit_embed_children_resp.data, format='turtle')
  241. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  242. assert len(children) == 3
  243. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  244. for child_uri in children:
  245. assert set(incl_g[ child_uri : : ])
  246. assert not set(omit_g[ child_uri : : ])
  247. def test_return_children(self, cont_structure):
  248. '''
  249. verify the "return children" prefer header.
  250. '''
  251. parent_path = cont_structure['path']
  252. cont_resp = cont_structure['response']
  253. cont_subject = cont_structure['subject']
  254. incl_children_resp = self.client.get(parent_path, headers={
  255. 'Prefer' : 'return=representation; include={}'\
  256. .format(Ldpr.RETURN_CHILD_RES_URI),
  257. })
  258. omit_children_resp = self.client.get(parent_path, headers={
  259. 'Prefer' : 'return=representation; omit={}'\
  260. .format(Ldpr.RETURN_CHILD_RES_URI),
  261. })
  262. assert incl_children_resp.data == cont_resp.data
  263. incl_g = Graph().parse(data=incl_children_resp.data, format='turtle')
  264. omit_g = Graph().parse(data=omit_children_resp.data, format='turtle')
  265. children = incl_g[cont_subject : nsc['ldp'].contains]
  266. for child_uri in children:
  267. assert not omit_g[ cont_subject : nsc['ldp'].contains : child_uri ]
  268. def test_inbound_rel(self, cont_structure):
  269. '''
  270. verify the "inboud relationships" prefer header.
  271. '''
  272. parent_path = cont_structure['path']
  273. cont_resp = cont_structure['response']
  274. cont_subject = cont_structure['subject']
  275. incl_inbound_resp = self.client.get(parent_path, headers={
  276. 'Prefer' : 'return=representation; include={}'\
  277. .format(Ldpr.RETURN_INBOUND_REF_URI),
  278. })
  279. omit_inbound_resp = self.client.get(parent_path, headers={
  280. 'Prefer' : 'return=representation; omit={}'\
  281. .format(Ldpr.RETURN_INBOUND_REF_URI),
  282. })
  283. assert omit_inbound_resp.data == cont_resp.data
  284. incl_g = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  285. omit_g = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  286. assert set(incl_g[ : : cont_subject ])
  287. assert not set(omit_g[ : : cont_subject ])
  288. def test_srv_mgd_triples(self, cont_structure):
  289. '''
  290. verify the "server managed triples" prefer header.
  291. '''
  292. parent_path = cont_structure['path']
  293. cont_resp = cont_structure['response']
  294. cont_subject = cont_structure['subject']
  295. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  296. 'Prefer' : 'return=representation; include={}'\
  297. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  298. })
  299. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  300. 'Prefer' : 'return=representation; omit={}'\
  301. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  302. })
  303. assert incl_srv_mgd_resp.data == cont_resp.data
  304. incl_g = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  305. omit_g = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  306. for pred in {
  307. nsc['fcrepo'].created,
  308. nsc['fcrepo'].createdBy,
  309. nsc['fcrepo'].lastModified,
  310. nsc['fcrepo'].lastModifiedBy,
  311. nsc['ldp'].contains,
  312. }:
  313. assert set(incl_g[ cont_subject : pred : ])
  314. assert not set(omit_g[ cont_subject : pred : ])
  315. for type in {
  316. nsc['fcrepo'].Resource,
  317. nsc['ldp'].Container,
  318. nsc['ldp'].Resource,
  319. }:
  320. assert incl_g[ cont_subject : RDF.type : type ]
  321. assert not omit_g[ cont_subject : RDF.type : type ]
  322. def test_delete_no_tstone(self):
  323. '''
  324. Test the `no-tombstone` Prefer option.
  325. '''
  326. self.client.put('/ldp/test_delete_no_tstone01')
  327. self.client.put('/ldp/test_delete_no_tstone01/a')
  328. self.client.delete('/ldp/test_delete_no_tstone01', headers={
  329. 'prefer' : 'no-tombstone'})
  330. resp = self.client.get('/ldp/test_delete_no_tstone01')
  331. assert resp.status_code == 404
  332. child_resp = self.client.get('/ldp/test_delete_no_tstone01/a')
  333. assert child_resp.status_code == 404