blob: fb802871698ee8fbd5e9e0eadd423a097ee5fa46 [file] [log] [blame]
package org.testng.internal;
import java.lang.reflect.Modifier;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.testng.ITestContext;
import org.testng.ITestNGMethod;
import org.testng.TestNGException;
import org.testng.collections.Lists;
import org.testng.collections.Maps;
import org.testng.internal.annotations.IAnnotationFinder;
import org.testng.xml.XmlTest;
/**
* This class represents a method annotated with @Factory
*
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public class FactoryMethod extends BaseTestMethod {
/**
*
*/
private static final long serialVersionUID = -7329918821346197099L;
private Object m_instance = null;
private XmlTest m_xmlTest = null;
private ITestContext m_testContext = null;
public FactoryMethod(ConstructorOrMethod com,
Object instance,
XmlTest xmlTest,
IAnnotationFinder annotationFinder,
ITestContext testContext)
{
super(com.getName(), com, annotationFinder, instance);
Utils.checkInstanceOrStatic(instance, com.getMethod());
Class<?> declaringClass = com.getDeclaringClass();
if (instance != null && ! declaringClass.isAssignableFrom(instance.getClass())) {
throw new TestNGException("Mismatch between instance/method classes:"
+ instance.getClass() + " " + declaringClass);
}
if (instance == null && com.getMethod() != null && !Modifier.isStatic(com.getMethod().getModifiers())) {
throw new TestNGException("An inner factory method MUST be static. But '" + com.getMethod().getName() + "' from '" + declaringClass.getName() + "' is not.");
}
if (com.getMethod() != null && !Modifier.isPublic(com.getMethod().getModifiers())) {
try {
com.getMethod().setAccessible(true);
} catch (SecurityException e) {
throw new TestNGException(e);
}
}
m_instance = instance;
m_xmlTest = xmlTest;
m_testContext = testContext;
NoOpTestClass tc = new NoOpTestClass();
tc.setTestClass(declaringClass);
m_testClass = tc;
}
private static void ppp(String s) {
System.out.println("[FactoryMethod] " + s);
}
public Object[] invoke() {
List<Object> result = Lists.newArrayList();
Map<String, String> allParameterNames = Maps.newHashMap();
Iterator<Object[]> parameterIterator =
Parameters.handleParameters(this,
allParameterNames,
m_instance,
new Parameters.MethodParameters(m_xmlTest.getAllParameters(),
findMethodParameters(m_xmlTest),
null, null, m_testContext,
null /* testResult */),
m_xmlTest.getSuite(),
m_annotationFinder,
null /* fedInstance */).parameters;
try {
while (parameterIterator.hasNext()) {
Object[] parameters = parameterIterator.next();
Object[] testInstances;
ConstructorOrMethod com = getConstructorOrMethod();
if (com.getMethod() != null) {
testInstances = (Object[]) getMethod().invoke(m_instance, parameters);
for (Object testInstance : testInstances) {
result.add(testInstance);
}
} else {
Object instance = com.getConstructor().newInstance(parameters);
result.add(instance);
}
}
}
catch (Throwable t) {
ConstructorOrMethod com = getConstructorOrMethod();
throw new TestNGException("The factory method "
+ com.getDeclaringClass() + "." + com.getName()
+ "() threw an exception", t);
}
return result.toArray(new Object[result.size()]);
}
@Override
public ITestNGMethod clone() {
throw new IllegalStateException("clone is not supported for FactoryMethod");
}
}