Search in sources :

Example 36 with EjbDescriptor

use of org.glassfish.ejb.deployment.descriptor.EjbDescriptor in project Payara by payara.

the class EJBBundleInfoHelper method getEjbNames.

/**
 * @see EJBInfoHelper#getEjbNames
 */
public Collection getEjbNames() {
    Iterator iterator = getBundleDescriptor().getEjbs().iterator();
    ArrayList returnList = new ArrayList();
    while (iterator.hasNext()) {
        EjbDescriptor ejb = (EjbDescriptor) iterator.next();
        if (ejb instanceof EjbCMPEntityDescriptor)
            returnList.add(ejb.getName());
    }
    return returnList;
}
Also used : Iterator(java.util.Iterator) ArrayList(java.util.ArrayList) EjbCMPEntityDescriptor(org.glassfish.ejb.deployment.descriptor.EjbCMPEntityDescriptor) EjbDescriptor(org.glassfish.ejb.deployment.descriptor.EjbDescriptor)

Example 37 with EjbDescriptor

use of org.glassfish.ejb.deployment.descriptor.EjbDescriptor in project Payara by payara.

the class EjbCheckMgrImpl method check.

/**
 * Check Ejb for spec. conformance
 *
 * @param descriptor Ejb descriptor
 */
public void check(Descriptor descriptor) throws Exception {
    // run persistence tests first.
    checkPersistenceUnits(EjbBundleDescriptorImpl.class.cast(descriptor));
    // an EjbBundleDescriptor can have an WebServicesDescriptor
    checkWebServices(descriptor);
    // an EjbBundleDescriptor can have  WebService References
    checkWebServicesClient(descriptor);
    if (verifierFrameworkContext.isPartition() && !verifierFrameworkContext.isEjb())
        return;
    EjbBundleDescriptorImpl bundleDescriptor = (EjbBundleDescriptorImpl) descriptor;
    setDescClassLoader(bundleDescriptor);
    // an ejb-ref is unresolved etc.
    try {
        EjbBundleValidator validator = new EjbBundleValidator();
        validator.accept(bundleDescriptor);
    } catch (Exception e) {
    }
    // initialize JDOC if bundle has CMP's
    if (bundleDescriptor.containsCMPEntity()) {
        try {
            // See bug #6274161. We now pass an additional boolean
            // to indicate whether we are in portable or AS mode.
            jdc.init(bundleDescriptor, context.getClassLoader(), getAbstractArchiveUri(bundleDescriptor), verifierFrameworkContext.isPortabilityMode());
        } catch (Throwable ex) {
            context.setJDOException(ex);
        }
    }
    // set the JDO Codegenerator into the context
    context.setJDOCodeGenerator(jdc);
    // run the ParseDD test
    if (bundleDescriptor.getSpecVersion().compareTo("2.1") < 0) {
        // NOI18N
        EjbDeploymentDescriptorFile ddf = new EjbDeploymentDescriptorFile();
        File file = new File(getAbstractArchiveUri(bundleDescriptor), ddf.getDeploymentDescriptorPath());
        FileInputStream is = new FileInputStream(file);
        try {
            if (is != null) {
                Result result = new ParseDD().validateEJBDescriptor(is);
                result.setComponentName(new File(bundleDescriptor.getModuleDescriptor().getArchiveUri()).getName());
                setModuleName(result);
                verifierFrameworkContext.getResultManager().add(result);
            }
        } finally {
            try {
                if (is != null) {
                    is.close();
                }
            } catch (Exception e) {
            }
        }
    }
    for (Iterator itr = bundleDescriptor.getEjbs().iterator(); itr.hasNext(); ) {
        EjbDescriptor ejbDescriptor = (EjbDescriptor) itr.next();
        super.check(ejbDescriptor);
    }
    if (bundleDescriptor.containsCMPEntity() && context.getJDOException() == null) {
        jdc.cleanup();
        context.setJDOCodeGenerator(null);
    }
}
Also used : EjbDeploymentDescriptorFile(org.glassfish.ejb.deployment.io.EjbDeploymentDescriptorFile) ParseDD(com.sun.enterprise.tools.verifier.tests.dd.ParseDD) Iterator(java.util.Iterator) EjbBundleValidator(org.glassfish.ejb.deployment.util.EjbBundleValidator) EjbDeploymentDescriptorFile(org.glassfish.ejb.deployment.io.EjbDeploymentDescriptorFile) File(java.io.File) FileInputStream(java.io.FileInputStream) EjbDescriptor(org.glassfish.ejb.deployment.descriptor.EjbDescriptor) EjbBundleDescriptorImpl(org.glassfish.ejb.deployment.descriptor.EjbBundleDescriptorImpl) Result(com.sun.enterprise.tools.verifier.Result)

