run an individual home method test
Method m;
ComponentNameConstructor compName = null;
try {
compName = getVerifierContext().getComponentNameConstructor();
// retrieve the remote interface methods
ClassLoader jcl = getVerifierContext().getClassLoader();
Class ejbClass = Class.forName(descriptor.getEjbClassName(), false, jcl);
// Bug: 4952890. first character of this name should be converted to UpperCase.
String methodName = method.getName().replaceFirst(method.getName().substring(0,1),
method.getName().substring(0,1).toUpperCase());
String expectedMethodName = "ejbHome" + methodName;
do {
// retrieve the EJB Class Methods
m = getMethod(ejbClass, expectedMethodName, method.getParameterTypes());
} while (((ejbClass = ejbClass.getSuperclass()) != null) && (m==null));
if (m != null) {
// now display the appropriate results for this particular business
// method
addGoodDetails(result, compName);
result.passed(smh.getLocalString
(getClass().getName() + ".passed",
"For method [ {1} ] in Home Interface [ {0} ], a ejbHome<METHOD> name matching method was found",
new Object[] {method.getDeclaringClass().getName(), method.getName()}));
} else {
addErrorDetails(result, compName);
result.failed(smh.getLocalString
(getClass().getName() + ".failed",
"Error : For method [ {1} ] defined in Home Interface [ {0} ], no ejbHome<METHOD> name matching method was found" ,
new Object[] {method.getDeclaringClass().getName(), method.getName()}));
}
} catch (ClassNotFoundException e) {
Verifier.debug(e);
addErrorDetails(result, compName);
result.failed(smh.getLocalString(
getClass().getName() + ".failedException",
"Error: Home interface [ {0} ] does not exist or is not loadable within bean [ {1} ]",
new Object[] {getClassName(descriptor),descriptor.getName()}));
}