use of org.xmldb.api.base.Collection in project exist by eXist-db.
the class XMLDBSecurityTest method groupRemoveCollection_canWriteParent.
@Test
public void groupRemoveCollection_canWriteParent() throws XMLDBException {
final Collection root = DatabaseManager.getCollection(getBaseUri() + "/db", "admin", "");
final CollectionManagementService cms = (CollectionManagementService) root.getService("CollectionManagementService", "1.0");
cms.removeCollection("securityTest1");
}
use of org.xmldb.api.base.Collection in project exist by eXist-db.
the class XMLDBSecurityTest method cannotCreateBinaryResourceWithoutWritePermissionOnParentCollection.
@Test(expected = XMLDBException.class)
public void cannotCreateBinaryResourceWithoutWritePermissionOnParentCollection() throws XMLDBException {
Collection test = DatabaseManager.getCollection(getBaseUri() + "/db/securityTest1", "test1", "test1");
final UserManagementService ums = (UserManagementService) test.getService("UserManagementService", "1.0");
ums.chmod("--x------");
test.close();
test = DatabaseManager.getCollection(getBaseUri() + "/db/securityTest1", "test1", "test1");
final Resource resource = test.createResource("other.bin", BinaryResource.RESOURCE_TYPE);
resource.setContent("binary".getBytes());
test.storeResource(resource);
}
use of org.xmldb.api.base.Collection in project exist by eXist-db.
the class XMLDBSecurityTest method ownerChownUidResource.
/**
* Owner can NOT change the owner uid of a resource
*
* As the user 'test1' attempt to change the
* ownership uid of /db/securityTest1/test.xml
* to 'test2' user
*/
@Test(expected = XMLDBException.class)
public void ownerChownUidResource() throws XMLDBException {
final Collection test = DatabaseManager.getCollection(getBaseUri() + "/db/securityTest1", "test1", "test1");
final Resource resource = test.getResource("test.xml");
final UserManagementService ums = (UserManagementService) test.getService("UserManagementService", "1.0");
// attempt to change uid ownership of /db/securityTest1/test.xml to the test2 user
final Account test2 = ums.getAccount("test2");
ums.chown(resource, test2);
}
use of org.xmldb.api.base.Collection in project exist by eXist-db.
the class XMLDBSecurityTest method groupCreateResource.
@Test
public void groupCreateResource() throws XMLDBException {
final Collection test = DatabaseManager.getCollection(getBaseUri() + "/db/securityTest1", "test2", "test2");
Resource resource = test.createResource("createdByTest2.xml", XMLResource.RESOURCE_TYPE);
resource.setContent("<testMe/>");
test.storeResource(resource);
resource = test.getResource("createdByTest2.xml");
assertNotNull(resource);
assertEquals("<testMe/>", resource.getContent().toString());
}
use of org.xmldb.api.base.Collection in project exist by eXist-db.
the class XMLDBSecurityTest method groupNonMemberChownGidResource.
/**
* Group Member can NOT change owner gid of a resource
* to a group of which we are NOT a member
*
* As the user 'test2' (who is in the group users)
* attempt to change ownership gid of /db/securityTest1/test.xml
* to the group 'guest' (of which they are NOT a member)
*/
@Test(expected = XMLDBException.class)
public void groupNonMemberChownGidResource() throws XMLDBException {
final Collection test = DatabaseManager.getCollection(getBaseUri() + "/db/securityTest1", "test2", "test2");
final Resource resource = test.getResource("test.xml");
final UserManagementService ums = (UserManagementService) test.getService("UserManagementService", "1.0");
// attempt to take gid ownership of /db/securityTest1/test.xml
ums.chgrp(resource, "guest");
}
Aggregations