org.junit.experimental.theories.internal.Assignments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-tck Show documentation
Show all versions of truffle-tck Show documentation
A collection of tests that can certify language implementation to be compliant
with most recent requirements of the Truffle infrastructure and tooling.
The newest version!
package org.junit.experimental.theories.internal;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import org.junit.experimental.theories.ParameterSignature;
import org.junit.experimental.theories.ParameterSupplier;
import org.junit.experimental.theories.ParametersSuppliedBy;
import org.junit.experimental.theories.PotentialAssignment;
import org.junit.experimental.theories.PotentialAssignment.CouldNotGenerateValueException;
import org.junit.runners.model.TestClass;
/**
* A potentially incomplete list of value assignments for a method's formal
* parameters
*/
public class Assignments {
private List fAssigned;
private final List fUnassigned;
private final TestClass fClass;
private Assignments(List assigned,
List unassigned, TestClass testClass) {
fUnassigned = unassigned;
fAssigned = assigned;
fClass = testClass;
}
/**
* Returns a new assignment list for {@code testMethod}, with no params
* assigned.
*/
public static Assignments allUnassigned(Method testMethod,
TestClass testClass) throws Exception {
List signatures;
signatures = ParameterSignature.signatures(testClass
.getOnlyConstructor());
signatures.addAll(ParameterSignature.signatures(testMethod));
return new Assignments(new ArrayList(),
signatures, testClass);
}
public boolean isComplete() {
return fUnassigned.size() == 0;
}
public ParameterSignature nextUnassigned() {
return fUnassigned.get(0);
}
public Assignments assignNext(PotentialAssignment source) {
List assigned = new ArrayList(
fAssigned);
assigned.add(source);
return new Assignments(assigned, fUnassigned.subList(1, fUnassigned
.size()), fClass);
}
public Object[] getActualValues(int start, int stop, boolean nullsOk)
throws CouldNotGenerateValueException {
Object[] values = new Object[stop - start];
for (int i = start; i < stop; i++) {
Object value = fAssigned.get(i).getValue();
if (value == null && !nullsOk) {
throw new CouldNotGenerateValueException();
}
values[i - start] = value;
}
return values;
}
public List potentialsForNextUnassigned()
throws InstantiationException, IllegalAccessException {
ParameterSignature unassigned = nextUnassigned();
return getSupplier(unassigned).getValueSources(unassigned);
}
public ParameterSupplier getSupplier(ParameterSignature unassigned)
throws InstantiationException, IllegalAccessException {
ParameterSupplier supplier = getAnnotatedSupplier(unassigned);
if (supplier != null) {
return supplier;
}
return new AllMembersSupplier(fClass);
}
public ParameterSupplier getAnnotatedSupplier(ParameterSignature unassigned)
throws InstantiationException, IllegalAccessException {
ParametersSuppliedBy annotation = unassigned
.findDeepAnnotation(ParametersSuppliedBy.class);
if (annotation == null) {
return null;
}
return annotation.value().newInstance();
}
public Object[] getConstructorArguments(boolean nullsOk)
throws CouldNotGenerateValueException {
return getActualValues(0, getConstructorParameterCount(), nullsOk);
}
public Object[] getMethodArguments(boolean nullsOk)
throws CouldNotGenerateValueException {
return getActualValues(getConstructorParameterCount(),
fAssigned.size(), nullsOk);
}
public Object[] getAllArguments(boolean nullsOk)
throws CouldNotGenerateValueException {
return getActualValues(0, fAssigned.size(), nullsOk);
}
private int getConstructorParameterCount() {
List signatures = ParameterSignature
.signatures(fClass.getOnlyConstructor());
int constructorParameterCount = signatures.size();
return constructorParameterCount;
}
public Object[] getArgumentStrings(boolean nullsOk)
throws CouldNotGenerateValueException {
Object[] values = new Object[fAssigned.size()];
for (int i = 0; i < values.length; i++) {
values[i] = fAssigned.get(i).getDescription();
}
return values;
}
}