|
@@ -1,22 +1,67 @@
|
|
|
|
+/*
|
|
|
|
+ * Copyright 2002-2013 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.web.access.expression;
|
|
package org.springframework.security.web.access.expression;
|
|
|
|
|
|
|
|
+import static org.fest.assertions.Assertions.assertThat;
|
|
import static org.junit.Assert.assertTrue;
|
|
import static org.junit.Assert.assertTrue;
|
|
import static org.mockito.Mockito.mock;
|
|
import static org.mockito.Mockito.mock;
|
|
|
|
+import static org.mockito.Mockito.verify;
|
|
|
|
|
|
|
|
+import org.junit.After;
|
|
|
|
+import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.Test;
|
|
|
|
+import org.junit.runner.RunWith;
|
|
|
|
+import org.mockito.Mock;
|
|
|
|
+import org.mockito.runners.MockitoJUnitRunner;
|
|
import org.springframework.beans.factory.support.RootBeanDefinition;
|
|
import org.springframework.beans.factory.support.RootBeanDefinition;
|
|
import org.springframework.context.support.StaticApplicationContext;
|
|
import org.springframework.context.support.StaticApplicationContext;
|
|
import org.springframework.expression.EvaluationContext;
|
|
import org.springframework.expression.EvaluationContext;
|
|
|
|
+import org.springframework.expression.Expression;
|
|
import org.springframework.expression.ExpressionParser;
|
|
import org.springframework.expression.ExpressionParser;
|
|
import org.springframework.security.access.SecurityConfig;
|
|
import org.springframework.security.access.SecurityConfig;
|
|
|
|
+import org.springframework.security.authentication.AuthenticationTrustResolver;
|
|
import org.springframework.security.core.Authentication;
|
|
import org.springframework.security.core.Authentication;
|
|
|
|
+import org.springframework.security.core.context.SecurityContextHolder;
|
|
import org.springframework.security.web.FilterInvocation;
|
|
import org.springframework.security.web.FilterInvocation;
|
|
|
|
|
|
|
|
+@RunWith(MockitoJUnitRunner.class)
|
|
public class DefaultWebSecurityExpressionHandlerTests {
|
|
public class DefaultWebSecurityExpressionHandlerTests {
|
|
|
|
+ @Mock
|
|
|
|
+ private AuthenticationTrustResolver trustResolver;
|
|
|
|
+
|
|
|
|
+ @Mock
|
|
|
|
+ private Authentication authentication;
|
|
|
|
+
|
|
|
|
+ @Mock
|
|
|
|
+ private FilterInvocation invocation;
|
|
|
|
+
|
|
|
|
+ private DefaultWebSecurityExpressionHandler handler;
|
|
|
|
+
|
|
|
|
+ @Before
|
|
|
|
+ public void setup() {
|
|
|
|
+ handler = new DefaultWebSecurityExpressionHandler();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @After
|
|
|
|
+ public void cleanup() {
|
|
|
|
+ SecurityContextHolder.clearContext();
|
|
|
|
+ }
|
|
|
|
|
|
@Test
|
|
@Test
|
|
public void expressionPropertiesAreResolvedAgainsAppContextBeans() throws Exception {
|
|
public void expressionPropertiesAreResolvedAgainsAppContextBeans() throws Exception {
|
|
- DefaultWebSecurityExpressionHandler handler = new DefaultWebSecurityExpressionHandler();
|
|
|
|
StaticApplicationContext appContext = new StaticApplicationContext();
|
|
StaticApplicationContext appContext = new StaticApplicationContext();
|
|
RootBeanDefinition bean = new RootBeanDefinition(SecurityConfig.class);
|
|
RootBeanDefinition bean = new RootBeanDefinition(SecurityConfig.class);
|
|
bean.getConstructorArgumentValues().addGenericArgumentValue("ROLE_A");
|
|
bean.getConstructorArgumentValues().addGenericArgumentValue("ROLE_A");
|
|
@@ -29,4 +74,20 @@ public class DefaultWebSecurityExpressionHandlerTests {
|
|
assertTrue(parser.parseExpression("@role.attribute == 'ROLE_A'").getValue(ctx, Boolean.class));
|
|
assertTrue(parser.parseExpression("@role.attribute == 'ROLE_A'").getValue(ctx, Boolean.class));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ @Test(expected = IllegalArgumentException.class)
|
|
|
|
+ public void setTrustResolverNull() {
|
|
|
|
+ handler.setTrustResolver(null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Test
|
|
|
|
+ public void createEvaluationContextCustomTrustResolver() {
|
|
|
|
+ handler.setTrustResolver(trustResolver);
|
|
|
|
+
|
|
|
|
+ Expression expression = handler.getExpressionParser().parseExpression("anonymous");
|
|
|
|
+ EvaluationContext context = handler.createEvaluationContext(authentication, invocation);
|
|
|
|
+ assertThat(expression.getValue(context, Boolean.class)).isFalse();
|
|
|
|
+
|
|
|
|
+ verify(trustResolver).isAnonymous(authentication);
|
|
|
|
+ }
|
|
}
|
|
}
|