Package gwtappcontainer.server.apps.security

Examples of gwtappcontainer.server.apps.security.SecurityAPI


  }
 
  @SuppressWarnings("unchecked")
  @Test
  public void deletePrivilegeTest() {
    SecurityAPI api = new SecurityAPI();
   
    APIResponse response = api.addPrivilege("test",
        helper.loginWithPrivilege(Privileges.EDIT_PRIVILEGE));
   
    //should have the right privilege
    response = api.deletePrivilege("test", null);
    assertTrue(response.statusCode == Status.ERROR_LOGIN_REQUIRED);
   
    response = api.deletePrivilege("test", helper.loginAsInvalidUser());
    assertTrue(response.statusCode == Status.ERROR_INVALID_USER);
   
    response = api.deletePrivilege("test", helper.loginAsValidUser());
    assertTrue(response.statusCode == Status.ERROR_INSUFFICIENT_PERMISSION);
   
    response = api.deletePrivilege("test",
        helper.loginWithPrivilege(Privileges.EDIT_PRIVILEGE));
    assertTrue(response.statusCode == Status.SUCCESS);
   
    response = api.getAllPrivileges();
    TreeSet<String> all = (TreeSet<String>) response.object;
    assertTrue(! all.contains("TEST"));
   
    //deleting the same privilege again should give correct error
    response = api.deletePrivilege("test",
        helper.loginWithPrivilege(Privileges.EDIT_PRIVILEGE))
    assertTrue(response.statusCode == Status.ERROR_RESOURCE_DOES_NOT_EXIST);
       
    //admin can delete as well
    response = api.addPrivilege("test",
        helper.loginWithPrivilege(Privileges.EDIT_PRIVILEGE));
    assertTrue(response.statusCode == Status.SUCCESS);
   
    response = api.deletePrivilege("test", helper.loginAsSuperUser());
    assertTrue(response.statusCode == Status.SUCCESS);
    all = (TreeSet<String>) api.getAllPrivileges().object;
    assertTrue(! all.contains("TEST"))
  }
View Full Code Here


 
  @SuppressWarnings("unchecked")
  @Test
  public void getAllPrivilegesTest() {
    SecurityAPI api = new SecurityAPI();
    TreeSet<String> allPrivileges = (TreeSet<String>) api.getAllPrivileges().object;
   
    assertTrue(allPrivileges.size() == 0);
   
    @SuppressWarnings("unused")
    APIResponse response = api.addPrivilege("abc", helper.loginAsSuperUser());         
    response = api.addPrivilege("xyz", helper.loginAsSuperUser());   
    response = api.addPrivilege("ishaprivilege", helper.loginAsSuperUser());   
   
    allPrivileges = (TreeSet<String>) api.getAllPrivileges().object;       
       
    //ensure sorting
    assertTrue(allPrivileges.size() == 3); //EDIT_PRIVILEGE will also be added
   
    ArrayList<String> arrayList = new ArrayList<String>();
View Full Code Here

TOP

Related Classes of gwtappcontainer.server.apps.security.SecurityAPI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.