Example 38 with EjbDescriptor

use of org.glassfish.ejb.deployment.descriptor.EjbDescriptor in project Payara by payara.

the class EjbCheckMgrImpl method checkWebServicesClient.

protected void checkWebServicesClient(Descriptor descriptor) throws Exception {
    if (verifierFrameworkContext.isPartition() && !verifierFrameworkContext.isWebServicesClient())
        return;
    EjbBundleDescriptorImpl desc = (EjbBundleDescriptorImpl) descriptor;
    WebServiceClientCheckMgrImpl webServiceClientCheckMgr = new WebServiceClientCheckMgrImpl(verifierFrameworkContext);
    if (desc.hasWebServiceClients()) {
        Set ejbdescs = desc.getEjbs();
        Iterator ejbIt = ejbdescs.iterator();
        while (ejbIt.hasNext()) {
            EjbDescriptor ejbDesc = (EjbDescriptor) ejbIt.next();
            context.setEjbDescriptorForServiceRef(ejbDesc);
            Set serviceRefDescriptors = ejbDesc.getServiceReferenceDescriptors();
            Iterator it = serviceRefDescriptors.iterator();
            while (it.hasNext()) {
                webServiceClientCheckMgr.setVerifierContext(context);
                webServiceClientCheckMgr.check((ServiceReferenceDescriptor) it.next());
            }
        }
        context.setEjbDescriptorForServiceRef(null);
    }
}
Also used : WebServiceClientCheckMgrImpl(com.sun.enterprise.tools.verifier.wsclient.WebServiceClientCheckMgrImpl) Set(java.util.Set) Iterator(java.util.Iterator) EjbDescriptor(org.glassfish.ejb.deployment.descriptor.EjbDescriptor) EjbBundleDescriptorImpl(org.glassfish.ejb.deployment.descriptor.EjbBundleDescriptorImpl)

Example 39 with EjbDescriptor

use of org.glassfish.ejb.deployment.descriptor.EjbDescriptor in project Payara by payara.

the class PersistenceFieldsElement method check.

/**
 * Container-managed fields test.
 * If the enterprise bean is a Entity Bean  w/Container managed persistence
 * the Bean provider must specify container managed fields in the
 * "persistent-fields" element.
 *
 * @param descriptor the Enterprise Java Bean deployment descriptor
 *
 * @return <code>Result</code> the results for this assertion
 */
