Result result = getInitializedResult();
ComponentNameConstructor compName = new ComponentNameConstructor(descriptor);
SunEjbJar ejbJar = descriptor.getEjbBundleDescriptor().getIasEjbObject();
String ejbName = null;
Ejb testCase = null;
boolean oneFailed = false;
if(ejbJar!=null)
{
getBeanCache(descriptor,ejbJar);
if(beanCache!=null)
{
String victimPolicy = beanCache.getVictimSelectionPolicy();
if(victimPolicy!=null)
{
if(victimPolicy.length()==0)
{
result.failed(smh.getLocalString(getClass().getName()+".failed1",
"FAILED [AS-EJB bean-cache] : victim-selection-policy cannot be empty. It has to be either FIFO, NRU or LRU"));
}
else
{
if(!victimPolicy.equalsIgnoreCase("FIFO") && !victimPolicy.equalsIgnoreCase("NRU")
&& !victimPolicy.equalsIgnoreCase("LRU"))
{
result.failed(smh.getLocalString(getClass().getName()+".failed2",
"FAILED [AS-EJB bean-cache] : victim-selection-policy cannot be {0}. It should be either FIFO, NRU or LRU [case insensitive]",
new Object[]{victimPolicy}));
}
else
{
result.passed(smh.getLocalString(getClass().getName()+".passed",
"PASSED [AS-EJB bean-cache] : victim-selection-policy is {0}",
new Object[]{victimPolicy}));
}
}
}
else
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB bean-cache] : victim-selection-policy element not defined"));
}
}
else
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB] : bean-cache element not defined"));
}
}
else
{
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".notRun",
"NOT RUN [AS-EJB] : Could not create an SunEjbJar object"));
}
return result;