test_3_0_ldp.py 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. import hashlib
  2. import pdb
  3. import pytest
  4. from base64 import b64encode
  5. from datetime import timedelta
  6. from hashlib import sha1, sha256, blake2b
  7. from uuid import uuid4
  8. from werkzeug.http import http_date
  9. import arrow
  10. import requests
  11. from flask import g
  12. from rdflib import Graph
  13. from rdflib.compare import isomorphic
  14. from rdflib.namespace import RDF
  15. from rdflib.term import Literal, URIRef
  16. from lakesuperior import env
  17. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  18. from lakesuperior.model.ldp.ldpr import Ldpr
  19. digest_algo = env.app_globals.config['application']['uuid']['algo']
  20. @pytest.fixture(scope='module')
  21. def random_uuid():
  22. return str(uuid4())
  23. @pytest.mark.usefixtures('client_class')
  24. @pytest.mark.usefixtures('db')
  25. class TestLdp:
  26. """
  27. Test HTTP interaction with LDP endpoint.
  28. """
  29. def test_get_root_node(self):
  30. """
  31. Get the root node from two different endpoints.
  32. The test triplestore must be initialized, hence the `db` fixture.
  33. """
  34. ldp_resp = self.client.get('/ldp')
  35. rest_resp = self.client.get('/rest')
  36. assert ldp_resp.status_code == 200
  37. assert rest_resp.status_code == 200
  38. def test_put_empty_ldpr(self):
  39. """
  40. Check response headers for a PUT operation with empty payload.
  41. """
  42. url = f'/ldp/empty-{uuid4()}'
  43. rsp = self.client.put(url)
  44. assert rsp.status_code == 201
  45. assert rsp.data == bytes(url.replace('/ldp', g.webroot), 'utf-8')
  46. def test_put_empty_ldpnr(self):
  47. """
  48. Check response headers for a PUT operation with empty payload.
  49. Without specifying a MIME type, an LDP-NR should be created.
  50. """
  51. url = f'/ldp/empty-{uuid4()}'
  52. rsp = self.client.put(url)
  53. get_rsp = self.client.get(url)
  54. assert 'application/octet-stream' in get_rsp.content_type
  55. assert (
  56. '<http://www.w3.org/ns/ldp#NonRDFSource>;rel="type"'
  57. in get_rsp.headers.get_all('link'))
  58. def test_put_empty_ldprs(self):
  59. """
  60. Check response headers for a PUT operation with empty payload.
  61. Specify MIME type to force LDPC creation.
  62. """
  63. url = f'/ldp/empty-{uuid4()}'
  64. rsp = self.client.put(url, content_type='text/turtle')
  65. get_rsp = self.client.get(url)
  66. assert 'text/turtle' in get_rsp.content_type
  67. assert (
  68. '<http://www.w3.org/ns/ldp#RDFSource>;rel="type"'
  69. in get_rsp.headers.get_all('link'))
  70. def test_put_existing_ldpnr_empty(self):
  71. """
  72. Trying to PUT an existing LDP-NR should return a 204 if the LDP
  73. interaction type is the same.
  74. """
  75. url = f'/ldp/overwrite-{uuid4()}'
  76. self.client.put(url)
  77. put2_resp = self.client.put(url)
  78. assert put2_resp.status_code == 204
  79. def test_put_existing_ldprs_empty(self):
  80. """
  81. Trying to PUT an existing LDP-RS should return a 204 if the LDP
  82. interaction type is the same.
  83. """
  84. url = f'/ldp/overwrite-{uuid4()}'
  85. self.client.put(url, content_type='text/turtle')
  86. put2_resp = self.client.put(url, content_type='text/turtle')
  87. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  88. put2_resp = self.client.put(
  89. url, data=f, content_type='text/turtle')
  90. assert put2_resp.status_code == 204
  91. def test_put_existing_ldpnr_conflict(self):
  92. """
  93. Trying to PUT an existing LDP-RS should return a 415 if the LDP
  94. interaction type is different.
  95. """
  96. url = f'/ldp/overwrite-{uuid4()}'
  97. put1_resp = self.client.put(url)
  98. assert put1_resp.status_code == 201
  99. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  100. put2_resp = self.client.put(
  101. url, data=f, content_type='text/turtle')
  102. assert put2_resp.status_code == 415
  103. def test_put_existing_ldpnr_conflict(self):
  104. """
  105. Trying to PUT an existing LDP-RS should return a 415 if the LDP
  106. interaction type is different.
  107. """
  108. url = f'/ldp/overwrite-{uuid4()}'
  109. put1_resp = self.client.put(url, content_type='text/turtle')
  110. put2_resp = self.client.put(url, data=b'hello')
  111. assert put2_resp.status_code == 415
  112. def test_put_force_ldpnr(self):
  113. """
  114. Test forcing LDP-NR creation even with an RDF content type.
  115. """
  116. url = f'/ldp/force_ldpnr-{uuid4()}'
  117. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  118. rsp = self.client.put(
  119. url, data=f, content_type='text/turtle',
  120. headers={
  121. 'link': '<http://www.w3.org/ns/ldp#NonRDFSource>;rel="type"'
  122. })
  123. f.seek(0)
  124. data = f.read()
  125. get_rsp = self.client.get(url)
  126. assert 'text/turtle' in get_rsp.content_type
  127. assert (
  128. '<http://www.w3.org/ns/ldp#NonRDFSource>;rel="type"'
  129. in get_rsp.headers.get_all('link'))
  130. assert get_rsp.data == data
  131. def test_put_tree(self, client):
  132. """
  133. PUT a resource with several path segments.
  134. The test should create intermediate path segments that are LDPCs,
  135. accessible to PUT or POST.
  136. """
  137. path = '/ldp/test_tree/a/b/c/d/e/f/g'
  138. self.client.put(path)
  139. assert self.client.get(path).status_code == 200
  140. assert self.client.get('/ldp/test_tree/a/b/c').status_code == 200
  141. assert self.client.post(
  142. '/ldp/test_tree/a/b',
  143. content_type='text/turtle').status_code == 201
  144. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  145. put_int_resp = self.client.put(
  146. 'ldp/test_tree/a', data=f, content_type='text/turtle')
  147. assert put_int_resp.status_code == 204
  148. # @TODO More thorough testing of contents
  149. def test_put_nested_tree(self, client):
  150. """
  151. Verify that containment is set correctly in nested hierarchies.
  152. First put a new hierarchy and verify that the root node is its
  153. container; then put another hierarchy under it and verify that the
  154. first hierarchy is the container of the second one.
  155. """
  156. uuid1 = 'test_nested_tree/a/b/c/d'
  157. uuid2 = uuid1 + '/e/f/g'
  158. path1 = '/ldp/' + uuid1
  159. path2 = '/ldp/' + uuid2
  160. self.client.put(path1, content_type='text/turtle')
  161. cont1_data = self.client.get('/ldp').data
  162. gr1 = Graph().parse(data=cont1_data, format='turtle')
  163. assert gr1[ URIRef(g.webroot + '/') : nsc['ldp'].contains : \
  164. URIRef(g.webroot + '/test_nested_tree') ]
  165. self.client.put(path2, content_type='text/turtle')
  166. cont2_data = self.client.get(path1).data
  167. gr2 = Graph().parse(data=cont2_data, format='turtle')
  168. assert gr2[ URIRef(g.webroot + '/' + uuid1) : \
  169. nsc['ldp'].contains : \
  170. URIRef(g.webroot + '/' + uuid1 + '/e') ]
  171. def test_put_ldp_rs(self, client):
  172. """
  173. PUT a resource with RDF payload and verify.
  174. """
  175. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  176. self.client.put('/ldp/ldprs01', data=f, content_type='text/turtle')
  177. resp = self.client.get('/ldp/ldprs01',
  178. headers={'accept' : 'text/turtle'})
  179. assert resp.status_code == 200
  180. gr = Graph().parse(data=resp.data, format='text/turtle')
  181. assert URIRef('http://vocab.getty.edu/ontology#Subject') in \
  182. gr.objects(None, RDF.type)
  183. def test_put_ldp_nr(self, rnd_img):
  184. """
  185. PUT a resource with binary payload and verify checksums.
  186. """
  187. rnd_img['content'].seek(0)
  188. resp = self.client.put('/ldp/ldpnr01', data=rnd_img['content'],
  189. headers={
  190. 'Content-Type': 'image/png',
  191. 'Content-Disposition' : 'attachment; filename={}'.format(
  192. rnd_img['filename'])})
  193. assert resp.status_code == 201
  194. resp = self.client.get(
  195. '/ldp/ldpnr01', headers={'accept' : 'image/png'})
  196. assert resp.status_code == 200
  197. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  198. def test_put_ldp_nr_multipart(self, rnd_img):
  199. """
  200. PUT a resource with a multipart/form-data payload.
  201. """
  202. rnd_img['content'].seek(0)
  203. resp = self.client.put(
  204. '/ldp/ldpnr02',
  205. data={
  206. 'file': (
  207. rnd_img['content'], rnd_img['filename'],
  208. 'image/png',
  209. )
  210. }
  211. )
  212. assert resp.status_code == 201
  213. resp = self.client.get(
  214. '/ldp/ldpnr02', headers={'accept' : 'image/png'})
  215. assert resp.status_code == 200
  216. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  217. def test_get_ldp_nr(self, rnd_img):
  218. """
  219. PUT a resource with binary payload and test various retieval methods.
  220. """
  221. uid = '/ldpnr03'
  222. path = '/ldp' + uid
  223. content = b'This is some exciting content.'
  224. resp = self.client.put(path, data=content,
  225. headers={
  226. 'Content-Type': 'text/plain',
  227. 'Content-Disposition' : 'attachment; filename=exciting.txt'})
  228. assert resp.status_code == 201
  229. uri = g.webroot + uid
  230. # Content retrieval methods.
  231. resp_bin1 = self.client.get(path)
  232. assert resp_bin1.status_code == 200
  233. assert resp_bin1.data == content
  234. resp_bin2 = self.client.get(path, headers={'accept' : 'text/plain'})
  235. assert resp_bin2.status_code == 200
  236. assert resp_bin2.data == content
  237. resp_bin3 = self.client.get(path + '/fcr:content')
  238. assert resp_bin3.status_code == 200
  239. assert resp_bin3.data == content
  240. # Metadata retrieval methods.
  241. resp_md1 = self.client.get(path, headers={'accept' : 'text/turtle'})
  242. assert resp_md1.status_code == 200
  243. gr1 = Graph().parse(data=resp_md1.data, format='text/turtle')
  244. assert gr1[ URIRef(uri) : nsc['rdf'].type : nsc['ldp'].Resource]
  245. resp_md2 = self.client.get(path + '/fcr:metadata')
  246. assert resp_md2.status_code == 200
  247. gr2 = Graph().parse(data=resp_md2.data, format='text/turtle')
  248. assert isomorphic(gr1, gr2)
  249. def test_put_ldprs_invalid_rdf(self):
  250. """
  251. Verify that PUTting invalid RDF body returns HTTP 400.
  252. However, when forcing LDP-RS, invalid RDF is always accepted.
  253. """
  254. from lakesuperior.endpoints.ldp import rdf_serializable_mimetypes
  255. rdfstr = b'This is valid RDF because it ends with a period.'
  256. for mt in rdf_serializable_mimetypes:
  257. rsp_notok = self.client.put(
  258. f'/ldp/{uuid4()}', data=rdfstr, content_type=mt)
  259. assert rsp_notok.status_code == 400
  260. rsp_ok = self.client.put(
  261. f'/ldp/{uuid4()}', data=rdfstr, content_type=mt,
  262. headers={
  263. 'link': '<http://www.w3.org/ns/ldp#NonRDFSource>;rel="type"'
  264. }
  265. )
  266. assert rsp_ok.status_code == 201
  267. def test_post_ldprs_invalid_rdf(self):
  268. """
  269. Verify that POSTing invalid RDF body returns HTTP 400.
  270. However, when forcing LDP-RS, invalid RDF is always accepted.
  271. """
  272. from lakesuperior.endpoints.ldp import rdf_serializable_mimetypes
  273. rdfstr = b'This is valid RDF because it ends with a period.'
  274. for mt in rdf_serializable_mimetypes:
  275. rsp_notok = self.client.post(
  276. f'/ldp', data=rdfstr, content_type=mt)
  277. assert rsp_notok.status_code == 400
  278. rsp_ok = self.client.post(
  279. f'/ldp', data=rdfstr, content_type=mt,
  280. headers={
  281. 'link': '<http://www.w3.org/ns/ldp#NonRDFSource>;rel="type"'
  282. }
  283. )
  284. assert rsp_ok.status_code == 201
  285. def test_metadata_describe_header(self):
  286. """
  287. Verify that a "describe" Link header is presented for LDP-NR metadata.
  288. """
  289. uid = f'/{uuid4()}'
  290. self.client.put(f'/ldp{uid}', data=b'ciao')
  291. md_rsp = self.client.get(f'/ldp{uid}/fcr:metadata')
  292. assert (
  293. f'<{g.tbox.uid_to_uri(uid)}>; rel=describes'
  294. in md_rsp.headers.get_all('Link'))
  295. def test_put_mismatched_ldp_rs(self, rnd_img):
  296. """
  297. Verify MIME type / LDP mismatch.
  298. PUT a LDP-RS, then PUT a LDP-NR on the same location and verify it
  299. fails.
  300. """
  301. path = '/ldp/' + str(uuid4())
  302. rnd_img['content'].seek(0)
  303. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  304. headers={
  305. 'Content-Disposition' : 'attachment; filename={}'.format(
  306. rnd_img['filename'])})
  307. assert ldp_nr_resp.status_code == 201
  308. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  309. ldp_rs_resp = self.client.put(path, data=f,
  310. content_type='text/turtle')
  311. assert ldp_rs_resp.status_code == 415
  312. def test_put_mismatched_ldp_nr(self, rnd_img):
  313. """
  314. Verify MIME type / LDP mismatch.
  315. PUT a LDP-NR, then PUT a LDP-RS on the same location and verify it
  316. fails.
  317. """
  318. path = '/ldp/' + str(uuid4())
  319. with open('tests/data/marcel_duchamp_single_subject.ttl', 'rb') as f:
  320. ldp_rs_resp = self.client.put(path, data=f,
  321. content_type='text/turtle')
  322. assert ldp_rs_resp.status_code == 201
  323. rnd_img['content'].seek(0)
  324. ldp_nr_resp = self.client.put(path, data=rnd_img['content'],
  325. headers={
  326. 'Content-Disposition' : 'attachment; filename={}'.format(
  327. rnd_img['filename'])})
  328. assert ldp_nr_resp.status_code == 415
  329. def test_missing_reference(self, client):
  330. """
  331. PUT a resource with RDF payload referencing a non-existing in-repo
  332. resource.
  333. """
  334. self.client.get('/ldp')
  335. data = '''
  336. PREFIX ns: <http://example.org#>
  337. PREFIX res: <http://example-source.org/res/>
  338. <> ns:p1 res:bogus ;
  339. ns:p2 <{0}> ;
  340. ns:p3 <{0}/> ;
  341. ns:p4 <{0}/nonexistent> .
  342. '''.format(g.webroot)
  343. put_rsp = self.client.put('/ldp/test_missing_ref', data=data, headers={
  344. 'content-type': 'text/turtle'})
  345. assert put_rsp.status_code == 201
  346. resp = self.client.get('/ldp/test_missing_ref',
  347. headers={'accept' : 'text/turtle'})
  348. assert resp.status_code == 200
  349. gr = Graph().parse(data=resp.data, format='text/turtle')
  350. assert URIRef('http://example-source.org/res/bogus') in \
  351. gr.objects(None, URIRef('http://example.org#p1'))
  352. assert URIRef(g.webroot + '/') in (
  353. gr.objects(None, URIRef('http://example.org#p2')))
  354. assert URIRef(g.webroot + '/') in (
  355. gr.objects(None, URIRef('http://example.org#p3')))
  356. assert URIRef(g.webroot + '/nonexistent') not in (
  357. gr.objects(None, URIRef('http://example.org#p4')))
  358. def test_post_resource(self, client):
  359. """
  360. Check response headers for a POST operation with empty payload.
  361. """
  362. res = self.client.post('/ldp/')
  363. assert res.status_code == 201
  364. assert 'Location' in res.headers
  365. def test_post_ldp_nr(self, rnd_img):
  366. """
  367. POST a resource with binary payload and verify checksums.
  368. """
  369. rnd_img['content'].seek(0)
  370. resp = self.client.post('/ldp/', data=rnd_img['content'],
  371. headers={
  372. 'slug': 'ldpnr04',
  373. 'Content-Type': 'image/png',
  374. 'Content-Disposition' : 'attachment; filename={}'.format(
  375. rnd_img['filename'])})
  376. assert resp.status_code == 201
  377. resp = self.client.get(
  378. '/ldp/ldpnr04', headers={'accept' : 'image/png'})
  379. assert resp.status_code == 200
  380. assert sha1(resp.data).hexdigest() == rnd_img['hash']
  381. def test_post_slug(self):
  382. """
  383. Verify that a POST with slug results in the expected URI only if the
  384. resource does not exist already.
  385. """
  386. slug01_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  387. assert slug01_resp.status_code == 201
  388. assert slug01_resp.headers['location'] == \
  389. g.webroot + '/slug01'
  390. slug02_resp = self.client.post('/ldp', headers={'slug' : 'slug01'})
  391. assert slug02_resp.status_code == 201
  392. assert slug02_resp.headers['location'] != \
  393. g.webroot + '/slug01'
  394. def test_post_404(self):
  395. """
  396. Verify that a POST to a non-existing parent results in a 404.
  397. """
  398. assert self.client.post('/ldp/{}'.format(uuid4()))\
  399. .status_code == 404
  400. def test_post_409(self, rnd_img):
  401. """
  402. Verify that you cannot POST to a binary resource.
  403. """
  404. rnd_img['content'].seek(0)
  405. self.client.put('/ldp/post_409', data=rnd_img['content'], headers={
  406. 'Content-Disposition' : 'attachment; filename={}'.format(
  407. rnd_img['filename'])})
  408. assert self.client.post('/ldp/post_409').status_code == 409
  409. def test_patch_root(self):
  410. """
  411. Test patching root node.
  412. """
  413. path = '/ldp/'
  414. self.client.get(path)
  415. uri = g.webroot + '/'
  416. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  417. resp = self.client.patch(path,
  418. data=data,
  419. headers={'content-type' : 'application/sparql-update'})
  420. assert resp.status_code == 204
  421. resp = self.client.get(path)
  422. gr = Graph().parse(data=resp.data, format='text/turtle')
  423. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  424. def test_patch(self):
  425. """
  426. Test patching a resource.
  427. """
  428. path = '/ldp/test_patch01'
  429. self.client.put(path, content_type='text/turtle')
  430. uri = g.webroot + '/test_patch01'
  431. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  432. resp = self.client.patch(path,
  433. data=data,
  434. headers={'content-type' : 'application/sparql-update'})
  435. assert resp.status_code == 204
  436. resp = self.client.get(path)
  437. gr = Graph().parse(data=resp.data, format='text/turtle')
  438. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
  439. self.client.patch(path,
  440. data=open('tests/data/sparql_update/delete+insert+where.sparql'),
  441. headers={'content-type' : 'application/sparql-update'})
  442. resp = self.client.get(path)
  443. gr = Graph().parse(data=resp.data, format='text/turtle')
  444. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  445. def test_patch_no_single_subject(self):
  446. """
  447. Test patching a resource violating the single-subject rule.
  448. """
  449. path = '/ldp/test_patch_ssr'
  450. self.client.put(path, content_type='text/turtle')
  451. uri = g.webroot + '/test_patch_ssr'
  452. nossr_qry = 'INSERT { <http://bogus.org> a <urn:ns:A> . } WHERE {}'
  453. abs_qry = 'INSERT {{ <{}> a <urn:ns:A> . }} WHERE {{}}'.format(uri)
  454. frag_qry = 'INSERT {{ <{}#frag> a <urn:ns:A> . }} WHERE {{}}'\
  455. .format(uri)
  456. # @TODO Leave commented until a decision is made about SSR.
  457. assert self.client.patch(
  458. path, data=nossr_qry,
  459. headers={'content-type': 'application/sparql-update'}
  460. ).status_code == 204
  461. assert self.client.patch(
  462. path, data=abs_qry,
  463. headers={'content-type': 'application/sparql-update'}
  464. ).status_code == 204
  465. assert self.client.patch(
  466. path, data=frag_qry,
  467. headers={'content-type': 'application/sparql-update'}
  468. ).status_code == 204
  469. def test_patch_ldp_nr_metadata(self):
  470. """
  471. Test patching a LDP-NR metadata resource from the fcr:metadata URI.
  472. """
  473. path = '/ldp/ldpnr01'
  474. with open('tests/data/sparql_update/simple_insert.sparql') as data:
  475. self.client.patch(path + '/fcr:metadata',
  476. data=data,
  477. headers={'content-type' : 'application/sparql-update'})
  478. resp = self.client.get(path + '/fcr:metadata')
  479. assert resp.status_code == 200
  480. uri = g.webroot + '/ldpnr01'
  481. gr = Graph().parse(data=resp.data, format='text/turtle')
  482. assert gr[URIRef(uri) : nsc['dc'].title : Literal('Hello')]
  483. with open(
  484. 'tests/data/sparql_update/delete+insert+where.sparql') as data:
  485. patch_resp = self.client.patch(path + '/fcr:metadata',
  486. data=data,
  487. headers={'content-type' : 'application/sparql-update'})
  488. assert patch_resp.status_code == 204
  489. resp = self.client.get(path + '/fcr:metadata')
  490. assert resp.status_code == 200
  491. gr = Graph().parse(data=resp.data, format='text/turtle')
  492. assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
  493. def test_patch_ldpnr(self):
  494. """
  495. Verify that a direct PATCH to a LDP-NR results in a 415.
  496. """
  497. with open(
  498. 'tests/data/sparql_update/delete+insert+where.sparql') as data:
  499. patch_resp = self.client.patch('/ldp/ldpnr01',
  500. data=data,
  501. headers={'content-type': 'application/sparql-update'})
  502. assert patch_resp.status_code == 415
  503. def test_patch_invalid_mimetype(self, rnd_img):
  504. """
  505. Verify that a PATCH using anything other than an
  506. `application/sparql-update` MIME type results in an error.
  507. """
  508. self.client.put(
  509. '/ldp/test_patch_invalid_mimetype', content_type='text/turtle')
  510. rnd_img['content'].seek(0)
  511. ldpnr_resp = self.client.patch('/ldp/ldpnr01/fcr:metadata',
  512. data=rnd_img,
  513. headers={'content-type' : 'image/jpeg'})
  514. ldprs_resp = self.client.patch('/ldp/test_patch_invalid_mimetype',
  515. data=b'Hello, I\'m not a SPARQL update.',
  516. headers={'content-type' : 'text/plain'})
  517. assert ldprs_resp.status_code == ldpnr_resp.status_code == 415
  518. def test_patch_srv_mgd_pred(self, rnd_img):
  519. """
  520. Verify that adding or removing a server-managed predicate fails.
  521. """
  522. uid = '/test_patch_sm_pred'
  523. path = f'/ldp{uid}'
  524. self.client.put(path, content_type='text/turtle')
  525. self.client.put(path + '/child1', content_type='text/turtle')
  526. uri = g.webroot + uid
  527. ins_qry1 = f'INSERT {{ <> <{nsc["ldp"].contains}> <http://bogus.com/ext1> . }} WHERE {{}}'
  528. ins_qry2 = (
  529. f'INSERT {{ <> <{nsc["fcrepo"].created}>'
  530. f'"2019-04-01T05:57:36.899033+00:00"^^<{nsc["xsd"].dateTime}> . }}'
  531. 'WHERE {}'
  532. )
  533. # The following won't change the graph so it does not raise an error.
  534. ins_qry3 = f'INSERT {{ <> a <{nsc["ldp"].Container}> . }} WHERE {{}}'
  535. del_qry1 = (
  536. f'DELETE {{ <> <{nsc["ldp"].contains}> ?o . }} '
  537. f'WHERE {{ <> <{nsc["ldp"].contains}> ?o . }}'
  538. )
  539. del_qry2 = f'DELETE {{ <> a <{nsc["ldp"].Container}> . }} WHERE {{}}'
  540. # No-op as ins_qry3
  541. del_qry3 = (
  542. f'DELETE {{ <> a <{nsc["ldp"].DirectContainer}> .}} '
  543. 'WHERE {}'
  544. )
  545. assert self.client.patch(
  546. path, data=ins_qry1,
  547. headers={'content-type': 'application/sparql-update'}
  548. ).status_code == 412
  549. assert self.client.patch(
  550. path, data=ins_qry1,
  551. headers={
  552. 'content-type': 'application/sparql-update',
  553. 'prefer': 'handling=lenient',
  554. }
  555. ).status_code == 204
  556. assert self.client.patch(
  557. path, data=ins_qry2,
  558. headers={'content-type': 'application/sparql-update'}
  559. ).status_code == 412
  560. assert self.client.patch(
  561. path, data=ins_qry2,
  562. headers={
  563. 'content-type': 'application/sparql-update',
  564. 'prefer': 'handling=lenient',
  565. }
  566. ).status_code == 204
  567. assert self.client.patch(
  568. path, data=ins_qry3,
  569. headers={'content-type': 'application/sparql-update'}
  570. ).status_code == 204
  571. assert self.client.patch(
  572. path, data=del_qry1,
  573. headers={'content-type': 'application/sparql-update'}
  574. ).status_code == 412
  575. assert self.client.patch(
  576. path, data=del_qry1,
  577. headers={
  578. 'content-type': 'application/sparql-update',
  579. 'prefer': 'handling=lenient',
  580. }
  581. ).status_code == 204
  582. assert self.client.patch(
  583. path, data=del_qry2,
  584. headers={'content-type': 'application/sparql-update'}
  585. ).status_code == 412
  586. assert self.client.patch(
  587. path, data=ins_qry2,
  588. headers={
  589. 'content-type': 'application/sparql-update',
  590. 'prefer': 'handling=lenient',
  591. }
  592. ).status_code == 204
  593. assert self.client.patch(
  594. path, data=del_qry3,
  595. headers={'content-type': 'application/sparql-update'}
  596. ).status_code == 204
  597. def test_delete(self):
  598. """
  599. Test delete response codes.
  600. """
  601. self.client.put('/ldp/test_delete01')
  602. delete_resp = self.client.delete('/ldp/test_delete01')
  603. assert delete_resp.status_code == 204
  604. bogus_delete_resp = self.client.delete('/ldp/test_delete101')
  605. assert bogus_delete_resp.status_code == 404
  606. def test_tombstone(self):
  607. """
  608. Test tombstone behaviors.
  609. For POST on a tombstone, check `test_resurrection`.
  610. """
  611. tstone_resp = self.client.get('/ldp/test_delete01')
  612. assert tstone_resp.status_code == 410
  613. assert tstone_resp.headers['Link'] == \
  614. '<{}/test_delete01/fcr:tombstone>; rel="hasTombstone"'\
  615. .format(g.webroot)
  616. tstone_path = '/ldp/test_delete01/fcr:tombstone'
  617. assert self.client.get(tstone_path).status_code == 405
  618. assert self.client.put(tstone_path).status_code == 405
  619. assert self.client.delete(tstone_path).status_code == 204
  620. assert self.client.get('/ldp/test_delete01').status_code == 404
  621. def test_delete_recursive(self):
  622. """
  623. Test response codes for resources deleted recursively and their
  624. tombstones.
  625. """
  626. child_suffixes = ('a', 'a/b', 'a/b/c', 'a1', 'a1/b1')
  627. self.client.put('/ldp/test_delete_recursive01')
  628. for cs in child_suffixes:
  629. self.client.put('/ldp/test_delete_recursive01/{}'.format(cs))
  630. assert self.client.delete(
  631. '/ldp/test_delete_recursive01').status_code == 204
  632. tstone_resp = self.client.get('/ldp/test_delete_recursive01')
  633. assert tstone_resp.status_code == 410
  634. assert tstone_resp.headers['Link'] == \
  635. '<{}/test_delete_recursive01/fcr:tombstone>; rel="hasTombstone"'\
  636. .format(g.webroot)
  637. for cs in child_suffixes:
  638. child_tstone_resp = self.client.get(
  639. '/ldp/test_delete_recursive01/{}'.format(cs))
  640. assert child_tstone_resp.status_code == tstone_resp.status_code
  641. assert 'Link' not in child_tstone_resp.headers.keys()
  642. def test_put_fragments(self):
  643. """
  644. Test the correct handling of fragment URIs on PUT and GET.
  645. """
  646. with open('tests/data/fragments.ttl', 'rb') as f:
  647. self.client.put(
  648. '/ldp/test_fragment01', content_type='text/turtle', data=f)
  649. rsp = self.client.get('/ldp/test_fragment01')
  650. gr = Graph().parse(data=rsp.data, format='text/turtle')
  651. assert gr[
  652. URIRef(g.webroot + '/test_fragment01#hash1')
  653. : URIRef('http://ex.org/p2') : URIRef('http://ex.org/o2')]
  654. def test_patch_fragments(self):
  655. """
  656. Test the correct handling of fragment URIs on PATCH.
  657. """
  658. self.client.put('/ldp/test_fragment_patch', content_type='text/turtle')
  659. with open('tests/data/fragments_insert.sparql', 'rb') as f:
  660. self.client.patch(
  661. '/ldp/test_fragment_patch',
  662. content_type='application/sparql-update', data=f)
  663. ins_rsp = self.client.get('/ldp/test_fragment_patch')
  664. ins_gr = Graph().parse(data=ins_rsp.data, format='text/turtle')
  665. assert ins_gr[
  666. URIRef(g.webroot + '/test_fragment_patch#hash1234')
  667. : URIRef('http://ex.org/p3') : URIRef('http://ex.org/o3')]
  668. with open('tests/data/fragments_delete.sparql', 'rb') as f:
  669. self.client.patch(
  670. '/ldp/test_fragment_patch',
  671. headers={
  672. 'Content-Type' : 'application/sparql-update',
  673. },
  674. data=f
  675. )
  676. del_rsp = self.client.get('/ldp/test_fragment_patch')
  677. del_gr = Graph().parse(data=del_rsp.data, format='text/turtle')
  678. assert not del_gr[
  679. URIRef(g.webroot + '/test_fragment_patch#hash1234')
  680. : URIRef('http://ex.org/p3') : URIRef('http://ex.org/o3')]
  681. @pytest.mark.usefixtures('client_class')
  682. @pytest.mark.usefixtures('db')
  683. class TestMimeType:
  684. """
  685. Test ``Accept`` headers and input & output formats.
  686. """
  687. def test_accept(self):
  688. """
  689. Verify the default serialization method.
  690. """
  691. accept_list = {
  692. ('', 'text/turtle'),
  693. ('text/turtle', 'text/turtle'),
  694. ('application/rdf+xml', 'application/rdf+xml'),
  695. ('application/n-triples', 'application/n-triples'),
  696. ('application/bogus', 'text/turtle'),
  697. (
  698. 'application/rdf+xml;q=0.5,application/n-triples;q=0.7',
  699. 'application/n-triples'),
  700. (
  701. 'application/rdf+xml;q=0.5,application/bogus;q=0.7',
  702. 'application/rdf+xml'),
  703. ('application/rdf+xml;q=0.5,text/n3;q=0.7', 'text/n3'),
  704. (
  705. 'application/rdf+xml;q=0.5,application/ld+json;q=0.7',
  706. 'application/ld+json'),
  707. }
  708. for mimetype, fmt in accept_list:
  709. rsp = self.client.get('/ldp', headers={'Accept': mimetype})
  710. assert rsp.mimetype == fmt
  711. gr = Graph(identifier=g.webroot + '/').parse(
  712. data=rsp.data, format=fmt)
  713. assert nsc['fcrepo'].RepositoryRoot in set(gr.objects())
  714. def test_provided_rdf(self):
  715. """
  716. Test several input RDF serialiation formats.
  717. """
  718. self.client.get('/ldp')
  719. gr = Graph()
  720. gr.add((
  721. URIRef(g.webroot + '/test_mimetype'),
  722. nsc['dcterms'].title, Literal('Test MIME type.')))
  723. test_list = {
  724. 'application/n-triples',
  725. 'application/rdf+xml',
  726. 'text/n3',
  727. 'text/turtle',
  728. 'application/ld+json',
  729. }
  730. for mimetype in test_list:
  731. rdf_data = gr.serialize(format=mimetype)
  732. self.client.put(
  733. '/ldp/test_mimetype', data=rdf_data, content_type=mimetype)
  734. rsp = self.client.get('/ldp/test_mimetype')
  735. rsp_gr = Graph(identifier=g.webroot + '/test_mimetype').parse(
  736. data=rsp.data, format='text/turtle')
  737. assert (
  738. URIRef(g.webroot + '/test_mimetype'),
  739. nsc['dcterms'].title, Literal('Test MIME type.')) in rsp_gr
  740. @pytest.mark.usefixtures('client_class')
  741. class TestDigestHeaders:
  742. """
  743. Test Digest and ETag headers.
  744. """
  745. def test_etag_digest(self):
  746. """
  747. Verify ETag and Digest headers on creation.
  748. The headers must correspond to the checksum of the binary content.
  749. """
  750. uid = '/test_etag1'
  751. path = '/ldp' + uid
  752. content = uuid4().bytes
  753. content_cksum = hashlib.new(digest_algo, content)
  754. put_rsp = self.client.put(
  755. path, data=content, content_type='text/plain')
  756. assert content_cksum.hexdigest() in \
  757. put_rsp.headers.get('etag').split(',')
  758. assert put_rsp.headers.get('digest') == \
  759. f'{digest_algo.upper()}=' + b64encode(content_cksum.digest()).decode()
  760. get_rsp = self.client.get(path)
  761. assert content_cksum.hexdigest() in \
  762. put_rsp.headers.get('etag').split(',')
  763. assert get_rsp.headers.get('digest') == \
  764. f'{digest_algo.upper()}=' + b64encode(content_cksum.digest()).decode()
  765. def test_etag_ident(self):
  766. """
  767. Verify that two resources with the same content yield identical ETags.
  768. """
  769. path1 = f'/ldp/{uuid4()}'
  770. path2 = f'/ldp/{uuid4()}'
  771. content = uuid4().bytes
  772. content_cksum = hashlib.new(digest_algo, content)
  773. self.client.put(path1, data=content, content_type='text/plain')
  774. self.client.put(path2, data=content, content_type='text/plain')
  775. get_rsp1 = self.client.get(path1)
  776. get_rsp2 = self.client.get(path2)
  777. assert get_rsp1.headers.get('etag') == get_rsp2.headers.get('etag')
  778. assert get_rsp1.headers.get('digest') == get_rsp2.headers.get('digest')
  779. def test_etag_diff(self):
  780. """
  781. Verify that two resources with different content yield different ETags.
  782. """
  783. path1 = f'/ldp/{uuid4()}'
  784. path2 = f'/ldp/{uuid4()}'
  785. content1 = b'some interesting content.'
  786. content_cksum1 = hashlib.new(digest_algo, content1)
  787. content2 = b'Some great content.'
  788. content_cksum2 = hashlib.new(digest_algo, content2)
  789. self.client.put(path1, data=content1, content_type='text/plain')
  790. self.client.put(path2, data=content2, content_type='text/plain')
  791. get_rsp1 = self.client.get(path1)
  792. get_rsp2 = self.client.get(path2)
  793. assert get_rsp1.headers.get('etag') != get_rsp2.headers.get('etag')
  794. assert get_rsp1.headers.get('digest') != get_rsp2.headers.get('digest')
  795. def test_etag_update(self):
  796. """
  797. Verify that ETag and digest change when the resource is updated.
  798. The headers should NOT change if the same binary content is
  799. re-submitted.
  800. """
  801. path = f'/ldp/{uuid4()}'
  802. content1 = uuid4().bytes
  803. content_cksum1 = hashlib.new(digest_algo, content1)
  804. content2 = uuid4().bytes
  805. content_cksum2 = hashlib.new(digest_algo, content2)
  806. self.client.put(path, data=content1, content_type='text/plain')
  807. get_rsp = self.client.get(path)
  808. assert content_cksum1.hexdigest() == \
  809. get_rsp.headers.get('etag').strip('"')
  810. assert get_rsp.headers.get('digest') == \
  811. f'{digest_algo.upper()}=' + b64encode(content_cksum1.digest()).decode()
  812. put_rsp = self.client.put(
  813. path, data=content2, content_type='text/plain')
  814. assert content_cksum2.hexdigest() == \
  815. put_rsp.headers.get('etag').strip('"')
  816. assert put_rsp.headers.get('digest') == \
  817. f'{digest_algo.upper()}=' + b64encode(content_cksum2.digest()).decode()
  818. get_rsp = self.client.get(path)
  819. assert content_cksum2.hexdigest() == \
  820. get_rsp.headers.get('etag').strip('"')
  821. assert get_rsp.headers.get('digest') == \
  822. f'{digest_algo.upper()}=' + b64encode(content_cksum2.digest()).decode()
  823. def test_etag_rdf(self):
  824. """
  825. Verify that LDP-RS resources don't get an ETag.
  826. TODO This is by design for now; when a reliable hashing method
  827. for a graph is devised, this test should change.
  828. """
  829. path = f'/ldp/{uuid4()}'
  830. put_rsp = self.client.put(path, content_type='text/turtle')
  831. assert not put_rsp.headers.get('etag')
  832. assert not put_rsp.headers.get('digest')
  833. get_rsp = self.client.get(path)
  834. assert not get_rsp.headers.get('etag')
  835. assert not get_rsp.headers.get('digest')
  836. def test_digest_put(self):
  837. """
  838. Test the ``Digest`` header with PUT to verify content integrity.
  839. """
  840. path1 = f'/ldp/{uuid4()}'
  841. path2 = f'/ldp/{uuid4()}'
  842. path3 = f'/ldp/{uuid4()}'
  843. content = uuid4().bytes
  844. content_sha1 = sha1(content).hexdigest()
  845. content_sha256 = sha256(content).hexdigest()
  846. content_blake2b = blake2b(content).hexdigest()
  847. assert self.client.put(path1, data=content, headers={
  848. 'digest': 'sha1=abcd'}).status_code == 409
  849. assert self.client.put(path1, data=content, headers={
  850. 'digest': f'sha1={content_sha1}'}).status_code == 201
  851. assert self.client.put(path2, data=content, headers={
  852. 'digest': f'SHA1={content_sha1}'}).status_code == 201
  853. assert self.client.put(path3, data=content, headers={
  854. 'digest': f'SHA256={content_sha256}'}).status_code == 201
  855. assert self.client.put(path3, data=content, headers={
  856. 'digest': f'blake2b={content_blake2b}'}).status_code == 204
  857. def test_digest_post(self):
  858. """
  859. Test the ``Digest`` header with POST to verify content integrity.
  860. """
  861. path = '/ldp'
  862. content = uuid4().bytes
  863. content_sha1 = sha1(content).hexdigest()
  864. content_sha256 = sha256(content).hexdigest()
  865. content_blake2b = blake2b(content).hexdigest()
  866. assert self.client.post(path, data=content, headers={
  867. 'digest': 'sha1=abcd'}).status_code == 409
  868. assert self.client.post(path, data=content, headers={
  869. 'digest': f'sha1={content_sha1}'}).status_code == 201
  870. assert self.client.post(path, data=content, headers={
  871. 'digest': f'SHA1={content_sha1}'}).status_code == 201
  872. assert self.client.post(path, data=content, headers={
  873. 'digest': f'SHA256={content_sha256}'}).status_code == 201
  874. assert self.client.post(path, data=content, headers={
  875. 'digest': f'blake2b={content_blake2b}'}).status_code == 201
  876. assert self.client.post(path, data=content, headers={
  877. 'digest': f'bogusmd={content_blake2b}'}).status_code == 400
  878. bencoded = b64encode(content_blake2b.encode())
  879. assert self.client.post(
  880. path, data=content,
  881. headers={'digest': f'blake2b={bencoded}'}
  882. ).status_code == 400
  883. @pytest.mark.usefixtures('client_class')
  884. class TestETagCondHeaders:
  885. """
  886. Test Digest and ETag headers.
  887. """
  888. def test_if_match_get(self):
  889. """
  890. Test the If-Match header on GET requests.
  891. Test providing single and multiple ETags.
  892. """
  893. path = '/ldp/test_if_match1'
  894. content = uuid4().bytes
  895. content_cksum = hashlib.new(digest_algo, content).hexdigest()
  896. bogus_cksum = uuid4().hex
  897. self.client.put(
  898. path, data=content, headers={'content-type': 'text/plain'})
  899. get_rsp = self.client.get(path, headers={
  900. 'if-match': f'"{content_cksum}"'})
  901. assert get_rsp.status_code == 200
  902. get_rsp = self.client.get(path, headers={
  903. 'if-match': f'"{bogus_cksum}"'})
  904. assert get_rsp.status_code == 412
  905. get_rsp = self.client.get(path, headers={
  906. 'if-match': f'"{content_cksum}", "{bogus_cksum}"'})
  907. assert get_rsp.status_code == 200
  908. def test_if_match_put(self):
  909. """
  910. Test the If-Match header on PUT requests.
  911. Test providing single and multiple ETags.
  912. """
  913. path = '/ldp/test_if_match1'
  914. content = uuid4().bytes
  915. content_cksum = hashlib.new(digest_algo, content).hexdigest()
  916. bogus_cksum = uuid4().hex
  917. get_rsp = self.client.get(path)
  918. old_cksum = get_rsp.headers.get('etag')
  919. put_rsp = self.client.put(path, data=content, headers={
  920. 'if-match': f'"{content_cksum}"'})
  921. assert put_rsp.status_code == 412
  922. put_rsp = self.client.put(path, data=content, headers={
  923. 'if-match': f'"{content_cksum}", "{bogus_cksum}"'})
  924. assert put_rsp.status_code == 412
  925. put_rsp = self.client.put(path, data=content, headers={
  926. 'if-match': f'"{old_cksum}", "{bogus_cksum}"'})
  927. assert put_rsp.status_code == 204
  928. # Now contents have changed.
  929. put_rsp = self.client.put(path, data=content, headers={
  930. 'if-match': f'"{old_cksum}"'})
  931. assert put_rsp.status_code == 412
  932. put_rsp = self.client.put(path, data=content, headers={
  933. 'if-match': f'"{content_cksum}"'})
  934. assert put_rsp.status_code == 204
  935. # Exactly the same content was uploaded, so the ETag should not have
  936. # changed.
  937. put_rsp = self.client.put(path, data=content, headers={
  938. 'if-match': f'"{content_cksum}"'})
  939. assert put_rsp.status_code == 204
  940. # Catch-all: Proceed if resource exists at the given location.
  941. put_rsp = self.client.put(path, data=content, headers={
  942. 'if-match': '*'})
  943. assert put_rsp.status_code == 204
  944. # This is wrong syntax. It will not update because the literal asterisk
  945. # won't match.
  946. put_rsp = self.client.put(path, data=content, headers={
  947. 'if-match': '"*"'})
  948. assert put_rsp.status_code == 412
  949. # Test delete.
  950. del_rsp = self.client.delete(path, headers={
  951. 'if-match': f'"{old_cksum}"', 'Prefer': 'no-tombstone'})
  952. assert del_rsp.status_code == 412
  953. del_rsp = self.client.delete(path, headers={
  954. 'if-match': f'"{content_cksum}"', 'Prefer': 'no-tombstone'})
  955. assert del_rsp.status_code == 204
  956. put_rsp = self.client.put(path, data=content, headers={
  957. 'if-match': '*'})
  958. assert put_rsp.status_code == 412
  959. def test_if_none_match_get(self):
  960. """
  961. Test the If-None-Match header on GET requests.
  962. Test providing single and multiple ETags.
  963. """
  964. path = '/ldp/test_if_none_match1'
  965. content = uuid4().bytes
  966. content_cksum = hashlib.new(digest_algo, content).hexdigest()
  967. bogus_cksum = uuid4().hex
  968. self.client.put(
  969. path, data=content, headers={'content-type': 'text/plain'})
  970. get_rsp1 = self.client.get(path, headers={
  971. 'if-none-match': f'"{content_cksum}"'})
  972. assert get_rsp1.status_code == 304
  973. get_rsp2 = self.client.get(path, headers={
  974. 'if-none-match': f'"{bogus_cksum}"'})
  975. assert get_rsp2.status_code == 200
  976. get_rsp3 = self.client.get(path, headers={
  977. 'if-none-match': f'"{content_cksum}", "{bogus_cksum}"'})
  978. assert get_rsp3.status_code == 304
  979. # 404 has precedence on ETag handling.
  980. get_rsp = self.client.get('/ldp/bogus', headers={
  981. 'if-none-match': f'"{bogus_cksum}"'})
  982. assert get_rsp.status_code == 404
  983. get_rsp = self.client.get('/ldp/bogus', headers={
  984. 'if-none-match': f'"{content_cksum}"'})
  985. assert get_rsp.status_code == 404
  986. def test_if_none_match_put(self):
  987. """
  988. Test the If-None-Match header on PUT requests.
  989. Test providing single and multiple ETags.
  990. Uses a previously created resource.
  991. """
  992. path = '/ldp/test_if_none_match1'
  993. content = uuid4().bytes
  994. content_cksum = hashlib.new(digest_algo, content).hexdigest()
  995. bogus_cksum = uuid4().hex
  996. get_rsp = self.client.get(path)
  997. old_cksum = get_rsp.headers.get('etag')
  998. put_rsp = self.client.put(path, data=content, headers={
  999. 'if-none-match': f'"{old_cksum}"'})
  1000. assert put_rsp.status_code == 412
  1001. put_rsp = self.client.put(path, data=content, headers={
  1002. 'if-none-match': f'"{old_cksum}", "{bogus_cksum}"'})
  1003. assert put_rsp.status_code == 412
  1004. put_rsp = self.client.put(path, data=content, headers={
  1005. 'if-none-match': f'"{bogus_cksum}"'})
  1006. assert put_rsp.status_code == 204
  1007. # Now contents have changed.
  1008. put_rsp = self.client.put(path, data=content, headers={
  1009. 'if-none-match': f'"{content_cksum}"'})
  1010. assert put_rsp.status_code == 412
  1011. put_rsp = self.client.put(path, data=content, headers={
  1012. 'if-none-match': f'"{old_cksum}"'})
  1013. assert put_rsp.status_code == 204
  1014. # Catch-all: fail if any resource exists at the given location.
  1015. put_rsp = self.client.put(path, data=content, headers={
  1016. 'if-none-match': '*'})
  1017. assert put_rsp.status_code == 412
  1018. # Test delete.
  1019. del_rsp = self.client.delete(path, headers={
  1020. 'if-none-match': f'"{content_cksum}"', 'Prefer': 'no-tombstone'})
  1021. assert del_rsp.status_code == 412
  1022. del_rsp = self.client.delete(path, headers={
  1023. 'if-none-match': f'"{bogus_cksum}"', 'Prefer': 'no-tombstone'})
  1024. assert del_rsp.status_code == 204
  1025. put_rsp = self.client.put(path, data=content, headers={
  1026. 'if-none-match': '*'})
  1027. assert put_rsp.status_code == 201
  1028. # This is wrong syntax. It will update because the literal asterisk
  1029. # won't match.
  1030. put_rsp = self.client.put(path, data=content, headers={
  1031. 'if-none-match': '"*"'})
  1032. assert put_rsp.status_code == 204
  1033. def test_etag_notfound(self):
  1034. """
  1035. Verify that 404 and 410 have precedence on ETag handling.
  1036. """
  1037. path = f'/ldp/{uuid4()}'
  1038. bogus_cksum = uuid4().hex
  1039. get_rsp = self.client.get(path, headers={
  1040. 'if-match': f'"{bogus_cksum}"'})
  1041. assert get_rsp.status_code == 404
  1042. get_rsp = self.client.get(path, headers={
  1043. 'if-match': '*'})
  1044. assert get_rsp.status_code == 404
  1045. get_rsp = self.client.get(path, headers={
  1046. 'if-none-match': f'"{bogus_cksum}"'})
  1047. assert get_rsp.status_code == 404
  1048. self.client.put(path)
  1049. self.client.delete(path)
  1050. get_rsp = self.client.get(path, headers={
  1051. 'if-match': f'"{bogus_cksum}"'})
  1052. assert get_rsp.status_code == 410
  1053. get_rsp = self.client.get(path, headers={
  1054. 'if-none-match': f'"{bogus_cksum}"'})
  1055. assert get_rsp.status_code == 410
  1056. get_rsp = self.client.get(path, headers={
  1057. 'if-match': '*'})
  1058. assert get_rsp.status_code == 410
  1059. @pytest.mark.usefixtures('client_class')
  1060. class TestModifyTimeCondHeaders:
  1061. """
  1062. Test time-related conditional headers.
  1063. """
  1064. @pytest.fixture(scope='class')
  1065. def timeframe(self):
  1066. """
  1067. Times used in these tests: UTC midnight of today, yesterday, tomorrow.
  1068. """
  1069. today = arrow.utcnow().floor('day')
  1070. yesterday = today.shift(days=-1)
  1071. tomorrow = today.shift(days=1)
  1072. path = f'/ldp/{uuid4()}'
  1073. self.client.put(path)
  1074. return path, today, yesterday, tomorrow
  1075. def test_nothing(self):
  1076. """
  1077. For some reason, without this the fixture won't initialize properly.
  1078. """
  1079. self.client.get('/')
  1080. def test_if_modified_since(self, timeframe):
  1081. """
  1082. Test various uses of the If-Modified-Since header.
  1083. """
  1084. path, today, yesterday, tomorrow = timeframe
  1085. assert self.client.head(
  1086. path, headers={'if-modified-since': http_date(today.timestamp)}
  1087. ).status_code == 200
  1088. assert self.client.get(
  1089. path, headers={'if-modified-since': http_date(today.timestamp)}
  1090. ).status_code == 200
  1091. assert self.client.head(
  1092. path, headers={'if-modified-since': http_date(yesterday.timestamp)}
  1093. ).status_code == 200
  1094. assert self.client.get(
  1095. path, headers={'if-modified-since': http_date(yesterday.timestamp)}
  1096. ).status_code == 200
  1097. assert self.client.head(
  1098. path, headers={'if-modified-since': http_date(tomorrow.timestamp)}
  1099. ).status_code == 304
  1100. assert self.client.get(
  1101. path, headers={'if-modified-since': http_date(tomorrow.timestamp)}
  1102. ).status_code == 304
  1103. def test_if_unmodified_since(self, timeframe):
  1104. """
  1105. Test various uses of the If-Unmodified-Since header.
  1106. """
  1107. path, today, yesterday, tomorrow = timeframe
  1108. assert self.client.head(
  1109. path, headers={'if-unmodified-since': http_date(today.timestamp)}
  1110. ).status_code == 304
  1111. assert self.client.get(
  1112. path, headers={'if-unmodified-since': http_date(today.timestamp)}
  1113. ).status_code == 304
  1114. assert self.client.head(
  1115. path, headers={'if-unmodified-since': http_date(yesterday.timestamp)}
  1116. ).status_code == 304
  1117. assert self.client.get(
  1118. path, headers={'if-unmodified-since': http_date(yesterday.timestamp)}
  1119. ).status_code == 304
  1120. assert self.client.head(
  1121. path, headers={'if-unmodified-since': http_date(tomorrow.timestamp)}
  1122. ).status_code == 200
  1123. assert self.client.get(
  1124. path, headers={'if-unmodified-since': http_date(tomorrow.timestamp)}
  1125. ).status_code == 200
  1126. def test_time_range(self, timeframe):
  1127. """
  1128. Test conditions inside and outside of a time range.
  1129. """
  1130. path, today, yesterday, tomorrow = timeframe
  1131. # Send me the resource if it has been modified between yesterday
  1132. # and tomorrow.
  1133. assert self.client.get(path, headers={
  1134. 'if-modified-since': http_date(yesterday.timestamp),
  1135. 'if-unmodified-since': http_date(tomorrow.timestamp),
  1136. }).status_code == 200
  1137. # Send me the resource if it has been modified between today
  1138. # and tomorrow.
  1139. assert self.client.get(path, headers={
  1140. 'if-modified-since': http_date(today.timestamp),
  1141. 'if-unmodified-since': http_date(tomorrow.timestamp),
  1142. }).status_code == 200
  1143. # Send me the resource if it has been modified between yesterday
  1144. # and today.
  1145. assert self.client.get(path, headers={
  1146. 'if-modified-since': http_date(yesterday.timestamp),
  1147. 'if-unmodified-since': http_date(today.timestamp),
  1148. }).status_code == 304
  1149. # Send me the resource if it has been modified between two days ago
  1150. # and yesterday.
  1151. assert self.client.get(path, headers={
  1152. 'if-modified-since': http_date(yesterday.shift(days=-1).timestamp),
  1153. 'if-unmodified-since': http_date(yesterday.timestamp),
  1154. }).status_code == 304
  1155. # Send me the resource if it has been modified between tomorrow
  1156. # and two days from today.
  1157. assert self.client.get(path, headers={
  1158. 'if-modified-since': http_date(tomorrow.timestamp),
  1159. 'if-unmodified-since': http_date(tomorrow.shift(days=1).timestamp),
  1160. }).status_code == 304
  1161. def test_time_etag_combo(self, timeframe):
  1162. """
  1163. Test evaluation priorities among ETag and time headers.
  1164. """
  1165. _, today, yesterday, tomorrow = timeframe
  1166. path = f'/ldp/{uuid4()}'
  1167. content = uuid4().bytes
  1168. content_cksum = hashlib.new(digest_algo, content).hexdigest()
  1169. bogus_cksum = uuid4().hex
  1170. self.client.put(
  1171. path, data=content, headers={'content-type': 'text/plain'})
  1172. # Negative ETag match wins.
  1173. assert self.client.get(path, headers={
  1174. 'if-match': f'"{bogus_cksum}"',
  1175. 'if-modified-since': http_date(yesterday.timestamp),
  1176. }).status_code == 412
  1177. assert self.client.get(path, headers={
  1178. 'if-match': f'"{bogus_cksum}"',
  1179. 'if-unmodified-since': http_date(tomorrow.timestamp),
  1180. }).status_code == 412
  1181. assert self.client.get(path, headers={
  1182. 'if-none-match': f'"{content_cksum}"',
  1183. 'if-modified-since': http_date(yesterday.timestamp),
  1184. }).status_code == 304
  1185. assert self.client.get(path, headers={
  1186. 'if-none-match': f'"{content_cksum}"',
  1187. 'if-unmodified-since': http_date(tomorrow.timestamp),
  1188. }).status_code == 304
  1189. # Positive ETag match wins.
  1190. assert self.client.get(path, headers={
  1191. 'if-match': f'"{content_cksum}"',
  1192. 'if-unmodified-since': http_date(yesterday.timestamp),
  1193. }).status_code == 200
  1194. assert self.client.get(path, headers={
  1195. 'if-match': f'"{content_cksum}"',
  1196. 'if-modified-since': http_date(tomorrow.timestamp),
  1197. }).status_code == 200
  1198. assert self.client.get(path, headers={
  1199. 'if-none-match': f'"{bogus_cksum}"',
  1200. 'if-unmodified-since': http_date(yesterday.timestamp),
  1201. }).status_code == 200
  1202. assert self.client.get(path, headers={
  1203. 'if-none-match': f'"{bogus_cksum}"',
  1204. 'if-modified-since': http_date(tomorrow.timestamp),
  1205. }).status_code == 200
  1206. @pytest.mark.usefixtures('client_class')
  1207. class TestRange:
  1208. """
  1209. Test byte range retrieval.
  1210. This should not need too deep testing since it's functionality implemented
  1211. in Werkzeug/Flask.
  1212. """
  1213. @pytest.fixture(scope='class')
  1214. def bytestream(self):
  1215. """
  1216. Create a sample bytestream with predictable (8x8 bytes) content.
  1217. """
  1218. return b''.join([bytes([n] * 8) for n in range(8)])
  1219. def test_get_range(self, bytestream):
  1220. """
  1221. Get different ranges of the bitstream.
  1222. """
  1223. path = '/ldp/test_range'
  1224. self.client.put(path, data=bytestream)
  1225. # First 8 bytes.
  1226. assert self.client.get(
  1227. path, headers={'range': 'bytes=0-7'}).data == b'\x00' * 8
  1228. # Last 4 bytes of first block, first 4 of second block.
  1229. assert self.client.get(
  1230. path, headers={'range': 'bytes=4-11'}
  1231. ).data == b'\x00' * 4 + b'\x01' * 4
  1232. # Last 8 bytes.
  1233. assert self.client.get(
  1234. path, headers={'range': 'bytes=56-'}).data == b'\x07' * 8
  1235. def test_fail_ranges(self, bytestream):
  1236. """
  1237. Test malformed or unsupported ranges.
  1238. """
  1239. path = '/ldp/test_range'
  1240. # TODO This shall be a 206 when multiple ranges are supported.
  1241. fail_rsp = self.client.get(path, headers={'range': 'bytes=0-1, 7-8'})
  1242. assert fail_rsp.status_code == 501
  1243. # Bad ranges will be ignored.
  1244. for rng in ((10, 4), ('', 3), (3600, 6400)):
  1245. bad_rsp = self.client.get(
  1246. path, headers={'range': 'bytes={rng[0]}-{rng[1]}'})
  1247. assert bad_rsp.status_code == 200
  1248. assert bad_rsp.data == bytestream
  1249. assert int(bad_rsp.headers['content-length']) == len(bytestream)
  1250. def test_range_rsp_headers(self, bytestream):
  1251. """
  1252. Test various headers for a ranged response.
  1253. """
  1254. path = '/ldp/test_range'
  1255. start_b = 0
  1256. end_b = 7
  1257. full_rsp = self.client.get(path)
  1258. part_rsp = self.client.get(path, headers={
  1259. 'range': f'bytes={start_b}-{end_b}'})
  1260. for hdr_name in ['etag', 'digest', 'content-type']:
  1261. assert part_rsp.headers[hdr_name] == full_rsp.headers[hdr_name]
  1262. for hdr in part_rsp.headers['link']:
  1263. assert hdr in full_rsp.headers['link']
  1264. assert int(part_rsp.headers['content-length']) == end_b - start_b + 1
  1265. assert part_rsp.headers['content-range'] == \
  1266. f'bytes {start_b}-{end_b} / {len(bytestream)}'
  1267. @pytest.mark.usefixtures('client_class')
  1268. class TestPrefHeader:
  1269. """
  1270. Test various combinations of `Prefer` header.
  1271. """
  1272. @pytest.fixture(scope='class')
  1273. def cont_structure(self):
  1274. """
  1275. Create a container structure to be used for subsequent requests.
  1276. """
  1277. parent_path = '/ldp/test_parent'
  1278. self.client.put(parent_path, content_type='text/turtle')
  1279. self.client.put(parent_path + '/child1', content_type='text/turtle')
  1280. self.client.put(parent_path + '/child2', content_type='text/turtle')
  1281. self.client.put(parent_path + '/child3', content_type='text/turtle')
  1282. return {
  1283. 'path' : parent_path,
  1284. 'response' : self.client.get(parent_path),
  1285. }
  1286. def test_put_prefer_handling(self, random_uuid):
  1287. """
  1288. Trying to PUT an existing resource should:
  1289. - Return a 204 if the payload is empty
  1290. - Return a 204 if the payload is RDF, server-managed triples are
  1291. included and the 'Prefer' header is set to 'handling=lenient'
  1292. - Return a 412 (ServerManagedTermError) if the payload is RDF,
  1293. server-managed triples are included and handling is set to 'strict',
  1294. or not set.
  1295. """
  1296. path = '/ldp/put_pref_header01'
  1297. assert self.client.put(path, content_type='text/turtle').status_code == 201
  1298. assert self.client.get(path).status_code == 200
  1299. assert self.client.put(path, content_type='text/turtle').status_code == 204
  1300. # Default handling is strict.
  1301. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  1302. rsp_default = self.client.put(
  1303. path,
  1304. headers={
  1305. 'Content-Type' : 'text/turtle',
  1306. },
  1307. data=f
  1308. )
  1309. assert rsp_default.status_code == 412
  1310. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  1311. rsp_len = self.client.put(
  1312. path,
  1313. headers={
  1314. 'Prefer' : 'handling=lenient',
  1315. 'Content-Type' : 'text/turtle',
  1316. },
  1317. data=f
  1318. )
  1319. assert rsp_len.status_code == 204
  1320. with open('tests/data/rdf_payload_w_srv_mgd_trp.ttl', 'rb') as f:
  1321. rsp_strict = self.client.put(
  1322. path,
  1323. headers={
  1324. 'Prefer' : 'handling=strict',
  1325. 'Content-Type' : 'text/turtle',
  1326. },
  1327. data=f
  1328. )
  1329. assert rsp_strict.status_code == 412
  1330. # @HOLD Embed children is debated.
  1331. def _disabled_test_embed_children(self, cont_structure):
  1332. """
  1333. verify the "embed children" prefer header.
  1334. """
  1335. self.client.get('/ldp')
  1336. parent_path = cont_structure['path']
  1337. cont_resp = cont_structure['response']
  1338. cont_subject = URIRef(g.webroot + '/test_parent')
  1339. #minimal_resp = self.client.get(parent_path, headers={
  1340. # 'Prefer' : 'return=minimal',
  1341. #})
  1342. incl_embed_children_resp = self.client.get(parent_path, headers={
  1343. 'Prefer' : 'return=representation; include={}'\
  1344. .format(Ldpr.EMBED_CHILD_RES_URI),
  1345. })
  1346. omit_embed_children_resp = self.client.get(parent_path, headers={
  1347. 'Prefer' : 'return=representation; omit={}'\
  1348. .format(Ldpr.EMBED_CHILD_RES_URI),
  1349. })
  1350. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  1351. incl_gr = Graph().parse(
  1352. data=incl_embed_children_resp.data, format='turtle')
  1353. omit_gr = Graph().parse(
  1354. data=omit_embed_children_resp.data, format='turtle')
  1355. assert isomorphic(omit_gr, default_gr)
  1356. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  1357. assert len(children) == 3
  1358. children = set(incl_gr[cont_subject : nsc['ldp'].contains])
  1359. for child_uri in children:
  1360. assert set(incl_gr[ child_uri : : ])
  1361. assert not set(omit_gr[ child_uri : : ])
  1362. def test_return_children(self, cont_structure):
  1363. """
  1364. verify the "return children" prefer header.
  1365. """
  1366. self.client.get('/ldp')
  1367. parent_path = cont_structure['path']
  1368. cont_resp = cont_structure['response']
  1369. cont_subject = URIRef(g.webroot + '/test_parent')
  1370. incl_children_resp = self.client.get(parent_path, headers={
  1371. 'Prefer' : 'return=representation; include={}'\
  1372. .format(Ldpr.RETURN_CHILD_RES_URI),
  1373. })
  1374. omit_children_resp = self.client.get(parent_path, headers={
  1375. 'Prefer' : 'return=representation; omit={}'\
  1376. .format(Ldpr.RETURN_CHILD_RES_URI),
  1377. })
  1378. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  1379. incl_gr = Graph().parse(data=incl_children_resp.data, format='turtle')
  1380. omit_gr = Graph().parse(data=omit_children_resp.data, format='turtle')
  1381. assert isomorphic(incl_gr, default_gr)
  1382. children = incl_gr[cont_subject : nsc['ldp'].contains]
  1383. for child_uri in children:
  1384. assert not omit_gr[cont_subject : nsc['ldp'].contains : child_uri]
  1385. def test_inbound_rel(self, cont_structure):
  1386. """
  1387. verify the "inbound relationships" prefer header.
  1388. """
  1389. self.client.put('/ldp/test_target', content_type='text/turtle')
  1390. data = '<> <http://ex.org/ns#shoots> <{}> .'.format(
  1391. g.webroot + '/test_target')
  1392. self.client.put('/ldp/test_shooter', data=data,
  1393. headers={'Content-Type': 'text/turtle'})
  1394. cont_resp = self.client.get('/ldp/test_target')
  1395. incl_inbound_resp = self.client.get('/ldp/test_target', headers={
  1396. 'Prefer' : 'return=representation; include="{}"'\
  1397. .format(Ldpr.RETURN_INBOUND_REF_URI),
  1398. })
  1399. omit_inbound_resp = self.client.get('/ldp/test_target', headers={
  1400. 'Prefer' : 'return=representation; omit="{}"'\
  1401. .format(Ldpr.RETURN_INBOUND_REF_URI),
  1402. })
  1403. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  1404. incl_gr = Graph().parse(data=incl_inbound_resp.data, format='turtle')
  1405. omit_gr = Graph().parse(data=omit_inbound_resp.data, format='turtle')
  1406. subject = URIRef(g.webroot + '/test_target')
  1407. inbd_subject = URIRef(g.webroot + '/test_shooter')
  1408. assert isomorphic(omit_gr, default_gr)
  1409. assert len(set(incl_gr[inbd_subject : : ])) == 1
  1410. assert incl_gr[
  1411. inbd_subject : URIRef('http://ex.org/ns#shoots') : subject]
  1412. assert not len(set(omit_gr[inbd_subject : :]))
  1413. def test_srv_mgd_triples(self, cont_structure):
  1414. """
  1415. verify the "server managed triples" prefer header.
  1416. """
  1417. self.client.get('/ldp')
  1418. parent_path = cont_structure['path']
  1419. cont_resp = cont_structure['response']
  1420. cont_subject = URIRef(g.webroot + '/test_parent')
  1421. incl_srv_mgd_resp = self.client.get(parent_path, headers={
  1422. 'Prefer' : 'return=representation; include={}'\
  1423. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  1424. })
  1425. omit_srv_mgd_resp = self.client.get(parent_path, headers={
  1426. 'Prefer' : 'return=representation; omit={}'\
  1427. .format(Ldpr.RETURN_SRV_MGD_RES_URI),
  1428. })
  1429. default_gr = Graph().parse(data=cont_resp.data, format='turtle')
  1430. incl_gr = Graph().parse(data=incl_srv_mgd_resp.data, format='turtle')
  1431. omit_gr = Graph().parse(data=omit_srv_mgd_resp.data, format='turtle')
  1432. assert isomorphic(incl_gr, default_gr)
  1433. for pred in {
  1434. nsc['fcrepo'].created,
  1435. nsc['fcrepo'].createdBy,
  1436. nsc['fcrepo'].lastModified,
  1437. nsc['fcrepo'].lastModifiedBy,
  1438. nsc['ldp'].contains,
  1439. }:
  1440. assert set(incl_gr[ cont_subject : pred : ])
  1441. assert not set(omit_gr[ cont_subject : pred : ])
  1442. for type in {
  1443. nsc['fcrepo'].Resource,
  1444. nsc['ldp'].Container,
  1445. nsc['ldp'].Resource,
  1446. }:
  1447. assert incl_gr[ cont_subject : RDF.type : type ]
  1448. assert not omit_gr[ cont_subject : RDF.type : type ]
  1449. def test_delete_no_tstone(self):
  1450. """
  1451. Test the `no-tombstone` Prefer option.
  1452. """
  1453. self.client.put('/ldp/test_delete_no_tstone01')
  1454. self.client.put('/ldp/test_delete_no_tstone01/a')
  1455. self.client.delete('/ldp/test_delete_no_tstone01', headers={
  1456. 'prefer' : 'no-tombstone'})
  1457. resp = self.client.get('/ldp/test_delete_no_tstone01')
  1458. assert resp.status_code == 404
  1459. child_resp = self.client.get('/ldp/test_delete_no_tstone01/a')
  1460. assert child_resp.status_code == 404
  1461. #@pytest.mark.usefixtures('client_class')
  1462. #@pytest.mark.usefixtures('db')
  1463. #class TestDigest:
  1464. # """
  1465. # Test digest and ETag handling.
  1466. # """
  1467. # @pytest.mark.skip(reason='TODO Need to implement async digest queue')
  1468. # def test_digest_post(self):
  1469. # """
  1470. # Test ``Digest`` and ``ETag`` headers on resource POST.
  1471. # """
  1472. # resp = self.client.post('/ldp/')
  1473. # assert 'Digest' in resp.headers
  1474. # assert 'ETag' in resp.headers
  1475. # assert (
  1476. # b64encode(bytes.fromhex(
  1477. # resp.headers['ETag'].replace('W/', '')
  1478. # )).decode('ascii') ==
  1479. # resp.headers['Digest'].replace('SHA256=', ''))
  1480. #
  1481. #
  1482. # @pytest.mark.skip(reason='TODO Need to implement async digest queue')
  1483. # def test_digest_put(self):
  1484. # """
  1485. # Test ``Digest`` and ``ETag`` headers on resource PUT.
  1486. # """
  1487. # resp_put = self.client.put('/ldp/test_digest_put')
  1488. # assert 'Digest' in resp_put.headers
  1489. # assert 'ETag' in resp_put.headers
  1490. # assert (
  1491. # b64encode(bytes.fromhex(
  1492. # resp_put.headers['ETag'].replace('W/', '')
  1493. # )).decode('ascii') ==
  1494. # resp_put.headers['Digest'].replace('SHA256=', ''))
  1495. #
  1496. # resp_get = self.client.get('/ldp/test_digest_put')
  1497. # assert 'Digest' in resp_get.headers
  1498. # assert 'ETag' in resp_get.headers
  1499. # assert (
  1500. # b64encode(bytes.fromhex(
  1501. # resp_get.headers['ETag'].replace('W/', '')
  1502. # )).decode('ascii') ==
  1503. # resp_get.headers['Digest'].replace('SHA256=', ''))
  1504. #
  1505. #
  1506. # @pytest.mark.skip(reason='TODO Need to implement async digest queue')
  1507. # def test_digest_patch(self):
  1508. # """
  1509. # Verify that the digest and ETag change on resource change.
  1510. # """
  1511. # path = '/ldp/test_digest_patch'
  1512. # self.client.put(path)
  1513. # rsp1 = self.client.get(path)
  1514. #
  1515. # self.client.patch(
  1516. # path, data=b'DELETE {} INSERT {<> a <http://ex.org/Test> .} '
  1517. # b'WHERE {}',
  1518. # headers={'Content-Type': 'application/sparql-update'})
  1519. # rsp2 = self.client.get(path)
  1520. #
  1521. # assert rsp1.headers['ETag'] != rsp2.headers['ETag']
  1522. # assert rsp1.headers['Digest'] != rsp2.headers['Digest']
  1523. @pytest.mark.usefixtures('client_class')
  1524. @pytest.mark.usefixtures('db')
  1525. class TestVersion:
  1526. """
  1527. Test version creation, retrieval and deletion.
  1528. """
  1529. def test_create_versions(self):
  1530. """
  1531. Test that POSTing multiple times to fcr:versions creates the
  1532. 'hasVersions' triple and yields multiple version snapshots.
  1533. """
  1534. self.client.put('/ldp/test_version', content_type='text/turtle')
  1535. create_rsp = self.client.post('/ldp/test_version/fcr:versions')
  1536. assert create_rsp.status_code == 201
  1537. rsrc_rsp = self.client.get('/ldp/test_version')
  1538. rsrc_gr = Graph().parse(data=rsrc_rsp.data, format='turtle')
  1539. assert len(set(rsrc_gr[: nsc['fcrepo'].hasVersions :])) == 1
  1540. info_rsp = self.client.get('/ldp/test_version/fcr:versions')
  1541. assert info_rsp.status_code == 200
  1542. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  1543. assert len(set(info_gr[: nsc['fcrepo'].hasVersion :])) == 1
  1544. self.client.post('/ldp/test_version/fcr:versions')
  1545. info2_rsp = self.client.get('/ldp/test_version/fcr:versions')
  1546. info2_gr = Graph().parse(data=info2_rsp.data, format='turtle')
  1547. assert len(set(info2_gr[: nsc['fcrepo'].hasVersion :])) == 2
  1548. def test_version_with_slug(self):
  1549. """
  1550. Test a version with a slug.
  1551. """
  1552. self.client.put('/ldp/test_version_slug', content_type='text/turtle')
  1553. create_rsp = self.client.post('/ldp/test_version_slug/fcr:versions',
  1554. headers={'slug' : 'v1'})
  1555. new_ver_uri = create_rsp.headers['Location']
  1556. assert new_ver_uri == g.webroot + '/test_version_slug/fcr:versions/v1'
  1557. info_rsp = self.client.get('/ldp/test_version_slug/fcr:versions')
  1558. info_gr = Graph().parse(data=info_rsp.data, format='turtle')
  1559. assert info_gr[
  1560. URIRef(new_ver_uri) :
  1561. nsc['fcrepo'].hasVersionLabel :
  1562. Literal('v1')]
  1563. def test_dupl_version(self):
  1564. """
  1565. Make sure that two POSTs with the same slug result in two different
  1566. versions.
  1567. """
  1568. path = '/ldp/test_duplicate_slug'
  1569. self.client.put(path, content_type='text/turtle')
  1570. v1_rsp = self.client.post(path + '/fcr:versions',
  1571. headers={'slug' : 'v1'})
  1572. v1_uri = v1_rsp.headers['Location']
  1573. dup_rsp = self.client.post(path + '/fcr:versions',
  1574. headers={'slug' : 'v1'})
  1575. dup_uri = dup_rsp.headers['Location']
  1576. assert v1_uri != dup_uri
  1577. def test_revert_version(self):
  1578. """
  1579. Take a version snapshot, update a resource, and then revert to the
  1580. previous vresion.
  1581. """
  1582. rsrc_path = '/ldp/test_revert_version'
  1583. payload1 = '<> <urn:demo:p1> <urn:demo:o1> .'
  1584. payload2 = '<> <urn:demo:p1> <urn:demo:o2> .'
  1585. self.client.put(rsrc_path, headers={
  1586. 'content-type': 'text/turtle'}, data=payload1)
  1587. self.client.post(
  1588. rsrc_path + '/fcr:versions', headers={'slug': 'v1'})
  1589. v1_rsp = self.client.get(rsrc_path)
  1590. v1_gr = Graph().parse(data=v1_rsp.data, format='turtle')
  1591. assert v1_gr[
  1592. URIRef(g.webroot + '/test_revert_version')
  1593. : URIRef('urn:demo:p1')
  1594. : URIRef('urn:demo:o1')
  1595. ]
  1596. self.client.put(rsrc_path, headers={
  1597. 'content-type': 'text/turtle'}, data=payload2)
  1598. v2_rsp = self.client.get(rsrc_path)
  1599. v2_gr = Graph().parse(data=v2_rsp.data, format='turtle')
  1600. assert v2_gr[
  1601. URIRef(g.webroot + '/test_revert_version')
  1602. : URIRef('urn:demo:p1')
  1603. : URIRef('urn:demo:o2')
  1604. ]
  1605. self.client.patch(rsrc_path + '/fcr:versions/v1')
  1606. revert_rsp = self.client.get(rsrc_path)
  1607. revert_gr = Graph().parse(data=revert_rsp.data, format='turtle')
  1608. assert revert_gr[
  1609. URIRef(g.webroot + '/test_revert_version')
  1610. : URIRef('urn:demo:p1')
  1611. : URIRef('urn:demo:o1')
  1612. ]
  1613. def test_resurrection(self):
  1614. """
  1615. Delete and then resurrect a resource.
  1616. Make sure that the resource is resurrected to the latest version.
  1617. """
  1618. path = '/ldp/test_lazarus'
  1619. self.client.put(path, content_type='text/turtle')
  1620. self.client.post(path + '/fcr:versions', headers={'slug': 'v1'})
  1621. self.client.put(
  1622. path, headers={'content-type': 'text/turtle'},
  1623. data=b'<> <urn:demo:p1> <urn:demo:o1> .')
  1624. self.client.post(path + '/fcr:versions', headers={'slug': 'v2'})
  1625. self.client.put(
  1626. path, headers={'content-type': 'text/turtle'},
  1627. data=b'<> <urn:demo:p1> <urn:demo:o2> .')
  1628. self.client.delete(path)
  1629. assert self.client.get(path).status_code == 410
  1630. self.client.post(path + '/fcr:tombstone')
  1631. laz_data = self.client.get(path).data
  1632. laz_gr = Graph().parse(data=laz_data, format='turtle')
  1633. assert laz_gr[
  1634. URIRef(g.webroot + '/test_lazarus')
  1635. : URIRef('urn:demo:p1')
  1636. : URIRef('urn:demo:o2')
  1637. ]