Package org.springframework.data.rest.core.projection

Source Code of org.springframework.data.rest.core.projection.ProjectingMethodInterceptorUnitTests$Helper

/*
* 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.core.projection;

import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;

/**
* Unit tests for {@link ProjectingMethodInterceptor}.
*
* @author Oliver Gierke
*/
@RunWith(MockitoJUnitRunner.class)
public class ProjectingMethodInterceptorUnitTests {

  @Mock MethodInterceptor interceptor;
  @Mock MethodInvocation invocation;
  @Mock ProjectionFactory factory;

  /**
   * @see DATAREST-221
   */
  @Test
  public void wrapsDelegateResultInProxyIfTypesDontMatch() throws Throwable {

    MethodInterceptor methodInterceptor = new ProjectingMethodInterceptor(new ProxyProjectionFactory(null), interceptor);

    when(invocation.getMethod()).thenReturn(Helper.class.getMethod("getHelper"));
    when(interceptor.invoke(invocation)).thenReturn("Foo");

    assertThat(methodInterceptor.invoke(invocation), is(instanceOf(Helper.class)));
  }

  /**
   * @see DATAREST-221
   */
  @Test
  public void retunsDelegateResultAsIsIfTypesMatch() throws Throwable {

    MethodInterceptor methodInterceptor = new ProjectingMethodInterceptor(factory, interceptor);

    when(invocation.getMethod()).thenReturn(Helper.class.getMethod("getString"));
    when(interceptor.invoke(invocation)).thenReturn("Foo");

    assertThat(methodInterceptor.invoke(invocation), is((Object) "Foo"));
  }

  /**
   * @see DATAREST-221
   */
  @Test
  public void returnsNullAsIs() throws Throwable {

    MethodInterceptor methodInterceptor = new ProjectingMethodInterceptor(factory, interceptor);

    when(interceptor.invoke(invocation)).thenReturn(null);

    assertThat(methodInterceptor.invoke(invocation), is(nullValue()));
  }

  /**
   * @see DATAREST-221
   */
  @Test
  public void considersPrimitivesAsWrappers() throws Throwable {

    MethodInterceptor methodInterceptor = new ProjectingMethodInterceptor(factory, interceptor);

    when(invocation.getMethod()).thenReturn(Helper.class.getMethod("getPrimitive"));
    when(interceptor.invoke(invocation)).thenReturn(1L);

    assertThat(methodInterceptor.invoke(invocation), is((Object) 1L));
    verify(factory, times(0)).createProjection(anyObject(), (Class<?>) anyObject());
  }

  interface Helper {

    Helper getHelper();

    String getString();

    long getPrimitive();
  }
}
TOP

Related Classes of org.springframework.data.rest.core.projection.ProjectingMethodInterceptorUnitTests$Helper

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.