* Users should not be able to see workspaces to which they don't at least have read access.
* User 'noaccess' has no access to the default workspace.
* @throws Exception
*/
public void testShouldNotSeeWorkspacesWithoutReadPermission() throws Exception {
Credentials creds = new SimpleCredentials("noaccess", "noaccess".toCharArray());
try {
session = helper.getRepository().login(creds);
fail("User 'noaccess' with no access to the default workspace should not be able to log into that workspace");
}