Browse Source
This commit adds new MockHttpServletRequestBuilder constructors with an URI parameter in addition to the URL template + URL variables existing ones. It gives more control on how the URL is built, allowing for example to use URL variables containing '/' character with proper encoding. Issue: SPR-11441pull/496/head
Sebastien Deleuze
11 years ago
committed by
Rossen Stoyanchev
4 changed files with 243 additions and 1 deletions
@ -0,0 +1,131 @@
@@ -0,0 +1,131 @@
|
||||
/* |
||||
* Copyright 2002-2014 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.test.web.servlet; |
||||
|
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.springframework.beans.BeansException; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.beans.factory.config.BeanPostProcessor; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.core.PriorityOrdered; |
||||
import org.springframework.stereotype.Component; |
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.test.context.ContextConfiguration; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
import org.springframework.test.context.web.WebAppConfiguration; |
||||
import org.springframework.ui.Model; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestMethod; |
||||
|
||||
import org.springframework.web.context.WebApplicationContext; |
||||
import org.springframework.web.servlet.config.annotation.EnableWebMvc; |
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; |
||||
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; |
||||
import org.springframework.web.util.UriComponentsBuilder; |
||||
|
||||
import java.net.URI; |
||||
|
||||
import static org.hamcrest.core.Is.is; |
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; |
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.model; |
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; |
||||
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup; |
||||
|
||||
/** |
||||
* Tests for SPR-11441 (MockMvc needs to accept prepared URI with encoded URI path variables). |
||||
* |
||||
* @author Sebastien Deleuze |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@WebAppConfiguration |
||||
@ContextConfiguration |
||||
public class Spr11441Tests { |
||||
|
||||
@Autowired |
||||
private WebApplicationContext wac; |
||||
|
||||
private MockMvc mockMvc; |
||||
|
||||
@Before |
||||
public void setup() { |
||||
this.mockMvc = webAppContextSetup(this.wac).build(); |
||||
} |
||||
|
||||
@Test |
||||
public void test() throws Exception { |
||||
String id = "a/b"; |
||||
URI url = UriComponentsBuilder.fromUriString("/circuit").pathSegment(id).build().encode().toUri(); |
||||
ResultActions result = mockMvc.perform(get(url)); |
||||
result.andExpect(status().isOk()).andExpect(model().attribute("receivedId", is(id))); |
||||
} |
||||
|
||||
|
||||
@Configuration |
||||
@EnableWebMvc |
||||
static class WebConfig extends WebMvcConfigurerAdapter { |
||||
|
||||
@Bean |
||||
public MyController myController() { |
||||
return new MyController(); |
||||
} |
||||
|
||||
@Bean |
||||
public HandlerMappingConfigurer myHandlerMappingConfigurer() { |
||||
return new HandlerMappingConfigurer(); |
||||
} |
||||
} |
||||
|
||||
@Controller |
||||
private static class MyController { |
||||
|
||||
@RequestMapping(value = "/circuit/{id}", method = RequestMethod.GET) |
||||
public String getCircuit(@PathVariable String id, Model model) { |
||||
model.addAttribute("receivedId", id); |
||||
return "result"; |
||||
} |
||||
} |
||||
|
||||
@Component |
||||
private static class HandlerMappingConfigurer implements BeanPostProcessor, PriorityOrdered { |
||||
|
||||
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { |
||||
if (bean instanceof RequestMappingHandlerMapping) { |
||||
RequestMappingHandlerMapping requestMappingHandlerMapping = (RequestMappingHandlerMapping) bean; |
||||
|
||||
// URL decode after request mapping, not before.
|
||||
requestMappingHandlerMapping.setUrlDecode(false); |
||||
|
||||
} |
||||
|
||||
return bean; |
||||
} |
||||
|
||||
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { |
||||
return bean; |
||||
} |
||||
|
||||
public int getOrder() { |
||||
return PriorityOrdered.HIGHEST_PRECEDENCE; |
||||
} |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue