All Servlet class of an war bundle should be declared in the deployment
Result result = getInitializedResult();
// See bug #6332745
if(getVerifierContext().getJavaEEVersion().compareTo(SpecVersionMapper.JavaEEVersion_5) >=0){
result.setStatus(Result.NOT_APPLICABLE);
return result;
}
// ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
boolean oneWarning = false;
boolean foundOne=false;
// File f = Verifier.getArchiveFile(descriptor.getModuleDescriptor().getArchiveUri());
result = loadWarFile(descriptor);
// ZipFile zip = null;
FileArchive arch = null;
Enumeration entries= null;
//ZipEntry entry;
Object entry;
try {
// if (f == null) {
String uri = getAbstractArchiveUri(descriptor);
try {
arch = new FileArchive();
arch.open(uri);
entries = arch.entries();
}catch (Exception e) { throw e; }
// }
// else {
// zip = new ZipFile(f);
// entries = zip.entries();
// }
} catch(Exception e) {
e.printStackTrace();
result.failed(smh.getLocalString
(getClass().getName() + ".exception",
"IOException while loading the war file [ {0} ]",
new Object[] {descriptor.getName()}));
return result;
}
while (entries.hasMoreElements()) {
entry = entries.nextElement();
// if (f == null) {
String name = (String)entry;
// }
// else {
// name = ((ZipEntry)entry).getName();
// }
if (name.startsWith(servletClassPath)) {
if (name.endsWith(".class")) {
String classEntryName = name.substring(0, name.length()-".class".length());
classEntryName = classEntryName.substring(servletClassPath.length()+1, classEntryName.length());
String className = classEntryName.replace('/",'.");
Class servletClass = loadClass(result, className);
if (!Modifier.isAbstract(servletClass.getModifiers()) &&
isImplementorOf(servletClass, "javax.servlet.Servlet")) {
foundOne=true;
// let's find out if this servlet has associated deployment descriptors...
Set servlets = descriptor.getServletDescriptors();
boolean foundDD = false;
for (Iterator itr = servlets.iterator();itr.hasNext();) {
WebComponentDescriptor servlet = (WebComponentDescriptor)itr.next();
String servletClassName = servlet.getWebComponentImplementation();
if (servletClassName.equals(className)) {
foundDD=true;
break;
}
}
if (foundDD) {
result.addGoodDetails(smh.getLocalString
(getClass().getName() + ".passed",
"Servlet class [ {0} ] found in war file is defined in the Deployement Descriptors",
new Object[] {className}));
} else {
oneWarning=true;
result.addWarningDetails(smh.getLocalString
(getClass().getName() + ".warning",
"Servlet class [ {0} ] found in war file is not defined in the Deployement Descriptors",
new Object[] {className}));
}
}
}
}
}
if (!foundOne) {
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable",
"There are no servlet implementation within the web archive [ {0} ]",
new Object[] {descriptor.getName()}));
} else {
if (oneWarning) {
result.setStatus(Result.WARNING);
} else {
result.setStatus(Result.PASSED);
}
}
return result;