test_ldp.py 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. import pytest
  2. import uuid
  3. from hashlib import sha1
  4. from flask import g
  5. from rdflib import Graph
  6. from rdflib.compare import isomorphic
  7. from rdflib.namespace import RDF
  8. from rdflib.term import Literal, URIRef
  9. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  10. from lakesuperior.model.ldpr import Ldpr
  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. def test_put_empty_resource(self, random_uuid):
  30. '''
  31. Check response headers for a PUT operation with empty payload.
  32. '''
  33. resp = self.client.put('/ldp/new_resource')
  34. assert resp.status_code == 201
  35. assert resp.data == bytes(
  36. '{}/new_resource'.format(g.webroot), 'utf-8')
  37. def test_put_existing_resource(self, random_uuid):
  38. '''
  39. Trying to PUT an existing resource should return a 204 if the payload
  40. is empty.
  41. '''
  42. path = '/ldp/nonidempotent01'
  43. put1_resp = self.client.put(path)
  44. assert put1_resp.status_code == 201
  45. assert self.client.get(path).status_code == 200
  46. put2_resp = self.client.put(path)
  47. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  48. put2_resp = self.client.put(
  49. path, data=f, content_type='text/turtle')
  50. assert put2_resp.status_code == 204
  51. put2_resp = self.client.put(path)
  52. assert put2_resp.status_code == 409
  53. def test_put_tree(self, client):
  54. '''
  55. PUT a resource with several path segments.
  56. The test should create intermediate path segments that are not
  57. accessible to PUT or POST.
  58. '''
  59. path = '/ldp/test_tree/a/b/c/d/e/f/g'
  60. self.client.put(path)
  61. assert self.client.get(path).status_code == 200
  62. assert self.client.put('/ldp/test_tree/a').status_code == 409
  63. assert self.client.post('/ldp/test_tree/a').status_code == 409
  64. def test_put_nested_tree(self, client):
  65. '''
  66. Verify that containment is set correctly in nested hierarchies.
  67. First put a new hierarchy and verify that the root node is its
  68. container; then put another hierarchy under it and verify that the
  69. first hierarchy is the container of the second one.
  70. '''
  71. uuid1 = 'test_nested_tree/a/b/c/d'
  72. uuid2 = uuid1 + '/e/f/g'
  73. path1 = '/ldp/' + uuid1
  74. path2 = '/ldp/' + uuid2
  75. self.client.put(path1)
  76. cont1_data = self.client.get('/ldp').data
  77. gr1 = Graph().parse(data=cont1_data, format='turtle')
  78. assert gr1[ URIRef(g.webroot + '/') : nsc['ldp'].contains : \
  79. URIRef(g.webroot + '/' + uuid1) ]
  80. self.client.put(path2)
  81. cont2_data = self.client.get(path1).data
  82. gr2 = Graph().parse(data=cont2_data, format='turtle')
  83. assert gr2[ URIRef(g.webroot + '/' + uuid1) : \
  84. nsc['ldp'].contains : \
  85. URIRef(g.webroot + '/' + uuid2) ]
  86. def test_put_ldp_rs(self, client):
  87. '''
  88. PUT a resource with RDF payload and verify.
  89. '''
  90. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  91. self.client.put('/ldp/ldprs01', data=f, content_type='text/turtle')
  92. resp = self.client.get('/ldp/ldprs01',
  93. headers={'accept' : 'text/turtle'})
  94. assert resp.status_code == 200
  95. gr = Graph().parse(data=resp.data, format='text/turtle')
  96. assert URIRef('http://vocab.getty.edu/ontology#Subject') in \
  97. gr.objects(None, RDF.type)
  98. def test_put_ldp_nr(self, rnd_img):
  99. '''
  100. PUT a resource with binary payload and verify checksums.
  101. '''
  102. rnd_img['content'].seek(0)
  103. resp = self.client.put('/ldp/ldpnr01', data=rnd_img['content'],
  104. headers={
  105. 'Content-Disposition' : 'attachment; filename={}'.format(
  106. rnd_img['filename'])})
  107. assert resp.status_code == 201
  108. resp = self.client.get('/ldp/ldpnr01', headers={'accept' : 'image/png'})
  109. assert resp.status_code == 200
  110. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  111. def test_put_mismatched_ldp_rs(self, rnd_img):
  112. '''
  113. Verify MIME type / LDP mismatch.
  114. PUT a LDP-RS, then PUT a LDP-NR on the same location and verify it
  115. fails.
  116. '''
  117. path = '/ldp/' + str(uuid.uuid4())
  118. rnd_img['content'].seek(0)
  119. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  120. headers={
  121. 'Content-Disposition' : 'attachment; filename={}'.format(
  122. rnd_img['filename'])})
  123. assert ldp_nr_resp.status_code == 201
  124. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  125. ldp_rs_resp = self.client.put(path, data=f,
  126. content_type='text/turtle')
  127. assert ldp_rs_resp.status_code == 415
  128. def test_put_mismatched_ldp_nr(self, rnd_img):
  129. '''
  130. Verify MIME type / LDP mismatch.
  131. PUT a LDP-NR, then PUT a LDP-RS on the same location and verify it
  132. fails.
  133. '''
  134. path = '/ldp/' + str(uuid.uuid4())
  135. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  136. ldp_rs_resp = self.client.put(path, data=f,
  137. content_type='text/turtle')
  138. assert ldp_rs_resp.status_code == 201
  139. rnd_img['content'].seek(0)
  140. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  141. headers={
  142. 'Content-Disposition' : 'attachment; filename={}'.format(
  143. rnd_img['filename'])})
  144. assert ldp_nr_resp.status_code == 415
  145. def test_post_resource(self, client):
  146. '''
  147. Check response headers for a POST operation with empty payload.
  148. '''
  149. res = self.client.post('/ldp/')
  150. assert res.status_code == 201
  151. assert 'Location' in res.headers
  152. def test_post_slug(self):
  153. '''
  154. Verify that a POST with slug results in the expected URI only if the
  155. resource does not exist already.
  156. '''
  157. slug01_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  158. assert slug01_resp.status_code == 201
  159. assert slug01_resp.headers['location'] == \
  160. g.webroot + '/slug01'
  161. slug02_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  162. assert slug02_resp.status_code == 201
  163. assert slug02_resp.headers['location'] != \
  164. g.webroot + '/slug01'
  165. def test_post_404(self):
  166. '''
  167. Verify that a POST to a non-existing parent results in a 404.
  168. '''
  169. assert self.client.post('/ldp/{}'.format(uuid.uuid4()))\
  170. .status_code == 404
  171. def test_post_409(self, rnd_img):
  172. '''
  173. Verify that you cannot POST to a binary resource.
  174. '''
  175. rnd_img['content'].seek(0)
  176. self.client.put('/ldp/post_409', data=rnd_img['content'], headers={
  177. 'Content-Disposition' : 'attachment; filename={}'.format(
  178. rnd_img['filename'])})
  179. assert self.client.post('/ldp/post_409').status_code == 409
  180. def test_patch(self):
  181. '''
  182. Test patching a resource.
  183. '''
  184. path = '/ldp/test_patch01'
  185. self.client.put(path)
  186. uri = g.webroot + '/test_patch01'
  187. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  188. resp = self.client.patch(path,
  189. data=data,
  190. headers={'content-type' : 'application/sparql-update'})
  191. assert resp.status_code == 204
  192. resp = self.client.get(path)
  193. gr = Graph().parse(data=resp.data, format='text/turtle')
  194. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  195. self.client.patch(path,
  196. data=open('tests/data/sparql_update/delete+insert+where.sparql'),
  197. headers={'content-type' : 'application/sparql-update'})
  198. resp = self.client.get(path)
  199. gr = Graph().parse(data=resp.data, format='text/turtle')
  200. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  201. def test_patch_ssr(self):
  202. '''
  203. Test patching a resource violating the single-subject rule.
  204. '''
  205. path = '/ldp/test_patch_ssr'
  206. self.client.put(path)
  207. uri = g.webroot + '/test_patch_ssr'
  208. #nossr_qry = 'INSERT { <http://bogus.org> a <urn:ns:A> . } WHERE {}'
  209. abs_qry = 'INSERT {{ <{}> a <urn:ns:A> . }} WHERE {{}}'.format(uri)
  210. frag_qry = 'INSERT {{ <{}#frag> a <urn:ns:A> . }} WHERE {{}}'\
  211. .format(uri)
  212. # @TODO Leave commented until a decision is made about SSR.
  213. #assert self.client.patch(
  214. # path, data=nossr_qry,
  215. # headers={'content-type': 'application/sparql-update'}
  216. #).status_code == 412
  217. assert self.client.patch(
  218. path, data=abs_qry,
  219. headers={'content-type': 'application/sparql-update'}
  220. ).status_code == 204
  221. assert self.client.patch(
  222. path, data=frag_qry,
  223. headers={'content-type': 'application/sparql-update'}
  224. ).status_code == 204
  225. def test_patch_ldp_nr_metadata(self):
  226. '''
  227. Test patching a LDP-NR metadata resource, both from the fcr:metadata
  228. and the resource URIs.
  229. '''
  230. path = '/ldp/ldpnr01'
  231. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  232. self.client.patch(path + '/fcr:metadata',
  233. data=data,
  234. headers={'content-type' : 'application/sparql-update'})
  235. resp = self.client.get(path + '/fcr:metadata')
  236. assert resp.status_code == 200
  237. uri = g.webroot + '/ldpnr01'
  238. gr = Graph().parse(data=resp.data, format='text/turtle')
  239. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  240. with open(
  241. 'tests/data/sparql_update/delete+insert+where.sparql') as data:
  242. patch_resp = self.client.patch(path,
  243. data=data,
  244. headers={'content-type' : 'application/sparql-update'})
  245. assert patch_resp.status_code == 204
  246. resp = self.client.get(path + '/fcr:metadata')
  247. assert resp.status_code == 200
  248. gr = Graph().parse(data=resp.data, format='text/turtle')
  249. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  250. def test_patch_ldp_nr(self, rnd_img):
  251. '''
  252. Verify that a PATCH using anything other than an
  253. `application/sparql-update` MIME type results in an error.
  254. '''
  255. rnd_img['content'].seek(0)
  256. resp = self.client.patch('/ldp/ldpnr01/fcr:metadata',
  257. data=rnd_img,
  258. headers={'content-type' : 'image/jpeg'})
  259. assert resp.status_code == 415
  260. def test_delete(self):
  261. '''
  262. Test delete response codes.
  263. '''
  264. self.client.put('/ldp/test_delete01')
  265. delete_resp = self.client.delete('/ldp/test_delete01')
  266. assert delete_resp.status_code == 204
  267. bogus_delete_resp = self.client.delete('/ldp/test_delete101')
  268. assert bogus_delete_resp.status_code == 404
  269. def test_tombstone(self):
  270. '''
  271. Test tombstone behaviors.
  272. For POST on a tombstone, check `test_resurrection`.
  273. '''
  274. tstone_resp = self.client.get('/ldp/test_delete01')
  275. assert tstone_resp.status_code == 410
  276. assert tstone_resp.headers['Link'] == \
  277. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  278. .format(g.webroot)
  279. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  280. assert self.client.get(tstone_path).status_code == 405
  281. assert self.client.put(tstone_path).status_code == 405
  282. assert self.client.delete(tstone_path).status_code == 204
  283. assert self.client.get('/ldp/test_delete01').status_code == 404
  284. def test_delete_recursive(self):
  285. '''
  286. Test response codes for resources deleted recursively and their
  287. tombstones.
  288. '''
  289. self.client.put('/ldp/test_delete_recursive01')
  290. self.client.put('/ldp/test_delete_recursive01/a')
  291. self.client.delete('/ldp/test_delete_recursive01')
  292. tstone_resp = self.client.get('/ldp/test_delete_recursive01')
  293. assert tstone_resp.status_code == 410
  294. assert tstone_resp.headers['Link'] == \
  295. '<{}/test_delete_recursive01/fcr:tombstone>; rel="hasTombstone"'\
  296. .format(g.webroot)
  297. child_tstone_resp = self.client.get('/ldp/test_delete_recursive01/a')
  298. assert child_tstone_resp.status_code == tstone_resp.status_code
  299. assert 'Link' not in child_tstone_resp.headers.keys()
  300. def test_put_fragments(self):
  301. '''
  302. Test the correct handling of fragment URIs on PUT and GET.
  303. '''
  304. with open('tests/data/fragments.ttl', 'rb') as f:
  305. self.client.put(
  306. '/ldp/test_fragment01',
  307. headers={
  308. 'Content-Type' : 'text/turtle',
  309. },
  310. data=f
  311. )
  312. rsp = self.client.get('/ldp/test_fragment01')
  313. gr = Graph().parse(data=rsp.data, format='text/turtle')
  314. assert gr[
  315. URIRef(g.webroot + '/test_fragment01#hash1')
  316. : URIRef('http://ex.org/p2') : URIRef('http://ex.org/o2')]
  317. def test_patch_fragments(self):
  318. '''
  319. Test the correct handling of fragment URIs on PATCH.
  320. '''
  321. self.client.put('/ldp/test_fragment_patch')
  322. with open('tests/data/fragments_insert.sparql', 'rb') as f:
  323. self.client.patch(
  324. '/ldp/test_fragment_patch',
  325. headers={
  326. 'Content-Type' : 'application/sparql-update',
  327. },
  328. data=f
  329. )
  330. ins_rsp = self.client.get('/ldp/test_fragment_patch')
  331. ins_gr = Graph().parse(data=ins_rsp.data, format='text/turtle')
  332. assert ins_gr[
  333. URIRef(g.webroot + '/test_fragment_patch#hash1234')
  334. : URIRef('http://ex.org/p3') : URIRef('http://ex.org/o3')]
  335. with open('tests/data/fragments_delete.sparql', 'rb') as f:
  336. self.client.patch(
  337. '/ldp/test_fragment_patch',
  338. headers={
  339. 'Content-Type' : 'application/sparql-update',
  340. },
  341. data=f
  342. )
  343. del_rsp = self.client.get('/ldp/test_fragment_patch')
  344. del_gr = Graph().parse(data=del_rsp.data, format='text/turtle')
  345. assert not del_gr[
  346. URIRef(g.webroot + '/test_fragment_patch#hash1234')
  347. : URIRef('http://ex.org/p3') : URIRef('http://ex.org/o3')]
  348. @pytest.mark.usefixtures('client_class')
  349. @pytest.mark.usefixtures('db')
  350. class TestPrefHeader:
  351. '''
  352. Test various combinations of `Prefer` header.
  353. '''
  354. @pytest.fixture(scope='class')
  355. def cont_structure(self):
  356. '''
  357. Create a container structure to be used for subsequent requests.
  358. '''
  359. parent_path = '/ldp/test_parent'
  360. self.client.put(parent_path)
  361. self.client.put(parent_path + '/child1')
  362. self.client.put(parent_path + '/child2')
  363. self.client.put(parent_path + '/child3')
  364. return {
  365. 'path' : parent_path,
  366. 'response' : self.client.get(parent_path),
  367. 'subject' : URIRef(g.webroot + '/test_parent')
  368. }
  369. def test_put_prefer_handling(self, random_uuid):
  370. '''
  371. Trying to PUT an existing resource should:
  372. - Return a 204 if the payload is empty
  373. - Return a 204 if the payload is RDF, server-managed triples are
  374. included and the 'Prefer' header is set to 'handling=lenient'
  375. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  376. server-managed triples are included and handling is set to 'strict'
  377. '''
  378. path = '/ldp/put_pref_header01'
  379. assert self.client.put(path).status_code == 201
  380. assert self.client.get(path).status_code == 200
  381. assert self.client.put(path).status_code == 409
  382. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  383. rsp_len = self.client.put(
  384. path,
  385. headers={
  386. 'Prefer' : 'handling=lenient',
  387. 'Content-Type' : 'text/turtle',
  388. },
  389. data=f
  390. )
  391. assert rsp_len.status_code == 204
  392. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  393. rsp_strict = self.client.put(
  394. path,
  395. headers={
  396. 'Prefer' : 'handling=strict',
  397. 'Content-Type' : 'text/turtle',
  398. },
  399. data=f
  400. )
  401. assert rsp_strict.status_code == 412
  402. # @HOLD Embed children is debated.
  403. def _disabled_test_embed_children(self, cont_structure):
  404. '''
  405. verify the "embed children" prefer header.
  406. '''
  407. parent_path = cont_structure['path']
  408. cont_resp = cont_structure['response']
  409. cont_subject = cont_structure['subject']
  410. #minimal_resp = self.client.get(parent_path, headers={
  411. # 'Prefer' : 'return=minimal',
  412. #})
  413. incl_embed_children_resp = self.client.get(parent_path, headers={
  414. 'Prefer' : 'return=representation; include={}'\
  415. .format(Ldpr.EMBED_CHILD_RES_URI),
  416. })
  417. omit_embed_children_resp = self.client.get(parent_path, headers={
  418. 'Prefer' : 'return=representation; omit={}'\
  419. .format(Ldpr.EMBED_CHILD_RES_URI),
  420. })
  421. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  422. incl_gr = Graph().parse(
  423. data=incl_embed_children_resp.data, format='turtle')
  424. omit_gr = Graph().parse(
  425. data=omit_embed_children_resp.data, format='turtle')
  426. assert isomorphic(omit_gr, default_gr)
  427. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  428. assert len(children) == 3
  429. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  430. for child_uri in children:
  431. assert set(incl_gr[ child_uri : : ])
  432. assert not set(omit_gr[ child_uri : : ])
  433. def test_return_children(self, cont_structure):
  434. '''
  435. verify the "return children" prefer header.
  436. '''
  437. parent_path = cont_structure['path']
  438. cont_resp = cont_structure['response']
  439. cont_subject = cont_structure['subject']
  440. incl_children_resp = self.client.get(parent_path, headers={
  441. 'Prefer' : 'return=representation; include={}'\
  442. .format(Ldpr.RETURN_CHILD_RES_URI),
  443. })
  444. omit_children_resp = self.client.get(parent_path, headers={
  445. 'Prefer' : 'return=representation; omit={}'\
  446. .format(Ldpr.RETURN_CHILD_RES_URI),
  447. })
  448. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  449. incl_gr = Graph().parse(data=incl_children_resp.data, format='turtle')
  450. omit_gr = Graph().parse(data=omit_children_resp.data, format='turtle')
  451. assert isomorphic(incl_gr, default_gr)
  452. children = incl_gr[cont_subject : nsc['ldp'].contains]
  453. for child_uri in children:
  454. assert not omit_gr[cont_subject : nsc['ldp'].contains : child_uri]
  455. def test_inbound_rel(self, cont_structure):
  456. '''
  457. verify the "inbound relationships" prefer header.
  458. '''
  459. self.client.put('/ldp/test_target')
  460. data = '<> <http://ex.org/ns#shoots> <{}> .'.format(
  461. g.webroot + '/test_target')
  462. self.client.put('/ldp/test_shooter', data=data,
  463. headers={'Content-Type': 'text/turtle'})
  464. cont_resp = self.client.get('/ldp/test_target')
  465. incl_inbound_resp = self.client.get('/ldp/test_target', headers={
  466. 'Prefer' : 'return=representation; include="{}"'\
  467. .format(Ldpr.RETURN_INBOUND_REF_URI),
  468. })
  469. omit_inbound_resp = self.client.get('/ldp/test_target', headers={
  470. 'Prefer' : 'return=representation; omit="{}"'\
  471. .format(Ldpr.RETURN_INBOUND_REF_URI),
  472. })
  473. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  474. incl_gr = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  475. omit_gr = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  476. subject = URIRef(g.webroot + '/test_target')
  477. inbd_subject = URIRef(g.webroot + '/test_shooter')
  478. assert isomorphic(omit_gr, default_gr)
  479. assert len(set(incl_gr[inbd_subject : : ])) == 1
  480. assert incl_gr[
  481. inbd_subject : URIRef('http://ex.org/ns#shoots') : subject]
  482. assert not len(set(omit_gr[inbd_subject : :]))
  483. def test_srv_mgd_triples(self, cont_structure):
  484. '''
  485. verify the "server managed triples" prefer header.
  486. '''
  487. parent_path = cont_structure['path']
  488. cont_resp = cont_structure['response']
  489. cont_subject = cont_structure['subject']
  490. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  491. 'Prefer' : 'return=representation; include={}'\
  492. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  493. })
  494. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  495. 'Prefer' : 'return=representation; omit={}'\
  496. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  497. })
  498. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  499. incl_gr = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  500. omit_gr = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  501. assert isomorphic(incl_gr, default_gr)
  502. for pred in {
  503. nsc['fcrepo'].created,
  504. nsc['fcrepo'].createdBy,
  505. nsc['fcrepo'].lastModified,
  506. nsc['fcrepo'].lastModifiedBy,
  507. nsc['ldp'].contains,
  508. }:
  509. assert set(incl_gr[ cont_subject : pred : ])
  510. assert not set(omit_gr[ cont_subject : pred : ])
  511. for type in {
  512. nsc['fcrepo'].Resource,
  513. nsc['ldp'].Container,
  514. nsc['ldp'].Resource,
  515. }:
  516. assert incl_gr[ cont_subject : RDF.type : type ]
  517. assert not omit_gr[ cont_subject : RDF.type : type ]
  518. def test_delete_no_tstone(self):
  519. '''
  520. Test the `no-tombstone` Prefer option.
  521. '''
  522. self.client.put('/ldp/test_delete_no_tstone01')
  523. self.client.put('/ldp/test_delete_no_tstone01/a')
  524. self.client.delete('/ldp/test_delete_no_tstone01', headers={
  525. 'prefer' : 'no-tombstone'})
  526. resp = self.client.get('/ldp/test_delete_no_tstone01')
  527. assert resp.status_code == 404
  528. child_resp = self.client.get('/ldp/test_delete_no_tstone01/a')
  529. assert child_resp.status_code == 404
  530. @pytest.mark.usefixtures('client_class')
  531. @pytest.mark.usefixtures('db')
  532. class TestVersion:
  533. '''
  534. Test version creation, retrieval and deletion.
  535. '''
  536. def test_create_versions(self):
  537. '''
  538. Test that POSTing multiple times to fcr:versions creates the
  539. 'hasVersions' triple and yields multiple version snapshots.
  540. '''
  541. self.client.put('/ldp/test_version')
  542. create_rsp = self.client.post('/ldp/test_version/fcr:versions')
  543. assert create_rsp.status_code == 201
  544. rsrc_rsp = self.client.get('/ldp/test_version')
  545. rsrc_gr = Graph().parse(data=rsrc_rsp.data, format='turtle')
  546. assert len(set(rsrc_gr[: nsc['fcrepo'].hasVersions :])) == 1
  547. info_rsp = self.client.get('/ldp/test_version/fcr:versions')
  548. assert info_rsp.status_code == 200
  549. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  550. assert len(set(info_gr[: nsc['fcrepo'].hasVersion :])) == 1
  551. self.client.post('/ldp/test_version/fcr:versions')
  552. info2_rsp = self.client.get('/ldp/test_version/fcr:versions')
  553. info2_gr = Graph().parse(data=info2_rsp.data, format='turtle')
  554. assert len(set(info2_gr[: nsc['fcrepo'].hasVersion :])) == 2
  555. def test_version_with_slug(self):
  556. '''
  557. Test a version with a slug.
  558. '''
  559. self.client.put('/ldp/test_version_slug')
  560. create_rsp = self.client.post('/ldp/test_version_slug/fcr:versions',
  561. headers={'slug' : 'v1'})
  562. new_ver_uri = create_rsp.headers['Location']
  563. assert new_ver_uri == g.webroot + '/test_version_slug/fcr:versions/v1'
  564. info_rsp = self.client.get('/ldp/test_version_slug/fcr:versions')
  565. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  566. assert info_gr[
  567. URIRef(new_ver_uri) :
  568. nsc['fcrepo'].hasVersionLabel :
  569. Literal('v1')]
  570. def test_dupl_version(self):
  571. '''
  572. Make sure that two POSTs with the same slug result in two different
  573. versions.
  574. '''
  575. path = '/ldp/test_duplicate_slug'
  576. self.client.put(path)
  577. v1_rsp = self.client.post(path + '/fcr:versions',
  578. headers={'slug' : 'v1'})
  579. v1_uri = v1_rsp.headers['Location']
  580. dup_rsp = self.client.post(path + '/fcr:versions',
  581. headers={'slug' : 'v1'})
  582. dup_uri = dup_rsp.headers['Location']
  583. assert v1_uri != dup_uri
  584. def test_revert_version(self):
  585. '''
  586. Take a version snapshot, update a resource, and then revert to the
  587. previous vresion.
  588. '''
  589. rsrc_path = '/ldp/test_revert_version'
  590. payload1 = '<> <urn:demo:p1> <urn:demo:o1> .'
  591. payload2 = '<> <urn:demo:p1> <urn:demo:o2> .'
  592. self.client.put(rsrc_path, headers={
  593. 'content-type': 'text/turtle'}, data=payload1)
  594. self.client.post(
  595. rsrc_path + '/fcr:versions', headers={'slug': 'v1'})
  596. v1_rsp = self.client.get(rsrc_path)
  597. v1_gr = Graph().parse(data=v1_rsp.data, format='turtle')
  598. assert v1_gr[
  599. URIRef(g.webroot + '/test_revert_version')
  600. : URIRef('urn:demo:p1')
  601. : URIRef('urn:demo:o1')
  602. ]
  603. self.client.put(rsrc_path, headers={
  604. 'content-type': 'text/turtle'}, data=payload2)
  605. v2_rsp = self.client.get(rsrc_path)
  606. v2_gr = Graph().parse(data=v2_rsp.data, format='turtle')
  607. assert v2_gr[
  608. URIRef(g.webroot + '/test_revert_version')
  609. : URIRef('urn:demo:p1')
  610. : URIRef('urn:demo:o2')
  611. ]
  612. self.client.patch(rsrc_path + '/fcr:versions/v1')
  613. revert_rsp = self.client.get(rsrc_path)
  614. revert_gr = Graph().parse(data=revert_rsp.data, format='turtle')
  615. assert revert_gr[
  616. URIRef(g.webroot + '/test_revert_version')
  617. : URIRef('urn:demo:p1')
  618. : URIRef('urn:demo:o1')
  619. ]
  620. #def test_resurrection(self):
  621. # '''
  622. # Delete and then resurrect a resource.
  623. # Make sure that the resource is resurrected to the latest version.
  624. # '''
  625. # path = '/ldp/test_lazarus'
  626. # self.client.put(path)
  627. # self.client.post(path + '/fcr:versions', headers={'slug': 'v1'})
  628. # self.client.put(
  629. # path, headers={'content-type': 'text/turtle'},
  630. # data=b'<> <urn:demo:p1> <urn:demo:o1> .')
  631. # self.client.post(path + '/fcr:versions', headers={'slug': 'v2'})
  632. # self.client.put(
  633. # path, headers={'content-type': 'text/turtle'},
  634. # data=b'<> <urn:demo:p1> <urn:demo:o2> .')
  635. # self.client.delete(path)
  636. # assert self.client.get(path).status_code == 410
  637. # self.client.post(path + '/fcr:tombstone')
  638. # laz_data = self.client.get(path).data
  639. # laz_gr = Graph().parse(data=laz_data, format='turtle')
  640. # assert laz_gr[
  641. # URIRef(g.webroot + '/test_lazarus')
  642. # : URIRef('urn:demo:p1')
  643. # : URIRef('urn:demo:o2')
  644. # ]