package net.bytebuddy.implementation.bytecode.assign.primitive; import net.bytebuddy.description.type.TypeDescription; import net.bytebuddy.implementation.bytecode.StackManipulation; import net.bytebuddy.implementation.bytecode.assign.Assigner; import net.bytebuddy.test.utility.MockitoRule; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestRule; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.mockito.Mock; import java.util.Arrays; import java.util.Collection; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.*; @RunWith(Parameterized.class) public class PrimitiveTypeAwareAssignerBoxingTest { private final Class<?> sourceType; private final Class<?> targetType; private final boolean assignable; @Rule public TestRule mockitoRule = new MockitoRule(this); @Mock private TypeDescription.Generic sourceTypeDescription, targetTypeDescription; @Mock private Assigner chainedAssigner; @Mock private StackManipulation chainedStackManipulation; private Assigner primitiveAssigner; public PrimitiveTypeAwareAssignerBoxingTest(Class<?> sourceType, Class<?> targetType, boolean assignable) { this.sourceType = sourceType; this.targetType = targetType; this.assignable = assignable; } @Parameterized.Parameters public static Collection<Object[]> data() { return Arrays.asList(new Object[][]{ {boolean.class, Boolean.class, true}, {byte.class, Byte.class, true}, {short.class, Short.class, true}, {char.class, Character.class, true}, {int.class, Integer.class, true}, {long.class, Long.class, true}, {float.class, Float.class, true}, {double.class, Double.class, true} }); } @Before public void setUp() throws Exception { when(sourceTypeDescription.represents(sourceType)).thenReturn(true); when(sourceTypeDescription.isPrimitive()).thenReturn(true); when(targetTypeDescription.represents(targetType)).thenReturn(true); when(targetTypeDescription.isPrimitive()).thenReturn(false); when(chainedStackManipulation.isValid()).thenReturn(true); when(chainedAssigner.assign(any(TypeDescription.Generic.class), any(TypeDescription.Generic.class), any(Assigner.Typing.class))) .thenReturn(chainedStackManipulation); primitiveAssigner = new PrimitiveTypeAwareAssigner(chainedAssigner); } @Test public void testBoxingAssignment() { StackManipulation stackManipulation = primitiveAssigner.assign(sourceTypeDescription, targetTypeDescription, Assigner.Typing.STATIC); assertThat(stackManipulation.isValid(), is(assignable)); verify(chainedStackManipulation).isValid(); verifyNoMoreInteractions(chainedStackManipulation); verify(sourceTypeDescription, atLeast(0)).represents(any(Class.class)); verify(sourceTypeDescription).represents(sourceType); verify(sourceTypeDescription, atLeast(1)).isPrimitive(); verifyNoMoreInteractions(sourceTypeDescription); verify(targetTypeDescription, atLeast(1)).isPrimitive(); verifyNoMoreInteractions(targetTypeDescription); verify(chainedAssigner).assign(new TypeDescription.Generic.OfNonGenericType.ForLoadedType(targetType), targetTypeDescription, Assigner.Typing.STATIC); verifyNoMoreInteractions(chainedAssigner); } }