test_ldp.py 32 KB

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