test_ldp.py 25 KB

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