public Result check(EjbDescriptor descriptor) {
    Result result = getInitializedResult();
    ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
    if (descriptor instanceof EjbEntityDescriptor) {
        String persistentType = ((EjbEntityDescriptor) descriptor).getPersistenceType();
        if (EjbEntityDescriptor.CONTAINER_PERSISTENCE.equals(persistentType)) {
            // this test apply only to 1.x cmp beans, in 2.x fields are virtual fields only
            if (EjbCMPEntityDescriptor.CMP_1_1 != ((EjbCMPEntityDescriptor) descriptor).getCMPVersion()) {
                result.addNaDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                result.notApplicable(smh.getLocalString("com.sun.enterprise.tools.verifier.tests.ejb.entity.cmp2.CMPTest.notApplicable3", "Test do not apply to this cmp-version of container managed persistence EJBs"));
                return result;
            }
            logger.log(Level.FINE, getClass().getName() + ".debug1", new Object[] { persistentType });
            // RULE: Entity w/Container managed persistence bean provider must
            // specify container managed fields in the persistent-fields
            // element
            Set persistentFields = ((EjbCMPEntityDescriptor) descriptor).getPersistenceDescriptor().getCMPFields();
            Iterator iterator = persistentFields.iterator();
            // check class to see if fields actually exist
            try {
                VerifierTestContext context = getVerifierContext();
                ClassLoader jcl = context.getClassLoader();
                Class c = Class.forName(descriptor.getEjbClassName(), false, getVerifierContext().getClassLoader());
                Descriptor persistentField;
                Field field;
                boolean oneFailed = false;
                while (iterator.hasNext()) {
                    persistentField = (Descriptor) iterator.next();
                    try {
                        field = c.getField(persistentField.getName());
                        result.addGoodDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                        result.passed(smh.getLocalString(getClass().getName() + ".passed", "[ {0} ] field found in [ {1} ]", new Object[] { ((Descriptor) persistentField).getName(), descriptor.getEjbClassName() }));
                    } catch (NoSuchFieldException e) {
                        result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                        result.failed(smh.getLocalString(getClass().getName() + ".failedException1", "Error: NoSuchFieldException: [ {0} ] not found in [ {1} ]", new Object[] { ((Descriptor) persistentField).getName(), descriptor.getEjbClassName() }));
                        if (!oneFailed) {
                            oneFailed = true;
                        }
                    } catch (SecurityException e) {
                        result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                        result.failed(smh.getLocalString(getClass().getName() + ".failedException2", "Error: SecurityException: [ {0} ] not found in [ {1} ]", new Object[] { ((Descriptor) persistentField).getName(), descriptor.getEjbClassName() }));
                        if (!oneFailed) {
                            oneFailed = true;
                        }
                    }
                }
                if (oneFailed) {
                    result.setStatus(Result.FAILED);
                } else {
                    result.setStatus(Result.PASSED);
                }
            } catch (ClassNotFoundException e) {
                Verifier.debug(e);
                result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                result.failed(smh.getLocalString(getClass().getName() + ".failedException3", "Error: Fields don't exist or are not loadable within bean [ {0} ]", new Object[] { descriptor.getName() }));
            }
        } else if (EjbEntityDescriptor.BEAN_PERSISTENCE.equals(persistentType)) {
            result.addNaDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
            result.notApplicable(smh.getLocalString(getClass().getName() + ".notApplicable1", "Expected persistence type [ {0} ], but [ {1} ] bean has persistence type [ {2} ]", new Object[] { EjbEntityDescriptor.CONTAINER_PERSISTENCE, descriptor.getName(), persistentType }));
        } else {
            result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
            result.failed(smh.getLocalString(getClass().getName() + ".failed", "Error: [ {0} ] is not valid persistentType within bean [ {1} ]", new Object[] { persistentType, descriptor.getName() }));
        }
        return result;
    } else {
        result.addNaDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
        result.notApplicable(smh.getLocalString(getClass().getName() + ".notApplicable", "[ {0} ] expected {1} bean, but called with {2} bean.", new Object[] { getClass(), "Entity", "Session" }));
        return result;
    }
}
Also used : Set(java.util.Set) VerifierTestContext(com.sun.enterprise.tools.verifier.VerifierTestContext) Result(com.sun.enterprise.tools.verifier.Result) EjbEntityDescriptor(org.glassfish.ejb.deployment.descriptor.EjbEntityDescriptor) Field(java.lang.reflect.Field) Iterator(java.util.Iterator) EjbEntityDescriptor(org.glassfish.ejb.deployment.descriptor.EjbEntityDescriptor) EjbCMPEntityDescriptor(org.glassfish.ejb.deployment.descriptor.EjbCMPEntityDescriptor) Descriptor(org.glassfish.deployment.common.Descriptor) EjbDescriptor(org.glassfish.ejb.deployment.descriptor.EjbDescriptor) ComponentNameConstructor(com.sun.enterprise.tools.verifier.tests.ComponentNameConstructor)

Example 40 with EjbDescriptor

use of org.glassfish.ejb.deployment.descriptor.EjbDescriptor in project Payara by payara.

the class UniqueAbstractSchemaName method check.

/**
 * The abstract schema name for every CMP bean within a jar file should be unique.
 *
 * @param descriptor the Enterprise Java Bean deployment descriptor
 *
 * @return <code>Result</code> the results for this assertion
 */
