Browse Source
Also, equals insists on the same class now, differentiating from SynthesizingMethodParameter. Issue: SPR-14055 Issue: SPR-13456 Issue: SPR-14438pull/1100/head
9 changed files with 312 additions and 86 deletions
@ -0,0 +1,109 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2016 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.core.annotation; |
||||||
|
|
||||||
|
import java.lang.reflect.Method; |
||||||
|
|
||||||
|
import org.junit.Before; |
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
import org.springframework.core.MethodParameter; |
||||||
|
|
||||||
|
import static org.junit.Assert.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Juergen Hoeller |
||||||
|
*/ |
||||||
|
public class SynthesizingMethodParameterTests { |
||||||
|
|
||||||
|
private Method method; |
||||||
|
|
||||||
|
private SynthesizingMethodParameter stringParameter; |
||||||
|
|
||||||
|
private SynthesizingMethodParameter longParameter; |
||||||
|
|
||||||
|
private SynthesizingMethodParameter intReturnType; |
||||||
|
|
||||||
|
|
||||||
|
@Before |
||||||
|
public void setUp() throws NoSuchMethodException { |
||||||
|
method = getClass().getMethod("method", String.class, Long.TYPE); |
||||||
|
stringParameter = new SynthesizingMethodParameter(method, 0); |
||||||
|
longParameter = new SynthesizingMethodParameter(method, 1); |
||||||
|
intReturnType = new SynthesizingMethodParameter(method, -1); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Test |
||||||
|
public void testEquals() throws NoSuchMethodException { |
||||||
|
assertEquals(stringParameter, stringParameter); |
||||||
|
assertEquals(longParameter, longParameter); |
||||||
|
assertEquals(intReturnType, intReturnType); |
||||||
|
|
||||||
|
assertFalse(stringParameter.equals(longParameter)); |
||||||
|
assertFalse(stringParameter.equals(intReturnType)); |
||||||
|
assertFalse(longParameter.equals(stringParameter)); |
||||||
|
assertFalse(longParameter.equals(intReturnType)); |
||||||
|
assertFalse(intReturnType.equals(stringParameter)); |
||||||
|
assertFalse(intReturnType.equals(longParameter)); |
||||||
|
|
||||||
|
Method method = getClass().getMethod("method", String.class, Long.TYPE); |
||||||
|
MethodParameter methodParameter = new SynthesizingMethodParameter(method, 0); |
||||||
|
assertEquals(stringParameter, methodParameter); |
||||||
|
assertEquals(methodParameter, stringParameter); |
||||||
|
assertNotEquals(longParameter, methodParameter); |
||||||
|
assertNotEquals(methodParameter, longParameter); |
||||||
|
|
||||||
|
methodParameter = new MethodParameter(method, 0); |
||||||
|
assertNotEquals(stringParameter, methodParameter); |
||||||
|
assertNotEquals(methodParameter, stringParameter); |
||||||
|
assertNotEquals(longParameter, methodParameter); |
||||||
|
assertNotEquals(methodParameter, longParameter); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testHashCode() throws NoSuchMethodException { |
||||||
|
assertEquals(stringParameter.hashCode(), stringParameter.hashCode()); |
||||||
|
assertEquals(longParameter.hashCode(), longParameter.hashCode()); |
||||||
|
assertEquals(intReturnType.hashCode(), intReturnType.hashCode()); |
||||||
|
|
||||||
|
Method method = getClass().getMethod("method", String.class, Long.TYPE); |
||||||
|
SynthesizingMethodParameter methodParameter = new SynthesizingMethodParameter(method, 0); |
||||||
|
assertEquals(stringParameter.hashCode(), methodParameter.hashCode()); |
||||||
|
assertNotEquals(longParameter.hashCode(), methodParameter.hashCode()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testFactoryMethods() { |
||||||
|
assertEquals(stringParameter, SynthesizingMethodParameter.forExecutable(method, 0)); |
||||||
|
assertEquals(longParameter, SynthesizingMethodParameter.forExecutable(method, 1)); |
||||||
|
|
||||||
|
assertEquals(stringParameter, SynthesizingMethodParameter.forParameter(method.getParameters()[0])); |
||||||
|
assertEquals(longParameter, SynthesizingMethodParameter.forParameter(method.getParameters()[1])); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void testIndexValidation() { |
||||||
|
new SynthesizingMethodParameter(method, 2); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public int method(String p1, long p2) { |
||||||
|
return 42; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue