test_ldp.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  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_tree(self, client):
  46. '''
  47. PUT a resource with several path segments.
  48. The test should create intermediate path segments that are not
  49. accessible to PUT but allow POST.
  50. '''
  51. path = '/ldp/test_tree/a/b/c/d/e/f/g'
  52. self.client.put(path)
  53. assert self.client.get(path).resp.status_code == 200
  54. assert self.client.put('/ldp/test_tree/a').resp.status_code == 409
  55. assert self.client.post('/ldp/test_tree/a').resp.status_code == 201
  56. def test_put_ldp_rs(self, client):
  57. '''
  58. PUT a resource with RDF payload and verify.
  59. '''
  60. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  61. self.client.put('/ldp/ldprs01', data=f, content_type='text/turtle')
  62. resp = self.client.get('/ldp/ldprs01',
  63. headers={'accept' : 'text/turtle'})
  64. assert resp.status_code == 200
  65. g = Graph().parse(data=resp.data, format='text/turtle')
  66. assert URIRef('http://vocab.getty.edu/ontology#Subject') in \
  67. g.objects(None, RDF.type)
  68. def test_put_ldp_nr(self, rnd_img):
  69. '''
  70. PUT a resource with binary payload and verify checksums.
  71. '''
  72. rnd_img['content'].seek(0)
  73. resp = self.client.put('/ldp/ldpnr01', data=rnd_img['content'],
  74. headers={
  75. 'Content-Disposition' : 'attachment; filename={}'.format(
  76. rnd_img['filename'])})
  77. assert resp.status_code == 201
  78. resp = self.client.get('/ldp/ldpnr01', headers={'accept' : 'image/png'})
  79. assert resp.status_code == 200
  80. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  81. def test_put_mismatched_ldp_rs(self, rnd_img):
  82. '''
  83. Verify MIME type / LDP mismatch.
  84. PUT a LDP-RS, then PUT a LDP-NR on the same location and verify it
  85. fails.
  86. '''
  87. path = '/ldp/' + str(uuid.uuid4())
  88. rnd_img['content'].seek(0)
  89. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  90. headers={
  91. 'Content-Disposition' : 'attachment; filename={}'.format(
  92. rnd_img['filename'])})
  93. assert ldp_nr_resp.status_code == 201
  94. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  95. ldp_rs_resp = self.client.put(path, data=f,
  96. content_type='text/turtle')
  97. assert ldp_rs_resp.status_code == 415
  98. def test_put_mismatched_ldp_nr(self, rnd_img):
  99. '''
  100. Verify MIME type / LDP mismatch.
  101. PUT a LDP-NR, then PUT a LDP-RS on the same location and verify it
  102. fails.
  103. '''
  104. path = '/ldp/' + str(uuid.uuid4())
  105. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  106. ldp_rs_resp = self.client.put(path, data=f,
  107. content_type='text/turtle')
  108. assert ldp_rs_resp.status_code == 201
  109. rnd_img['content'].seek(0)
  110. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  111. headers={
  112. 'Content-Disposition' : 'attachment; filename={}'.format(
  113. rnd_img['filename'])})
  114. assert ldp_nr_resp.status_code == 415
  115. def test_post_resource(self, client):
  116. '''
  117. Check response headers for a POST operation with empty payload.
  118. '''
  119. res = self.client.post('/ldp/')
  120. assert res.status_code == 201
  121. assert 'Location' in res.headers
  122. def test_post_slug(self):
  123. '''
  124. Verify that a POST with slug results in the expected URI only if the
  125. resource does not exist already.
  126. '''
  127. slug01_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  128. assert slug01_resp.status_code == 201
  129. assert slug01_resp.headers['location'] == \
  130. Toolbox().base_url + '/slug01'
  131. slug02_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  132. assert slug02_resp.status_code == 201
  133. assert slug02_resp.headers['location'] != \
  134. Toolbox().base_url + '/slug01'
  135. def test_post_404(self):
  136. '''
  137. Verify that a POST to a non-existing parent results in a 404.
  138. '''
  139. assert self.client.post('/ldp/{}'.format(uuid.uuid4()))\
  140. .status_code == 404
  141. def test_post_409(self, rnd_img):
  142. '''
  143. Verify that you cannot POST to a binary resource.
  144. '''
  145. rnd_img['content'].seek(0)
  146. self.client.put('/ldp/post_409', data=rnd_img['content'], headers={
  147. 'Content-Disposition' : 'attachment; filename={}'.format(
  148. rnd_img['filename'])})
  149. assert self.client.post('/ldp/post_409').status_code == 409
  150. def test_patch(self):
  151. '''
  152. Test patching a resource.
  153. '''
  154. path = '/ldp/test_patch01'
  155. self.client.put(path)
  156. uri = Toolbox().base_url + '/test_patch01'
  157. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  158. resp = self.client.patch(path,
  159. data=data,
  160. headers={'content-type' : 'application/sparql-update'})
  161. assert resp.status_code == 204
  162. resp = self.client.get(path)
  163. g = Graph().parse(data=resp.data, format='text/turtle')
  164. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  165. self.client.patch(path,
  166. data=open('tests/data/sparql_update/delete+insert+where.sparql'),
  167. headers={'content-type' : 'application/sparql-update'})
  168. resp = self.client.get(path)
  169. g = Graph().parse(data=resp.data, format='text/turtle')
  170. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  171. def test_patch_ldp_nr_metadata(self):
  172. '''
  173. Test patching a LDP-NR metadata resource, both from the fcr:metadata
  174. and the resource URIs.
  175. '''
  176. path = '/ldp/ldpnr01'
  177. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  178. self.client.patch(path + '/fcr:metadata',
  179. data=data,
  180. headers={'content-type' : 'application/sparql-update'})
  181. resp = self.client.get(path + '/fcr:metadata')
  182. assert resp.status_code == 200
  183. uri = Toolbox().base_url + '/ldpnr01'
  184. g = Graph().parse(data=resp.data, format='text/turtle')
  185. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  186. with open(
  187. 'tests/data/sparql_update/delete+insert+where.sparql') as data:
  188. patch_resp = self.client.patch(path,
  189. data=data,
  190. headers={'content-type' : 'application/sparql-update'})
  191. assert patch_resp.status_code == 204
  192. resp = self.client.get(path + '/fcr:metadata')
  193. assert resp.status_code == 200
  194. g = Graph().parse(data=resp.data, format='text/turtle')
  195. assert g[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  196. def test_patch_ldp_nr(self, rnd_img):
  197. '''
  198. Verify that a PATCH using anything other than an
  199. `application/sparql-update` MIME type results in an error.
  200. '''
  201. rnd_img['content'].seek(0)
  202. resp = self.client.patch('/ldp/ldpnr01/fcr:metadata',
  203. data=rnd_img,
  204. headers={'content-type' : 'image/jpeg'})
  205. assert resp.status_code == 415
  206. def test_delete(self):
  207. '''
  208. Test delete response codes.
  209. '''
  210. create_resp = self.client.put('/ldp/test_delete01')
  211. delete_resp = self.client.delete('/ldp/test_delete01')
  212. assert delete_resp.status_code == 204
  213. bogus_delete_resp = self.client.delete('/ldp/test_delete101')
  214. assert bogus_delete_resp.status_code == 404
  215. def test_tombstone(self):
  216. '''
  217. Test tombstone behaviors.
  218. '''
  219. tstone_resp = self.client.get('/ldp/test_delete01')
  220. assert tstone_resp.status_code == 410
  221. assert tstone_resp.headers['Link'] == \
  222. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  223. .format(Toolbox().base_url)
  224. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  225. assert self.client.get(tstone_path).status_code == 405
  226. assert self.client.put(tstone_path).status_code == 405
  227. assert self.client.post(tstone_path).status_code == 405
  228. assert self.client.delete(tstone_path).status_code == 204
  229. assert self.client.get('/ldp/test_delete01').status_code == 404
  230. def test_delete_recursive(self):
  231. '''
  232. Test response codes for resources deleted recursively and their
  233. tombstones.
  234. '''
  235. self.client.put('/ldp/test_delete_recursive01')
  236. self.client.put('/ldp/test_delete_recursive01/a')
  237. self.client.delete('/ldp/test_delete_recursive01')
  238. tstone_resp = self.client.get('/ldp/test_delete_recursive01')
  239. assert tstone_resp.status_code == 410
  240. assert tstone_resp.headers['Link'] == \
  241. '<{}/test_delete_recursive01/fcr:tombstone>; rel="hasTombstone"'\
  242. .format(Toolbox().base_url)
  243. child_tstone_resp = self.client.get('/ldp/test_delete_recursive01/a')
  244. assert child_tstone_resp.status_code == tstone_resp.status_code
  245. assert 'Link' not in child_tstone_resp.headers.keys()
  246. @pytest.mark.usefixtures('client_class')
  247. @pytest.mark.usefixtures('db')
  248. class TestPrefHeader:
  249. '''
  250. Test various combinations of `Prefer` header.
  251. '''
  252. @pytest.fixture(scope='class')
  253. def cont_structure(self):
  254. '''
  255. Create a container structure to be used for subsequent requests.
  256. '''
  257. parent_path = '/ldp/test_parent'
  258. self.client.put(parent_path)
  259. self.client.put(parent_path + '/child1')
  260. self.client.put(parent_path + '/child2')
  261. self.client.put(parent_path + '/child3')
  262. return {
  263. 'path' : parent_path,
  264. 'response' : self.client.get(parent_path),
  265. 'subject' : URIRef(Toolbox().base_url + '/test_parent')
  266. }
  267. def test_put_prefer_handling(self, random_uuid):
  268. '''
  269. Trying to PUT an existing resource should:
  270. - Return a 204 if the payload is empty
  271. - Return a 204 if the payload is RDF, server-managed triples are
  272. included and the 'Prefer' header is set to 'handling=lenient'
  273. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  274. server-managed triples are included and handling is set to 'strict'
  275. '''
  276. path = '/ldp/put_pref_header01'
  277. assert self.client.put(path).status_code == 201
  278. assert self.client.get(path).status_code == 200
  279. assert self.client.put(path).status_code == 204
  280. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  281. rsp_len = self.client.put(
  282. path,
  283. headers={
  284. 'Prefer' : 'handling=lenient',
  285. 'Content-Type' : 'text/turtle',
  286. },
  287. data=f
  288. )
  289. assert rsp_len.status_code == 204
  290. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  291. rsp_strict = self.client.put(
  292. path,
  293. headers={
  294. 'Prefer' : 'handling=strict',
  295. 'Content-Type' : 'text/turtle',
  296. },
  297. data=f
  298. )
  299. assert rsp_strict.status_code == 412
  300. def test_embed_children(self, cont_structure):
  301. '''
  302. verify the "embed children" prefer header.
  303. '''
  304. parent_path = cont_structure['path']
  305. cont_resp = cont_structure['response']
  306. cont_subject = cont_structure['subject']
  307. minimal_resp = self.client.get(parent_path, headers={
  308. 'Prefer' : 'return=minimal',
  309. })
  310. incl_embed_children_resp = self.client.get(parent_path, headers={
  311. 'Prefer' : 'return=representation; include={}'\
  312. .format(Ldpr.EMBED_CHILD_RES_URI),
  313. })
  314. omit_embed_children_resp = self.client.get(parent_path, headers={
  315. 'Prefer' : 'return=representation; omit={}'\
  316. .format(Ldpr.EMBED_CHILD_RES_URI),
  317. })
  318. assert omit_embed_children_resp.data == cont_resp.data
  319. incl_g = Graph().parse(
  320. data=incl_embed_children_resp.data, format='turtle')
  321. omit_g = Graph().parse(
  322. data=omit_embed_children_resp.data, format='turtle')
  323. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  324. assert len(children) == 3
  325. children = set(incl_g[cont_subject : nsc['ldp'].contains])
  326. for child_uri in children:
  327. assert set(incl_g[ child_uri : : ])
  328. assert not set(omit_g[ child_uri : : ])
  329. def test_return_children(self, cont_structure):
  330. '''
  331. verify the "return children" prefer header.
  332. '''
  333. parent_path = cont_structure['path']
  334. cont_resp = cont_structure['response']
  335. cont_subject = cont_structure['subject']
  336. incl_children_resp = self.client.get(parent_path, headers={
  337. 'Prefer' : 'return=representation; include={}'\
  338. .format(Ldpr.RETURN_CHILD_RES_URI),
  339. })
  340. omit_children_resp = self.client.get(parent_path, headers={
  341. 'Prefer' : 'return=representation; omit={}'\
  342. .format(Ldpr.RETURN_CHILD_RES_URI),
  343. })
  344. assert incl_children_resp.data == cont_resp.data
  345. incl_g = Graph().parse(data=incl_children_resp.data, format='turtle')
  346. omit_g = Graph().parse(data=omit_children_resp.data, format='turtle')
  347. children = incl_g[cont_subject : nsc['ldp'].contains]
  348. for child_uri in children:
  349. assert not omit_g[ cont_subject : nsc['ldp'].contains : child_uri ]
  350. def test_inbound_rel(self, cont_structure):
  351. '''
  352. verify the "inboud relationships" prefer header.
  353. '''
  354. parent_path = cont_structure['path']
  355. cont_resp = cont_structure['response']
  356. cont_subject = cont_structure['subject']
  357. incl_inbound_resp = self.client.get(parent_path, headers={
  358. 'Prefer' : 'return=representation; include={}'\
  359. .format(Ldpr.RETURN_INBOUND_REF_URI),
  360. })
  361. omit_inbound_resp = self.client.get(parent_path, headers={
  362. 'Prefer' : 'return=representation; omit={}'\
  363. .format(Ldpr.RETURN_INBOUND_REF_URI),
  364. })
  365. assert omit_inbound_resp.data == cont_resp.data
  366. incl_g = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  367. omit_g = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  368. assert set(incl_g[ : : cont_subject ])
  369. assert not set(omit_g[ : : cont_subject ])
  370. def test_srv_mgd_triples(self, cont_structure):
  371. '''
  372. verify the "server managed triples" prefer header.
  373. '''
  374. parent_path = cont_structure['path']
  375. cont_resp = cont_structure['response']
  376. cont_subject = cont_structure['subject']
  377. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  378. 'Prefer' : 'return=representation; include={}'\
  379. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  380. })
  381. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  382. 'Prefer' : 'return=representation; omit={}'\
  383. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  384. })
  385. assert incl_srv_mgd_resp.data == cont_resp.data
  386. incl_g = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  387. omit_g = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  388. for pred in {
  389. nsc['fcrepo'].created,
  390. nsc['fcrepo'].createdBy,
  391. nsc['fcrepo'].lastModified,
  392. nsc['fcrepo'].lastModifiedBy,
  393. nsc['ldp'].contains,
  394. }:
  395. assert set(incl_g[ cont_subject : pred : ])
  396. assert not set(omit_g[ cont_subject : pred : ])
  397. for type in {
  398. nsc['fcrepo'].Resource,
  399. nsc['ldp'].Container,
  400. nsc['ldp'].Resource,
  401. }:
  402. assert incl_g[ cont_subject : RDF.type : type ]
  403. assert not omit_g[ cont_subject : RDF.type : type ]
  404. def test_delete_no_tstone(self):
  405. '''
  406. Test the `no-tombstone` Prefer option.
  407. '''
  408. self.client.put('/ldp/test_delete_no_tstone01')
  409. self.client.put('/ldp/test_delete_no_tstone01/a')
  410. self.client.delete('/ldp/test_delete_no_tstone01', headers={
  411. 'prefer' : 'no-tombstone'})
  412. resp = self.client.get('/ldp/test_delete_no_tstone01')
  413. assert resp.status_code == 404
  414. child_resp = self.client.get('/ldp/test_delete_no_tstone01/a')
  415. assert child_resp.status_code == 404