|
@@ -19,9 +19,9 @@ import static org.fest.assertions.Assertions.assertThat;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
+import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.Test;
|
|
-import org.junit.runner.RunWith;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.http.HttpMethod;
|
|
import org.springframework.http.HttpMethod;
|
|
@@ -33,23 +33,17 @@ import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
import org.springframework.security.web.FilterChainProxy;
|
|
import org.springframework.security.web.FilterChainProxy;
|
|
-import org.springframework.test.context.ContextConfiguration;
|
|
|
|
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
-import org.springframework.test.context.web.WebAppConfiguration;
|
|
|
|
|
|
+import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author Rob Winch
|
|
* @author Rob Winch
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
-@RunWith(SpringJUnit4ClassRunner.class)
|
|
|
|
-@ContextConfiguration
|
|
|
|
-@WebAppConfiguration
|
|
|
|
public class AuthorizeRequestsTests {
|
|
public class AuthorizeRequestsTests {
|
|
- @Autowired
|
|
|
|
|
|
+ AnnotationConfigWebApplicationContext context;
|
|
|
|
+
|
|
MockHttpServletRequest request;
|
|
MockHttpServletRequest request;
|
|
- @Autowired
|
|
|
|
MockHttpServletResponse response;
|
|
MockHttpServletResponse response;
|
|
-
|
|
|
|
MockFilterChain chain;
|
|
MockFilterChain chain;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
@@ -57,12 +51,22 @@ public class AuthorizeRequestsTests {
|
|
|
|
|
|
@Before
|
|
@Before
|
|
public void setup() {
|
|
public void setup() {
|
|
|
|
+ request = new MockHttpServletRequest();
|
|
|
|
+ response = new MockHttpServletResponse();
|
|
chain = new MockFilterChain();
|
|
chain = new MockFilterChain();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @After
|
|
|
|
+ public void cleanup() {
|
|
|
|
+ if(context != null) {
|
|
|
|
+ context.close();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
// SEC-3135
|
|
// SEC-3135
|
|
@Test
|
|
@Test
|
|
public void antMatchersMethodAndNoPatterns() throws Exception {
|
|
public void antMatchersMethodAndNoPatterns() throws Exception {
|
|
|
|
+ loadConfig(AntMatchersNoPatternsConfig.class);
|
|
request.setMethod("POST");
|
|
request.setMethod("POST");
|
|
|
|
|
|
springSecurityFilterChain.doFilter(request, response, chain);
|
|
springSecurityFilterChain.doFilter(request, response, chain);
|
|
@@ -72,7 +76,7 @@ public class AuthorizeRequestsTests {
|
|
|
|
|
|
@EnableWebSecurity
|
|
@EnableWebSecurity
|
|
@Configuration
|
|
@Configuration
|
|
- static class Config extends WebSecurityConfigurerAdapter {
|
|
|
|
|
|
+ static class AntMatchersNoPatternsConfig extends WebSecurityConfigurerAdapter {
|
|
protected void configure(HttpSecurity http) throws Exception {
|
|
protected void configure(HttpSecurity http) throws Exception {
|
|
http
|
|
http
|
|
.authorizeRequests()
|
|
.authorizeRequests()
|
|
@@ -85,4 +89,12 @@ public class AuthorizeRequestsTests {
|
|
.inMemoryAuthentication();
|
|
.inMemoryAuthentication();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+
|
|
|
|
+ public void loadConfig(Class<?>... configs) {
|
|
|
|
+ context = new AnnotationConfigWebApplicationContext();
|
|
|
|
+ context.register(configs);
|
|
|
|
+ context.refresh();
|
|
|
|
+
|
|
|
|
+ context.getAutowireCapableBeanFactory().autowireBean(this);
|
|
|
|
+ }
|
|
|
|
+}
|