Package org.springframework.data.rest.webmvc.support

Source Code of org.springframework.data.rest.webmvc.support.BackendIdConverterHandlerMethodArgumentResolverIntegrationTests$SampleController

/*
* Copyright 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.data.rest.webmvc.support;

import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;

import java.io.Serializable;
import java.lang.reflect.Method;

import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.MethodParameter;
import org.springframework.data.rest.webmvc.AbstractControllerIntegrationTests;
import org.springframework.data.rest.webmvc.jpa.JpaRepositoryConfig;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.util.ReflectionUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.context.request.ServletWebRequest;

/**
* Integration tests for {@link BackendIdHandlerMethodArgumentResolver}.
*
* @author Oliver Gierke
*/
@ContextConfiguration(classes = JpaRepositoryConfig.class)
public class BackendIdConverterHandlerMethodArgumentResolverIntegrationTests extends AbstractControllerIntegrationTests {

  @Autowired BackendIdHandlerMethodArgumentResolver resolver;

  /**
   * @see DATAREST-267, DATAREST-268
   */
  @Test
  public void stripsUriTemplateVariablesFromUri() throws Exception {

    Method method = ReflectionUtils.findMethod(SampleController.class, "resolveId", Serializable.class);
    MethodParameter parameter = new MethodParameter(method, 0);
    NativeWebRequest request = new ServletWebRequest(new MockHttpServletRequest("GET", "/orders/5{?projection}"));

    Object resolvedId = resolver.resolveArgument(parameter, null, request, null);

    assertThat(resolvedId, is((Object) "5"));
  }

  /**
   * @see DATAREST-155
   */
  @Test
  public void translatesUriToBackendId() throws Exception {

    Method method = ReflectionUtils.findMethod(SampleController.class, "resolveId", Serializable.class);
    MethodParameter parameter = new MethodParameter(method, 0);
    NativeWebRequest request = new ServletWebRequest(new MockHttpServletRequest("GET", "/books/5-5-5-5-5"));

    Object resolvedId = resolver.resolveArgument(parameter, null, request, null);

    assertThat(resolvedId, is((Object) 5L));
  }

  static class SampleController {

    @RequestMapping("/{repository}/{id}")
    void resolveId(@BackendId Serializable backendId) {}
  }
}
TOP

Related Classes of org.springframework.data.rest.webmvc.support.BackendIdConverterHandlerMethodArgumentResolverIntegrationTests$SampleController

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.