-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve CsrfBeanDefinitionParser xml parsing
1. CsrfBeanDefinitionParser registers requestDataValueProcessor if not already registered 2. Created Tests in CsrfBeanDefinitionParserTests Fixes: gh-6423
- Loading branch information
1 parent
be7d2a3
commit 0aaaaf9
Showing
3 changed files
with
80 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...src/test/java/org/springframework/security/config/http/CsrfBeanDefinitionParserTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright 2002-2018 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.config.http; | ||
|
||
import org.junit.Test; | ||
|
||
import org.springframework.context.support.ClassPathXmlApplicationContext; | ||
|
||
/** | ||
* @author Ankur Pathak | ||
*/ | ||
public class CsrfBeanDefinitionParserTests { | ||
private static final String CONFIG_LOCATION_PREFIX = | ||
"classpath:org/springframework/security/config/http/CsrfBeanDefinitionParserTests"; | ||
|
||
@Test | ||
public void registerDataValueProcessorOnlyIfNotRegistered() throws Exception { | ||
try (ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext()) { | ||
context.setAllowBeanDefinitionOverriding(false); | ||
context.setConfigLocation(this.xml("RegisterDataValueProcessorOnyIfNotRegistered")); | ||
context.refresh(); | ||
} | ||
} | ||
|
||
private String xml(String configName) { | ||
return CONFIG_LOCATION_PREFIX + "-" + configName + ".xml"; | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...onfig/http/CsrfBeanDefinitionParserTests-RegisterDataValueProcessorOnyIfNotRegistered.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:context="http://www.springframework.org/schema/context" | ||
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" | ||
xmlns:security="http://www.springframework.org/schema/security" | ||
xsi:schemaLocation=" | ||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | ||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd | ||
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd | ||
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd | ||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd | ||
"> | ||
|
||
<security:http pattern="/foo/**"> | ||
<security:intercept-url pattern="/**" access="hasRole('FOO')" /> | ||
<security:http-basic/> | ||
</security:http> | ||
|
||
<security:http pattern="/bar/**"> | ||
<security:intercept-url pattern="/**" access="hasRole('BAR')" /> | ||
<security:http-basic/> | ||
</security:http> | ||
|
||
<security:authentication-manager > | ||
<security:authentication-provider> | ||
<security:user-service> | ||
<security:user name="gnu" password="{noop}gnat" authorities="ROLE_FOO" /> | ||
</security:user-service> | ||
</security:authentication-provider> | ||
</security:authentication-manager> | ||
|
||
</beans> |