/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.enterprise.tools.verifier.tests.appclient.elements;
import com.sun.enterprise.tools.verifier.tests.appclient.AppClientTest;
import com.sun.enterprise.tools.verifier.tests.appclient.AppClientCheck;
import java.util.*;
import com.sun.enterprise.deployment.*;
import com.sun.enterprise.tools.verifier.*;
import com.sun.enterprise.tools.verifier.tests.*;
/**
* The Bean Provider must declare all enterprise bean's references to the homes
* of other enterprise beans as specified in section 14.3.2 of the Moscone spec.
* Check for one within the same jar file, can't check outside of jar file.
* Load/locate & check other bean's home/remote/bean, ensure they match with
* what the linking bean says they should be; check for pair of referencing and
* referenced beans exist.
*/
public class AppClientEjbReferencesElement extends AppClientTest implements AppClientCheck {
/**
* The Bean Provider must declare all enterprise bean's references to the homes
* of other enterprise beans as specified in section 14.3.2 of the Moscone spec.
* Check for one within the same jar file, can't check outside of jar file.
* Load/locate & check other bean's home/remote/bean, ensure they match with
* what the linking bean says they should be; check for pair of referencing and
* referenced beans exist.
*
* @param descriptor the Application client deployment descriptor
*
* @return <code>Result</code> the results for this assertion
*/
public Result check(ApplicationClientDescriptor descriptor) {
Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
if (descriptor instanceof ApplicationClientDescriptor) {
// RULE: References to other beans must be declared in the form of
// references to other beans homes as specified in section
// 14.3.2 of the Moscone spec.
// check for one bean within the same jar file; can't check outside of
// jar file. need to load/locate and check other beans remote, home, bean
// match with the linking bean says they should be. i.e. check for pair
// of referencing & referenced bean exist, using reflection API
EjbReferenceDescriptor ejbReference;
Set references = descriptor.getEjbReferenceDescriptors();
Iterator iterator = references.iterator();
if (iterator.hasNext()) {
boolean oneFailed = false;
while (iterator.hasNext()) {
ejbReference = (EjbReferenceDescriptor) iterator.next();
String homeClassName = ejbReference.getHomeClassName();
if(homeClassName == null) {
oneFailed = true;
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failed1",
"Error: {0} class cannot be null.",
new Object[] {"home"}));
} else {
try {
Class.forName(homeClassName, false, getVerifierContext().getClassLoader());
} catch (ClassNotFoundException e) {
Verifier.debug(e);
oneFailed = true;
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failed",
"Error: [ {0} ] class [ {1} ] cannot be found within this jar [ {2} ].",
new Object[] {ejbReference.getName(), homeClassName,
descriptor.getModuleDescriptor().getArchiveUri()}));
}
result.addGoodDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.passed(smh.getLocalString
(getClass().getName() + ".passed2",
"The referenced bean's home interface [ {0} ] exists and is loadable within [ {1} ].",
new Object[] {ejbReference.getHomeClassName(),
descriptor.getModuleDescriptor().getArchiveUri()}));
}
String remoteClassName = ejbReference.getEjbInterface();
if(remoteClassName == null) {
oneFailed = true;
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failed1",
"Error: {0} class cannot be null.",
new Object[] {"remote"}));
} else {
try {
Class.forName(remoteClassName, false, getVerifierContext().getClassLoader());
} catch (ClassNotFoundException e) {
Verifier.debug(e);
oneFailed = true;
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failed",
"Error: [ {0} ] class [ {1} ] cannot be found within this jar [ {2} ].",
new Object[] {ejbReference.getName(), remoteClassName,
descriptor.getModuleDescriptor().getArchiveUri()}));
}
result.addGoodDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.passed(smh.getLocalString
(getClass().getName() + ".passed3",
"The referenced bean's remote interface [ {0} ] exists and is loadable within [ {1} ].",
new Object[] {ejbReference.getEjbInterface(),
descriptor.getModuleDescriptor().getArchiveUri()}));
}
}
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() + ".notApplicable1",
"There are no ejb references to other beans within this application client [ {0} ]",
new Object[] {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} ] not called with a application client.",
new Object[] {getClass()}));
return result;
}
}
}
|