public Result check(EjbDescriptor descriptor) {
    Result result = getInitializedResult();
    ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
    boolean oneFailed = false;
    String abstractSchema = null;
    if (descriptor instanceof EjbEntityDescriptor) {
        if (((EjbEntityDescriptor) descriptor).getPersistenceType().equals(EjbEntityDescriptor.CONTAINER_PERSISTENCE)) {
            if (((EjbCMPEntityDescriptor) descriptor).getCMPVersion() == EjbCMPEntityDescriptor.CMP_2_x) {
                abstractSchema = ((EjbCMPEntityDescriptor) descriptor).getAbstractSchemaName();
                if (abstractSchema == null) {
                    result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                    result.failed(smh.getLocalString(getClass().getName() + ".failed2", "No Abstract Schema Name specified for a CMP 2.0 Entity Bean {0} ", new Object[] { descriptor.getName() }));
                    return result;
                }
            }
        }
        if (abstractSchema == null) {
            result.addNaDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
            result.notApplicable(smh.getLocalString(getClass().getName() + ".notApplicable", "This test is only for CMP 2.0 beans. Abstract Schema Names should be unique within an ejb JAR file."));
            return result;
        }
        EjbBundleDescriptorImpl bundle = descriptor.getEjbBundleDescriptor();
        Iterator iterator = (bundle.getEjbs()).iterator();
        Vector<String> schemaNames = new Vector<String>();
        while (iterator.hasNext()) {
            EjbDescriptor entity = (EjbDescriptor) iterator.next();
            if (entity instanceof EjbEntityDescriptor) {
                if (!entity.equals(descriptor)) {
                    if (((EjbEntityDescriptor) entity).getPersistenceType().equals(EjbEntityDescriptor.CONTAINER_PERSISTENCE)) {
                        schemaNames.addElement(((EjbCMPEntityDescriptor) entity).getAbstractSchemaName());
                    }
                }
            }
        }
        for (int i = 0; i < schemaNames.size(); i++) {
            if (abstractSchema.equals(schemaNames.elementAt(i))) {
                result.addErrorDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
                result.addErrorDetails(smh.getLocalString(getClass().getName() + ".failed", "Abstract Schema Names should be unique within an ejb JAR file. Abstract Schema Name [ {0} ] is not unique.", new Object[] { abstractSchema }));
                oneFailed = true;
            }
        }
        if (oneFailed == false) {
            result.addGoodDetails(smh.getLocalString("tests.componentNameConstructor", "For [ {0} ]", new Object[] { compName.toString() }));
            result.passed(smh.getLocalString(getClass().getName() + ".passed", "PASSED : Abstract Schema Names for all beans within the ejb JAR file are unique."));
        } else
            result.setStatus(Result.FAILED);
    } else {
        addNaDetails(result, compName);
        result.notApplicable(smh.getLocalString(getClass().getName() + ".notApplicable", "This test is only for CMP 2.0 beans. Abstract Schema Names should be unique within an ejb JAR file."));
    }
    return result;
}
Also used : EjbEntityDescriptor(org.glassfish.ejb.deployment.descriptor.EjbEntityDescriptor) Iterator(java.util.Iterator) Vector(java.util.Vector) ComponentNameConstructor(com.sun.enterprise.tools.verifier.tests.ComponentNameConstructor) EjbDescriptor(org.glassfish.ejb.deployment.descriptor.EjbDescriptor) Result(com.sun.enterprise.tools.verifier.Result) EjbBundleDescriptorImpl(org.glassfish.ejb.deployment.descriptor.EjbBundleDescriptorImpl)

Aggregations

EjbDescriptor (org.glassfish.ejb.deployment.descriptor.EjbDescriptor)48 EjbBundleDescriptorImpl (org.glassfish.ejb.deployment.descriptor.EjbBundleDescriptorImpl)19 Iterator (java.util.Iterator)18 ComponentNameConstructor (com.sun.enterprise.tools.verifier.tests.ComponentNameConstructor)16 Result (com.sun.enterprise.tools.verifier.Result)14 Method (java.lang.reflect.Method)13 MethodDescriptor (com.sun.enterprise.deployment.MethodDescriptor)11 EjbContext (com.sun.enterprise.deployment.annotation.context.EjbContext)10 Set (java.util.Set)8 EjbSessionDescriptor (org.glassfish.ejb.deployment.descriptor.EjbSessionDescriptor)7 EjbEntityDescriptor (org.glassfish.ejb.deployment.descriptor.EjbEntityDescriptor)6 EjbCMPEntityDescriptor (org.glassfish.ejb.deployment.descriptor.EjbCMPEntityDescriptor)5 Container (com.sun.ejb.Container)4 Field (java.lang.reflect.Field)4 ContainerTransaction (org.glassfish.ejb.deployment.descriptor.ContainerTransaction)4 DummyEjbDescriptor (org.glassfish.ejb.deployment.descriptor.DummyEjbDescriptor)4 VerifierTestContext (com.sun.enterprise.tools.verifier.VerifierTestContext)3 Constructor (java.lang.reflect.Constructor)3 Descriptor (org.glassfish.deployment.common.Descriptor)3 InterceptorBindingDescriptor (org.glassfish.ejb.deployment.descriptor.InterceptorBindingDescriptor)3