FileDocCategorySizeDatePackage
WebResourceHTTPMethod.javaAPI DocGlassfish v2 API7157Fri May 04 22:34:10 BST 2007com.sun.enterprise.tools.verifier.tests.web

WebResourceHTTPMethod

public class WebResourceHTTPMethod extends com.sun.enterprise.tools.verifier.tests.web.WebTest implements WebCheck
The http-method element contains the name of web resource collection's HTTP method

Fields Summary
Constructors Summary
Methods Summary
public Resultcheck(WebBundleDescriptor descriptor)
The http-method element contains the name of web resource collection's HTTP method

param
descriptor the Web deployment descriptor
return
Result the results for this assertion


	Result result = getInitializedResult();
	ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();

	if (descriptor.getSecurityConstraints().hasMoreElements()) {
	    boolean oneFailed = false;
	    boolean foundIt = false;
            int na = 0;
            int noSc = 0;
            int naWRC = 0;
            int noWRC = 0;
	    // get the http method's in this .war
	    for (Enumeration e = descriptor.getSecurityConstraints() ; e.hasMoreElements() ;) {
		foundIt = false;
                noSc++;
		SecurityConstraintImpl securityConstraintImpl = (SecurityConstraintImpl) e.nextElement();
                if (securityConstraintImpl.getWebResourceCollections().hasMoreElements()) {
		    for (Enumeration ee = securityConstraintImpl.getWebResourceCollections(); ee.hasMoreElements();) {
			noWRC++;
			WebResourceCollectionImpl webResourceCollection = (WebResourceCollectionImpl) ee.nextElement();
			if (webResourceCollection.getHttpMethods().hasMoreElements()) {
			    for (Enumeration eee = webResourceCollection.getHttpMethods(); eee.hasMoreElements();) {
				String webRCHTTPMethod = (String) eee.nextElement();
				// valid methods are the following
				if ((webRCHTTPMethod.equals("OPTIONS")) ||
				    (webRCHTTPMethod.equals("GET")) ||
				    (webRCHTTPMethod.equals("HEAD")) ||
				    (webRCHTTPMethod.equals("POST")) ||
				    (webRCHTTPMethod.equals("PUT")) ||
				    (webRCHTTPMethod.equals("DELETE")) ||
				    (webRCHTTPMethod.equals("TRACE")) ||
				    (webRCHTTPMethod.equals("CONNECT")))  {
				    foundIt = true;
				} else {
				    foundIt = false;
				}
       
				if (foundIt) {
				    result.addGoodDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
				    result.addGoodDetails(smh.getLocalString
							  (getClass().getName() + ".passed",
							   "http-method [ {0} ] is valid HTTP method name within web resource collection [ {1} ] in web application [ {2} ]",
							   new Object[] {webRCHTTPMethod, webResourceCollection.getName(), 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: http-method [ {0} ] is not valid HTTP method name within web resource collection [ {1} ] in web application [ {2} ]",
							    new Object[] {webRCHTTPMethod, webResourceCollection.getName(), descriptor.getName()}));
				}
			    }
			} else {
			    result.addNaDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
			    result.notApplicable(smh.getLocalString
						 (getClass().getName() + ".notApplicable1",
						  "There are no web http-methods in the web resource collection [ {0} ] within [ {1} ]",
						  new Object[] {webResourceCollection.getName(),  descriptor.getName()}));
			    naWRC++;
			}
		    }
                } else {
		    result.addNaDetails(smh.getLocalString
				       ("tests.componentNameConstructor",
					"For [ {0} ]",
					new Object[] {compName.toString()}));
                    result.notApplicable(smh.getLocalString
                                         (getClass().getName() + ".notApplicable2",
                                          "There are no web web resource collections in the web security constraint within [ {0} ]",
                                          new Object[] {descriptor.getName()}));                    na++;    
                }
	    }
	    if (oneFailed) {
		result.setStatus(Result.FAILED);
            } else if ((na == noSc) || (naWRC == noWRC)) {
                result.setStatus(Result.NOT_APPLICABLE);
	    } 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 http-method elements within the web archive [ {0} ]",
				  new Object[] {descriptor.getName()}));
	}

	return result;