Example #1
0
 @Test
 public void should_allow_read_permission_for_authenticated_users_if_enabled() throws Exception {
   DotCiACL acl = new DotCiACL(Mockito.mock(OrganizationContainer.class), "suryagaddipati", true);
   Assert.assertFalse(
       acl.hasPermission(getGithubAuthentication("chairman-meow"), Permission.DELETE));
   Assert.assertTrue(acl.hasPermission(getGithubAuthentication("chairman-meow"), Jenkins.READ));
 }
Example #2
0
 @Test
 public void should_allow_read_permission_for_everyone_on_non_dotci() throws Exception {
   DotCiACL acl = new DotCiACL("suryagaddipati", false);
   Assert.assertFalse(
       acl.hasPermission(getGithubAuthentication("chairman-meow"), Permission.DELETE));
   Assert.assertTrue(acl.hasPermission(getGithubAuthentication("chairman-meow"), Jenkins.READ));
 }
Example #3
0
 @Test
 public void should_allow_permission_on_github_org_only_if_member() throws Exception {
   OrganizationContainer organizationContainer = Mockito.mock(OrganizationContainer.class);
   Mockito.when(organizationContainer.getName()).thenReturn("chairman-meow");
   DotCiACL acl = new DotCiACL(organizationContainer, "suryagaddipati", false);
   GithubAuthenticationToken githubAuthentication = getGithubAuthentication("chairman-meow");
   Assert.assertTrue(acl.hasPermission(githubAuthentication, Jenkins.READ));
 }
Example #4
0
 @Test
 public void should_allow_all_permission_on_github_org_only_if_member() throws Exception {
   DynamicProject project = Mockito.mock(DynamicProject.class);
   Mockito.when(project.getGithubRepoUrl()).thenReturn("https://github.com/groupon/DotCi");
   DotCiACL acl = new DotCiACL(project, "suryagaddipati", false);
   GithubAuthenticationToken githubAuthentication = getGithubAuthentication("chairman-meow");
   Mockito.when(githubAuthentication.hasRepositoryPermission("groupon/DotCi")).thenReturn(true);
   Assert.assertTrue(acl.hasPermission(githubAuthentication, Permission.DELETE));
 }
Example #5
0
 @Test
 public void should_allow_admins_to_do_anything() throws Exception {
   DotCiACL acl = new DotCiACL("suryagaddipati", false);
   Assert.assertTrue(
       acl.hasPermission(getGithubAuthentication("suryagaddipati"), Permission.DELETE));
 }
Example #6
0
 @Test
 public void should_allow_system_user_to_do_anything() throws Exception {
   DotCiACL acl = new DotCiACL("suryagaddipati", false);
   Assert.assertTrue(acl.hasPermission(ACL.SYSTEM, Permission.DELETE));
 }