![JAR search and dependency download from the Maven repository](/logo.png)
mockit.internal.expectations.SequenceOfReturnValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for developer (unit/integration) testing.
It contains mocking APIs and other tools, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006-2013 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations;
import java.lang.reflect.*;
import java.util.*;
import org.jetbrains.annotations.*;
final class SequenceOfReturnValues
{
@NotNull private final Expectation expectation;
@NotNull private final Class> returnType;
@Nullable private final Object firstValue;
@NotNull private final Object[] remainingValues;
SequenceOfReturnValues(
@NotNull Expectation expectation, @Nullable Object firstValue, @NotNull Object[] remainingValues)
{
this.expectation = expectation;
returnType = expectation.getReturnType();
this.firstValue = firstValue;
this.remainingValues = remainingValues;
}
boolean addResultWithSequenceOfValues()
{
boolean added = false;
if (returnType != void.class) {
if (returnType.isArray()) {
added = addValuesInArrayIfApplicable();
}
else if (Iterator.class.isAssignableFrom(returnType)) {
added = addValuesInIteratorIfApplicable();
}
else if (Iterable.class.isAssignableFrom(returnType)) {
added = addValuesInIterableIfApplicable();
}
}
return added;
}
private boolean addValuesInArrayIfApplicable()
{
if (firstValue == null || !firstValue.getClass().isArray()) {
addArrayAsReturnValue();
return true;
}
return false;
}
private void addArrayAsReturnValue()
{
Class> elementType = returnType.getComponentType();
int n = 1 + remainingValues.length;
Object values = Array.newInstance(elementType, n);
setArrayElement(elementType, values, 0, firstValue);
for (int i = 1; i < n; i++) {
setArrayElement(elementType, values, i, remainingValues[i - 1]);
}
expectation.getResults().addReturnValue(values);
}
private void setArrayElement(Class> elementType, Object array, int index, @Nullable Object value)
{
Object arrayValue = value;
if (value != null) {
if (elementType == byte.class || elementType == Byte.class) {
arrayValue = ((Number) value).byteValue();
}
else if (elementType == short.class || elementType == Short.class) {
arrayValue = ((Number) value).shortValue();
}
}
Array.set(array, index, arrayValue);
}
private boolean addValuesInIteratorIfApplicable()
{
if (firstValue == null || !Iterator.class.isAssignableFrom(firstValue.getClass())) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy