Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlatformTested bySuccess? RC-2Notes
MacDanny Bernstein (tick)









Code Block
curl -i -u testuser:testpass -X PUT http://localhost:8080/rest/test
# expect 403
curl -i -u fedoraAdmin:fedoraAdmin -X PUT http://localhost:8080/rest/test
# expect 201
curl -i -u testuser:testpass -X GET http://localhost:8080/rest/test
# expect 200
curl -i -u testuser:testpass -X PUT http://localhost:8080/rest/test/child
# expect 403


Simple read-only

  1. Create resource to protect
  2. Create ACL on protected resource (read-only)
  3. Create child of protected resource
  4. Verify expected access privileges on target and child

...