|
@@ -1,3 +1,15 @@
|
|
|
|
+/*
|
|
|
|
+ * Copyright 2002-2012 the original author or authors.
|
|
|
|
+ *
|
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
|
|
|
|
+ * the License. You may obtain a copy of the License at
|
|
|
|
+ *
|
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
+ *
|
|
|
|
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
|
|
|
|
+ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
+ * specific language governing permissions and limitations under the License.
|
|
|
|
+ */
|
|
package org.springframework.security.taglibs.authz;
|
|
package org.springframework.security.taglibs.authz;
|
|
|
|
|
|
import static org.junit.Assert.*;
|
|
import static org.junit.Assert.*;
|
|
@@ -20,6 +32,7 @@ import java.util.*;
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
* @author Luke Taylor
|
|
* @author Luke Taylor
|
|
|
|
+ * @author Rob Winch
|
|
* @since 3.0
|
|
* @since 3.0
|
|
*/
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
@SuppressWarnings("unchecked")
|
|
@@ -67,6 +80,26 @@ public class AccessControlListTagTests {
|
|
assertTrue((Boolean)pageContext.getAttribute("allowed"));
|
|
assertTrue((Boolean)pageContext.getAttribute("allowed"));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // SEC-2022
|
|
|
|
+ @Test
|
|
|
|
+ public void multiHasPermissionsAreSplit() throws Exception {
|
|
|
|
+ Object domainObject = new Object();
|
|
|
|
+ when(pe.hasPermission(bob, domainObject, "READ")).thenReturn(true);
|
|
|
|
+ when(pe.hasPermission(bob, domainObject, "WRITE")).thenReturn(true);
|
|
|
|
+
|
|
|
|
+ tag.setDomainObject(domainObject);
|
|
|
|
+ tag.setHasPermission("READ,WRITE");
|
|
|
|
+ tag.setVar("allowed");
|
|
|
|
+ assertSame(domainObject, tag.getDomainObject());
|
|
|
|
+ assertEquals("READ,WRITE", tag.getHasPermission());
|
|
|
|
+
|
|
|
|
+ assertEquals(Tag.EVAL_BODY_INCLUDE, tag.doStartTag());
|
|
|
|
+ assertTrue((Boolean)pageContext.getAttribute("allowed"));
|
|
|
|
+ verify(pe).hasPermission(bob, domainObject, "READ");
|
|
|
|
+ verify(pe).hasPermission(bob, domainObject, "WRITE");
|
|
|
|
+ verifyNoMoreInteractions(pe);
|
|
|
|
+ }
|
|
|
|
+
|
|
@Test
|
|
@Test
|
|
public void bodyIsSkippedIfAclDeniesAccess() throws Exception {
|
|
public void bodyIsSkippedIfAclDeniesAccess() throws Exception {
|
|
Object domainObject = new Object();
|
|
Object domainObject = new Object();
|