Browse Source

Tidying.

3.0.x
Luke Taylor 17 years ago
parent
commit
1ca2e6e6fc
  1. 3
      core/src/test/java/org/springframework/security/access/vote/RoleVoterTests.java

3
core/src/test/java/org/springframework/security/access/vote/RoleVoterTests.java

@ -14,13 +14,12 @@ import org.springframework.security.core.Authentication;
* @version $Id$ * @version $Id$
*/ */
public class RoleVoterTests { public class RoleVoterTests {
// Vote on attribute list that has two attributes A and C (i.e. one matching)
@Test @Test
public void oneMatchingAttributeGrantsAccess() { public void oneMatchingAttributeGrantsAccess() {
RoleVoter voter = new RoleVoter(); RoleVoter voter = new RoleVoter();
voter.setRolePrefix(""); voter.setRolePrefix("");
Authentication userAB = new TestingAuthenticationToken("user","pass", "A", "B"); Authentication userAB = new TestingAuthenticationToken("user","pass", "A", "B");
// Vote on attribute list that has two attributes A and C (i.e. only one matching)
assertEquals(AccessDecisionVoter.ACCESS_GRANTED, voter.vote(userAB, this, SecurityConfig.createList("A","C"))); assertEquals(AccessDecisionVoter.ACCESS_GRANTED, voter.vote(userAB, this, SecurityConfig.createList("A","C")));
} }
} }

Loading…
Cancel
Save