test_admin.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import pytest
  2. from io import BytesIO
  3. from uuid import uuid4
  4. from lakesuperior.api import resource as rsrc_api
  5. @pytest.mark.usefixtures('client_class')
  6. @pytest.mark.usefixtures('db')
  7. class TestAdminApi:
  8. """
  9. Test admin endpoint.
  10. """
  11. def test_fixity_check_ok(self):
  12. """
  13. Verify that fixity check passes for a non-corrupted resource.
  14. """
  15. uid = uuid4()
  16. content = uuid4().bytes
  17. path = f'/ldp/{uid}'
  18. fix_path = f'/admin/{uid}/fixity'
  19. self.client.put(
  20. path, data=content, headers={'content-type': 'text/plain'})
  21. rsp = self.client.get(fix_path)
  22. assert rsp.status_code == 200
  23. assert rsp.json['uid'] == f'/{uid}'
  24. assert rsp.json['pass'] == True
  25. def test_fixity_check_corrupt(self):
  26. """
  27. Verify that fixity check fails for a corrupted resource.
  28. """
  29. uid = uuid4()
  30. content = uuid4().bytes
  31. path = f'/ldp/{uid}'
  32. fix_path = f'/admin/{uid}/fixity'
  33. self.client.put(
  34. path, data=content, headers={'content-type': 'text/plain'})
  35. rsrc = rsrc_api.get(f'/{uid}')
  36. with open(rsrc.local_path, 'wb') as fh:
  37. fh.write(uuid4().bytes)
  38. rsp = self.client.get(fix_path)
  39. assert rsp.status_code == 200
  40. assert rsp.json['uid'] == f'/{uid}'
  41. assert rsp.json['pass'] == False
  42. def test_fixity_check_missing(self):
  43. """
  44. Verify that fixity check is not performed on a missing resource.
  45. """
  46. uid = uuid4()
  47. content = uuid4().bytes
  48. path = f'/ldp/{uid}'
  49. fix_path = f'/admin/{uid}/fixity'
  50. assert self.client.get(fix_path).status_code == 404
  51. self.client.put(
  52. path, data=content, headers={'content-type': 'text/plain'})
  53. self.client.delete(path)
  54. assert self.client.get(fix_path).status_code == 410