Browse Source
Previously flash attributes were automatically merged into the model of annotated controllers only. This change extends the same benefit to ParameterizableView- and UrlFilenameViewController, both of which merely select a view without user controller logic and (the views) would otherwise not have access to the flash attributes.pull/19/head
4 changed files with 91 additions and 3 deletions
@ -0,0 +1,71 @@
@@ -0,0 +1,71 @@
|
||||
/* |
||||
* 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.web.servlet.mvc; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
import org.springframework.mock.web.MockHttpServletRequest; |
||||
import org.springframework.mock.web.MockHttpServletResponse; |
||||
import org.springframework.ui.ModelMap; |
||||
import org.springframework.web.servlet.FlashMapManager; |
||||
import org.springframework.web.servlet.ModelAndView; |
||||
|
||||
/** |
||||
* Test fixture with a ParameterizableViewController. |
||||
* |
||||
* @author Rossen Stoyanchev |
||||
* @since 3.1.1 |
||||
*/ |
||||
public class ParameterizableViewControllerTests { |
||||
|
||||
private ParameterizableViewController controller; |
||||
|
||||
private MockHttpServletRequest request; |
||||
|
||||
@Before |
||||
public void setup() { |
||||
this.controller = new ParameterizableViewController(); |
||||
this.request = new MockHttpServletRequest("GET", "/"); |
||||
} |
||||
|
||||
@Test |
||||
public void handleRequestWithViewName() throws Exception { |
||||
String viewName = "testView"; |
||||
this.controller.setViewName(viewName); |
||||
ModelAndView mav = this.controller.handleRequest(this.request, new MockHttpServletResponse()); |
||||
assertEquals(viewName, mav.getViewName()); |
||||
assertTrue(mav.getModel().isEmpty()); |
||||
} |
||||
|
||||
@Test |
||||
public void handleRequestWithoutViewName() throws Exception { |
||||
ModelAndView mav = this.controller.handleRequest(this.request, new MockHttpServletResponse()); |
||||
assertNull(mav.getViewName()); |
||||
assertTrue(mav.getModel().isEmpty()); |
||||
} |
||||
|
||||
@Test |
||||
public void handleRequestWithFlashAttributes() throws Exception { |
||||
this.request.setAttribute(FlashMapManager.INPUT_FLASH_MAP_ATTRIBUTE, new ModelMap("name", "value")); |
||||
ModelAndView mav = this.controller.handleRequest(this.request, new MockHttpServletResponse()); |
||||
assertEquals(1, mav.getModel().size()); |
||||
assertEquals("value", mav.getModel().get("name")); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue