FileDocCategorySizeDatePackage
ASCmpMappingTest.javaAPI DocGlassfish v2 API7562Fri May 04 22:34:06 BST 2007com.sun.enterprise.tools.verifier.tests.ejb.runtime.cmpmapping

ASCmpMappingTest

public class ASCmpMappingTest extends com.sun.enterprise.tools.verifier.tests.ejb.EjbTest implements com.sun.enterprise.tools.verifier.tests.ejb.EjbCheck

Fields Summary
Constructors Summary
Methods Summary
public com.sun.enterprise.tools.verifier.Resultcheck(com.sun.enterprise.deployment.EjbDescriptor descriptor)

        Result result = getInitializedResult();
        ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
        try {
            if (descriptor instanceof IASEjbCMPEntityDescriptor) {
                Collection col = null;
                if(getVerifierContext().getJDOException()!=null){
                    result.addErrorDetails(smh.getLocalString
                            ("tests.componentNameConstructor",
                                    "For [ {0} ]",
                                    new Object[] {compName.toString()}));
                    result.failed (smh.getLocalString(getClass().getName() + ".failed1",
                            "Error: Exception [ {0} ] while initializing JDOCodeGenerator. Please check your descriptors and mapping files for consistency ",
                            new Object[] {getVerifierContext().getJDOException().getMessage()}));

                    return result;
                }else{
                    try{
                        JDOCodeGenerator jdc= getVerifierContext().getJDOCodeGenerator();
                        col = jdc.validate((IASEjbCMPEntityDescriptor)descriptor);
                    }catch(Exception ex){
                        result.addErrorDetails(smh.getLocalString
                                ("tests.componentNameConstructor",
                                        "For [ {0} ]",
                                        new Object[] {compName.toString()}));
                        result.failed (smh.getLocalString(getClass().getName() + ".failed",
                                "Error: Exception [ {0} ] when calling JDOCodeGenerator.validate().",
                                new Object[] {ex.getMessage()}));
                        return result;
                    }
                }
                if (col.isEmpty()){
                    result.addGoodDetails(smh.getLocalString
                            ("tests.componentNameConstructor",
                                    "For [ {0} ]",
                                    new Object[] {compName.toString()}));
                    result.passed(smh.getLocalString(getClass().getName() + ".passed",
                            "The mappings for the cmp beans (if any) are correct."));
                }else {
                    // collect all the cmpmapping related errors
                    String allErrors = null;
                    Iterator it = col.iterator();
                    while (it.hasNext()) {
                        Exception e = (Exception)it.next();
                        if (!(e instanceof EJBQLException)) {
                            allErrors = e.getMessage() + "\n\n";
                        }
                    }
                    if (allErrors != null) {
                        result.addErrorDetails(smh.getLocalString
                                ("tests.componentNameConstructor",
                                        "For [ {0} ]",
                                        new Object[] {compName.toString()}));
                        result.failed(smh.getLocalString(getClass().getName() + ".parseError",
                                "Error: Entity bean [ {0} ] has the following error(s) [ {1} ]."
                                , new Object[] {descriptor.getEjbClassName(), "\n" + allErrors} ));
                    }
                    else {
                        result.addGoodDetails(smh.getLocalString
                                ("tests.componentNameConstructor",
                                        "For [ {0} ]",
                                        new Object[] {compName.toString()}));
                        result.passed(smh.getLocalString(getClass().getName() + ".passed",
                                "The mappings for the cmp beans (if any) are correct."));
                    }
                  }
            } else
            {
                result.addNaDetails(smh.getLocalString
                        ("tests.componentNameConstructor",
                                "For [ {0} ]",
                                new Object[] {compName.toString()}));
                result.notApplicable(smh.getLocalString(getClass().getName() + ".notApplicable",
                        "Not applicable: Test only applies to container managed EJBs"));
            }
        } catch(Exception e) {
            result.addErrorDetails(smh.getLocalString
                    ("tests.componentNameConstructor",
                            "For [ {0} ]",
                            new Object[] {compName.toString()}));
            result.failed (smh.getLocalString(getClass().getName() + ".failed",
                    "Error: Exception [ {0} ] when calling JDOCodeGenerator.validate().",
                    new Object[] {e.getMessage()}));
        }
        return result;