assertFalse(authMan.isRoleAuthorized("role1", "s/t/u/v/w", "read"));
assertFalse(authMan.isUserAuthorized("dimuthu","s/t/u/v/w", "read"));
assertTrue(authMan.isRoleAuthorized("role1", "/s/t", "read"));
assertTrue(authMan.isUserAuthorized("dimuthu","/s/t", "read"));
authMan.authorizeRole("role1", "/s/t/u/v/w/x", "read");
assertTrue(authMan.isRoleAuthorized("role1", "/s/t/u/v/w/x/y", "read"));
assertTrue(authMan.isRoleAuthorized("role1", "/s/t", "read"));
assertFalse(authMan.isRoleAuthorized("role1", "/s/t/u/v/w", "read"));