Location element contains the location of the resource in the web
application
Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
if (descriptor.getErrorPageDescriptors().hasMoreElements()) {
boolean oneFailed = false;
boolean foundIt = false;
// ZipEntry ze = null;
// JarFile jar =null;
FileArchive arch=null;
// get the errorpage's in this .war
for (Enumeration e = descriptor.getErrorPageDescriptors() ; e.hasMoreElements() ;) {
foundIt = false;
ErrorPageDescriptorImpl errorpage = (ErrorPageDescriptorImpl) e.nextElement();
String location = errorpage.getLocation();
String uri = null;
try{
// File f = Verifier.getArchiveFile(descriptor.getModuleDescriptor().getArchiveUri());
// if(f==null){
uri=getAbstractArchiveUri(descriptor);
try{
arch = new FileArchive();
arch.open(uri);
}catch(IOException ioe){throw ioe;}
// }else{
// jar = new JarFile(f);
// }
if (location.startsWith("/"))
location = location.substring(1);
// if (f!=null){
// ze = jar.getEntry(location);
// foundIt = (ze != null);
// }
// else{
File loc = new File(arch.getArchiveUri()+File.separator+location);
if(loc.exists())
foundIt=true;
loc = null;
// }
// if (jar!=null)
// jar.close();
}catch (Exception ex) {
if (!oneFailed){
oneFailed = true;
}
}
if (foundIt) {
result.addGoodDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.addGoodDetails(smh.getLocalString
(getClass().getName() + ".passed",
"Location [ {0} ] contains the location of the resource within web application [ {1} ]",
new Object[] {location, descriptor.getName()}));
} else {
if (!oneFailed) {
oneFailed = true;
}
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".failed",
"Error: Location [ {0} ] is not found within [ {1} ] or does not contain the location of the resource within web application [ {2} ]",
new Object[] {location, uri, descriptor.getName()}));
}
}
if (oneFailed) {
result.setStatus(Result.FAILED);
} else {
result.setStatus(Result.PASSED);
}
} else {
result.addNaDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable",
"There are no location elements within the web archive [ {0} ]",
new Object[] {descriptor.getName()}));
}
return result;