Package org.springframework.web.servlet.mvc.method.annotation

Source Code of org.springframework.web.servlet.mvc.method.annotation.PathVariableMethodArgumentResolverTests

/*
* 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.method.annotation;

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import org.junit.Before;
import org.junit.Test;

import org.springframework.core.MethodParameter;
import org.springframework.mock.web.test.MockHttpServletRequest;
import org.springframework.mock.web.test.MockHttpServletResponse;
import org.springframework.web.bind.ServletRequestBindingException;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.context.request.ServletWebRequest;
import org.springframework.web.method.support.ModelAndViewContainer;
import org.springframework.web.servlet.HandlerMapping;
import org.springframework.web.servlet.View;

import static org.junit.Assert.*;

/**
* Test fixture with {@link PathVariableMethodArgumentResolver}.
*
* @author Rossen Stoyanchev
*/
public class PathVariableMethodArgumentResolverTests {

  private PathVariableMethodArgumentResolver resolver;

  private MethodParameter paramNamedString;

  private MethodParameter paramString;

  private ModelAndViewContainer mavContainer;

  private ServletWebRequest webRequest;

  private MockHttpServletRequest request;

  @Before
  public void setUp() throws Exception {
    resolver = new PathVariableMethodArgumentResolver();

    Method method = getClass().getMethod("handle", String.class, String.class);
    paramNamedString = new MethodParameter(method, 0);
    paramString = new MethodParameter(method, 1);

    mavContainer = new ModelAndViewContainer();
    request = new MockHttpServletRequest();
    webRequest = new ServletWebRequest(request, new MockHttpServletResponse());
  }

  @Test
  public void supportsParameter() {
    assertTrue("Parameter with @PathVariable annotation", resolver.supportsParameter(paramNamedString));
    assertFalse("Parameter without @PathVariable annotation", resolver.supportsParameter(paramString));
  }

  @Test
  public void resolveArgument() throws Exception {
    Map<String, String> uriTemplateVars = new HashMap<String, String>();
    uriTemplateVars.put("name", "value");
    request.setAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE, uriTemplateVars);

    String result = (String) resolver.resolveArgument(paramNamedString, mavContainer, webRequest, null);
    assertEquals("PathVariable not resolved correctly", "value", result);

    @SuppressWarnings("unchecked")
    Map<String, Object> pathVars = (Map<String, Object>) request.getAttribute(View.PATH_VARIABLES);
    assertNotNull(pathVars);
    assertEquals(1, pathVars.size());
    assertEquals("value", pathVars.get("name"));
  }

  @SuppressWarnings("unchecked")
  @Test
  public void resolveArgumentWithExistingPathVars() throws Exception {
    Map<String, String> uriTemplateVars = new HashMap<String, String>();
    uriTemplateVars.put("name", "value");
    request.setAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE, uriTemplateVars);

    Map<String, Object> pathVars = new HashMap<String, Object>();
    uriTemplateVars.put("oldName", "oldValue");
    request.setAttribute(View.PATH_VARIABLES, uriTemplateVars);

    String result = (String) resolver.resolveArgument(paramNamedString, mavContainer, webRequest, null);
    assertEquals("PathVariable not resolved correctly", "value", result);

    pathVars = (Map<String, Object>) request.getAttribute(View.PATH_VARIABLES);
    assertNotNull(pathVars);
    assertEquals(2, pathVars.size());
    assertEquals("value", pathVars.get("name"));
    assertEquals("oldValue", pathVars.get("oldName"));
  }

  @Test(expected = ServletRequestBindingException.class)
  public void handleMissingValue() throws Exception {
    resolver.resolveArgument(paramNamedString, mavContainer, webRequest, null);
    fail("Unresolved path variable should lead to exception.");
  }

  public void handle(@PathVariable(value = "name") String param1, String param2) {
  }

}
TOP

Related Classes of org.springframework.web.servlet.mvc.method.annotation.PathVariableMethodArgumentResolverTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.