test_ldp.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  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_ldp_nr_metadata(self):
  198. '''
  199. Test patching a LDP-NR metadata resource, both from the fcr:metadata
  200. and the resource URIs.
  201. '''
  202. path = '/ldp/ldpnr01'
  203. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  204. self.client.patch(path + '/fcr:metadata',
  205. data=data,
  206. headers={'content-type' : 'application/sparql-update'})
  207. resp = self.client.get(path + '/fcr:metadata')
  208. assert resp.status_code == 200
  209. uri = g.webroot + '/ldpnr01'
  210. gr = Graph().parse(data=resp.data, format='text/turtle')
  211. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  212. with open(
  213. 'tests/data/sparql_update/delete+insert+where.sparql') as data:
  214. patch_resp = self.client.patch(path,
  215. data=data,
  216. headers={'content-type' : 'application/sparql-update'})
  217. assert patch_resp.status_code == 204
  218. resp = self.client.get(path + '/fcr:metadata')
  219. assert resp.status_code == 200
  220. gr = Graph().parse(data=resp.data, format='text/turtle')
  221. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  222. def test_patch_ldp_nr(self, rnd_img):
  223. '''
  224. Verify that a PATCH using anything other than an
  225. `application/sparql-update` MIME type results in an error.
  226. '''
  227. rnd_img['content'].seek(0)
  228. resp = self.client.patch('/ldp/ldpnr01/fcr:metadata',
  229. data=rnd_img,
  230. headers={'content-type' : 'image/jpeg'})
  231. assert resp.status_code == 415
  232. def test_delete(self):
  233. '''
  234. Test delete response codes.
  235. '''
  236. create_resp = self.client.put('/ldp/test_delete01')
  237. delete_resp = self.client.delete('/ldp/test_delete01')
  238. assert delete_resp.status_code == 204
  239. bogus_delete_resp = self.client.delete('/ldp/test_delete101')
  240. assert bogus_delete_resp.status_code == 404
  241. def test_tombstone(self):
  242. '''
  243. Test tombstone behaviors.
  244. For POST on a tombstone, check `test_resurrection`.
  245. '''
  246. tstone_resp = self.client.get('/ldp/test_delete01')
  247. assert tstone_resp.status_code == 410
  248. assert tstone_resp.headers['Link'] == \
  249. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  250. .format(g.webroot)
  251. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  252. assert self.client.get(tstone_path).status_code == 405
  253. assert self.client.put(tstone_path).status_code == 405
  254. assert self.client.delete(tstone_path).status_code == 204
  255. assert self.client.get('/ldp/test_delete01').status_code == 404
  256. def test_delete_recursive(self):
  257. '''
  258. Test response codes for resources deleted recursively and their
  259. tombstones.
  260. '''
  261. self.client.put('/ldp/test_delete_recursive01')
  262. self.client.put('/ldp/test_delete_recursive01/a')
  263. self.client.delete('/ldp/test_delete_recursive01')
  264. tstone_resp = self.client.get('/ldp/test_delete_recursive01')
  265. assert tstone_resp.status_code == 410
  266. assert tstone_resp.headers['Link'] == \
  267. '<{}/test_delete_recursive01/fcr:tombstone>; rel="hasTombstone"'\
  268. .format(g.webroot)
  269. child_tstone_resp = self.client.get('/ldp/test_delete_recursive01/a')
  270. assert child_tstone_resp.status_code == tstone_resp.status_code
  271. assert 'Link' not in child_tstone_resp.headers.keys()
  272. @pytest.mark.usefixtures('client_class')
  273. @pytest.mark.usefixtures('db')
  274. class TestPrefHeader:
  275. '''
  276. Test various combinations of `Prefer` header.
  277. '''
  278. @pytest.fixture(scope='class')
  279. def cont_structure(self):
  280. '''
  281. Create a container structure to be used for subsequent requests.
  282. '''
  283. parent_path = '/ldp/test_parent'
  284. self.client.put(parent_path)
  285. self.client.put(parent_path + '/child1')
  286. self.client.put(parent_path + '/child2')
  287. self.client.put(parent_path + '/child3')
  288. return {
  289. 'path' : parent_path,
  290. 'response' : self.client.get(parent_path),
  291. 'subject' : URIRef(g.webroot + '/test_parent')
  292. }
  293. def test_put_prefer_handling(self, random_uuid):
  294. '''
  295. Trying to PUT an existing resource should:
  296. - Return a 204 if the payload is empty
  297. - Return a 204 if the payload is RDF, server-managed triples are
  298. included and the 'Prefer' header is set to 'handling=lenient'
  299. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  300. server-managed triples are included and handling is set to 'strict'
  301. '''
  302. path = '/ldp/put_pref_header01'
  303. assert self.client.put(path).status_code == 201
  304. assert self.client.get(path).status_code == 200
  305. assert self.client.put(path).status_code == 204
  306. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  307. rsp_len = self.client.put(
  308. path,
  309. headers={
  310. 'Prefer' : 'handling=lenient',
  311. 'Content-Type' : 'text/turtle',
  312. },
  313. data=f
  314. )
  315. assert rsp_len.status_code == 204
  316. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  317. rsp_strict = self.client.put(
  318. path,
  319. headers={
  320. 'Prefer' : 'handling=strict',
  321. 'Content-Type' : 'text/turtle',
  322. },
  323. data=f
  324. )
  325. assert rsp_strict.status_code == 412
  326. def test_embed_children(self, cont_structure):
  327. '''
  328. verify the "embed children" prefer header.
  329. '''
  330. parent_path = cont_structure['path']
  331. cont_resp = cont_structure['response']
  332. cont_subject = cont_structure['subject']
  333. minimal_resp = self.client.get(parent_path, headers={
  334. 'Prefer' : 'return=minimal',
  335. })
  336. incl_embed_children_resp = self.client.get(parent_path, headers={
  337. 'Prefer' : 'return=representation; include={}'\
  338. .format(Ldpr.EMBED_CHILD_RES_URI),
  339. })
  340. omit_embed_children_resp = self.client.get(parent_path, headers={
  341. 'Prefer' : 'return=representation; omit={}'\
  342. .format(Ldpr.EMBED_CHILD_RES_URI),
  343. })
  344. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  345. incl_gr = Graph().parse(
  346. data=incl_embed_children_resp.data, format='turtle')
  347. omit_gr = Graph().parse(
  348. data=omit_embed_children_resp.data, format='turtle')
  349. assert isomorphic(omit_gr, default_gr)
  350. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  351. assert len(children) == 3
  352. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  353. for child_uri in children:
  354. assert set(incl_gr[ child_uri : : ])
  355. assert not set(omit_gr[ child_uri : : ])
  356. def test_return_children(self, cont_structure):
  357. '''
  358. verify the "return children" prefer header.
  359. '''
  360. parent_path = cont_structure['path']
  361. cont_resp = cont_structure['response']
  362. cont_subject = cont_structure['subject']
  363. incl_children_resp = self.client.get(parent_path, headers={
  364. 'Prefer' : 'return=representation; include={}'\
  365. .format(Ldpr.RETURN_CHILD_RES_URI),
  366. })
  367. omit_children_resp = self.client.get(parent_path, headers={
  368. 'Prefer' : 'return=representation; omit={}'\
  369. .format(Ldpr.RETURN_CHILD_RES_URI),
  370. })
  371. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  372. incl_gr = Graph().parse(data=incl_children_resp.data, format='turtle')
  373. omit_gr = Graph().parse(data=omit_children_resp.data, format='turtle')
  374. assert isomorphic(incl_gr, default_gr)
  375. children = incl_gr[cont_subject : nsc['ldp'].contains]
  376. for child_uri in children:
  377. assert not omit_gr[ cont_subject : nsc['ldp'].contains : child_uri ]
  378. def test_inbound_rel(self, cont_structure):
  379. '''
  380. verify the "inboud relationships" prefer header.
  381. '''
  382. parent_path = cont_structure['path']
  383. cont_resp = cont_structure['response']
  384. cont_subject = cont_structure['subject']
  385. incl_inbound_resp = self.client.get(parent_path, headers={
  386. 'Prefer' : 'return=representation; include={}'\
  387. .format(Ldpr.RETURN_INBOUND_REF_URI),
  388. })
  389. omit_inbound_resp = self.client.get(parent_path, headers={
  390. 'Prefer' : 'return=representation; omit={}'\
  391. .format(Ldpr.RETURN_INBOUND_REF_URI),
  392. })
  393. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  394. incl_gr = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  395. omit_gr = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  396. assert isomorphic(omit_gr, default_gr)
  397. assert set(incl_gr[ : : cont_subject ])
  398. assert not set(omit_gr[ : : cont_subject ])
  399. def test_srv_mgd_triples(self, cont_structure):
  400. '''
  401. verify the "server managed triples" prefer header.
  402. '''
  403. parent_path = cont_structure['path']
  404. cont_resp = cont_structure['response']
  405. cont_subject = cont_structure['subject']
  406. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  407. 'Prefer' : 'return=representation; include={}'\
  408. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  409. })
  410. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  411. 'Prefer' : 'return=representation; omit={}'\
  412. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  413. })
  414. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  415. incl_gr = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  416. omit_gr = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  417. assert isomorphic(incl_gr, default_gr)
  418. for pred in {
  419. nsc['fcrepo'].created,
  420. nsc['fcrepo'].createdBy,
  421. nsc['fcrepo'].lastModified,
  422. nsc['fcrepo'].lastModifiedBy,
  423. nsc['ldp'].contains,
  424. }:
  425. assert set(incl_gr[ cont_subject : pred : ])
  426. assert not set(omit_gr[ cont_subject : pred : ])
  427. for type in {
  428. nsc['fcrepo'].Resource,
  429. nsc['ldp'].Container,
  430. nsc['ldp'].Resource,
  431. }:
  432. assert incl_gr[ cont_subject : RDF.type : type ]
  433. assert not omit_gr[ cont_subject : RDF.type : type ]
  434. def test_delete_no_tstone(self):
  435. '''
  436. Test the `no-tombstone` Prefer option.
  437. '''
  438. self.client.put('/ldp/test_delete_no_tstone01')
  439. self.client.put('/ldp/test_delete_no_tstone01/a')
  440. self.client.delete('/ldp/test_delete_no_tstone01', headers={
  441. 'prefer' : 'no-tombstone'})
  442. resp = self.client.get('/ldp/test_delete_no_tstone01')
  443. assert resp.status_code == 404
  444. child_resp = self.client.get('/ldp/test_delete_no_tstone01/a')
  445. assert child_resp.status_code == 404
  446. @pytest.mark.usefixtures('client_class')
  447. @pytest.mark.usefixtures('db')
  448. class TestVersion:
  449. '''
  450. Test version creation, retrieval and deletion.
  451. '''
  452. def test_create_versions(self):
  453. '''
  454. Test that POSTing multiple times to fcr:versions creates the
  455. 'hasVersions' triple and yields multiple version snapshots.
  456. '''
  457. self.client.put('/ldp/test_version')
  458. create_rsp = self.client.post('/ldp/test_version/fcr:versions')
  459. assert create_rsp.status_code == 201
  460. rsrc_rsp = self.client.get('/ldp/test_version')
  461. rsrc_gr = Graph().parse(data=rsrc_rsp.data, format='turtle')
  462. assert len(set(rsrc_gr[: nsc['fcrepo'].hasVersions :])) == 1
  463. info_rsp = self.client.get('/ldp/test_version/fcr:versions')
  464. assert info_rsp.status_code == 200
  465. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  466. assert len(set(info_gr[: nsc['fcrepo'].hasVersion :])) == 1
  467. self.client.post('/ldp/test_version/fcr:versions')
  468. info2_rsp = self.client.get('/ldp/test_version/fcr:versions')
  469. info2_gr = Graph().parse(data=info2_rsp.data, format='turtle')
  470. assert len(set(info2_gr[: nsc['fcrepo'].hasVersion :])) == 2
  471. def test_version_with_slug(self):
  472. '''
  473. Test a version with a slug.
  474. '''
  475. self.client.put('/ldp/test_version_slug')
  476. create_rsp = self.client.post('/ldp/test_version_slug/fcr:versions',
  477. headers={'slug' : 'v1'})
  478. new_ver_uri = create_rsp.headers['Location']
  479. assert new_ver_uri == g.webroot + '/test_version_slug/fcr:versions/v1'
  480. info_rsp = self.client.get('/ldp/test_version_slug/fcr:versions')
  481. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  482. assert info_gr[
  483. URIRef(new_ver_uri) :
  484. nsc['fcrepo'].hasVersionLabel :
  485. Literal('v1')]
  486. def test_dupl_version(self):
  487. '''
  488. Make sure that two POSTs with the same slug result in two different
  489. versions.
  490. '''
  491. path = '/ldp/test_duplicate_slug'
  492. self.client.put(path)
  493. v1_rsp = self.client.post(path + '/fcr:versions',
  494. headers={'slug' : 'v1'})
  495. v1_uri = v1_rsp.headers['Location']
  496. dup_rsp = self.client.post(path + '/fcr:versions',
  497. headers={'slug' : 'v1'})
  498. dup_uri = dup_rsp.headers['Location']
  499. assert v1_uri != dup_uri
  500. def test_revert_version(self):
  501. '''
  502. Take a version snapshot, update a resource, and then revert to the
  503. previous vresion.
  504. '''
  505. rsrc_path = '/ldp/test_revert_version'
  506. payload1 = '<> <urn:demo:p1> <urn:demo:o1> .'
  507. payload2 = '<> <urn:demo:p1> <urn:demo:o2> .'
  508. self.client.put(rsrc_path, headers={
  509. 'content-type': 'text/turtle'}, data=payload1)
  510. self.client.post(
  511. rsrc_path + '/fcr:versions', headers={'slug': 'v1'})
  512. v1_rsp = self.client.get(rsrc_path)
  513. v1_gr = Graph().parse(data=v1_rsp.data, format='turtle')
  514. assert v1_gr[
  515. URIRef(g.webroot + '/test_revert_version')
  516. : URIRef('urn:demo:p1')
  517. : URIRef('urn:demo:o1')
  518. ]
  519. self.client.put(rsrc_path, headers={
  520. 'content-type': 'text/turtle'}, data=payload2)
  521. v2_rsp = self.client.get(rsrc_path)
  522. v2_gr = Graph().parse(data=v2_rsp.data, format='turtle')
  523. assert v2_gr[
  524. URIRef(g.webroot + '/test_revert_version')
  525. : URIRef('urn:demo:p1')
  526. : URIRef('urn:demo:o2')
  527. ]
  528. self.client.patch(rsrc_path + '/fcr:versions/v1')
  529. revert_rsp = self.client.get(rsrc_path)
  530. revert_gr = Graph().parse(data=revert_rsp.data, format='turtle')
  531. assert revert_gr[
  532. URIRef(g.webroot + '/test_revert_version')
  533. : URIRef('urn:demo:p1')
  534. : URIRef('urn:demo:o1')
  535. ]
  536. def test_resurrection(self):
  537. '''
  538. Delete and then resurrect a resource.
  539. Make sure that the resource is resurrected to the latest version.
  540. '''
  541. path = '/ldp/test_lazarus'
  542. self.client.put(path)
  543. self.client.post(path + '/fcr:versions')
  544. self.client.put(
  545. path, headers={'content-type': 'text/turtle'},
  546. data=b'<> <urn:demo:p1> <urn:demo:o1> .')
  547. self.client.post(path + '/fcr:versions')
  548. self.client.put(
  549. path, headers={'content-type': 'text/turtle'},
  550. data=b'<> <urn:demo:p1> <urn:demo:o2> .')
  551. self.client.delete(path)
  552. assert self.client.get(path).status_code == 410
  553. self.client.post(path + '/fcr:tombstone')
  554. laz_data = self.client.get(path).data
  555. laz_gr = Graph().parse(data=laz_data, format='turtle')
  556. assert laz_gr[
  557. URIRef(g.webroot + '/test_lazarus')
  558. : URIRef('urn:demo:p1')
  559. : URIRef('urn:demo:o2')
  560. ]