/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2001-2017 Oracle and/or its affiliates. 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://oss.oracle.com/licenses/CDDL+GPL-1.1 * or 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 LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [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.s1asdev.ejb.bmp.handle.mix.client; import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; import java.util.*; import com.sun.s1asdev.ejb.bmp.handle.mix.ejb.*; import com.sun.ejte.ccl.reporter.SimpleReporterAdapter; /** * A simple java client will: * <ul> * <li>Locates the home interface of the enterprise bean * <li>Gets a reference to the remote interface * <li>Invokes business methods * </ul> */ public class HandleClient { private SimpleReporterAdapter stat = new SimpleReporterAdapter("appserv-tests"); public static void main(String[] args) { HandleClient client = new HandleClient(); // run the tests client.runTestClient(); } public void runTestClient() { try{ stat.addDescription("Testing Bmp HandleClient app."); test01(); Context initialCtx = new InitialContext(); Object objref = initialCtx.lookup("java:comp/env/ejb/SimpleEnroller"); EnrollerHome enrollerHome = (EnrollerHome) PortableRemoteObject.narrow(objref, EnrollerHome.class); test02(initialCtx, enrollerHome); test03(initialCtx, enrollerHome); test04(initialCtx, enrollerHome); test05(initialCtx, enrollerHome); stat.printSummary("HandleClient"); } catch (Exception ex) { System.out.println("Exception in runTestClient: " + ex.toString()); ex.printStackTrace(); } } private void test01() { try { Context initial = new InitialContext(); Object objref = initial.lookup("java:comp/env/ejb/SimpleStudent"); StudentHome sHome = (StudentHome) PortableRemoteObject.narrow(objref, StudentHome.class); Student denise = sHome.create("823", "Denise Smith"); sHome.create("456", "ABC of 123"); sHome.create("388", "A smart programmer"); objref = initial.lookup("java:comp/env/ejb/SimpleCourse"); CourseHome cHome = (CourseHome) PortableRemoteObject.narrow(objref, CourseHome.class); Course power = cHome.create("220", "Power J2EE Programming"); cHome.create("333", "J2EE Patterns"); cHome.create("777", "Design Patterns"); objref = initial.lookup("java:comp/env/ejb/SimpleEnroller"); EnrollerHome eHome = (EnrollerHome) PortableRemoteObject.narrow(objref, EnrollerHome.class); Enroller enroller = eHome.create(); enroller.enroll("823", "220"); enroller.enroll("823", "333"); enroller.enroll("823", "777"); enroller.enroll("456", "777"); enroller.enroll("388", "777"); System.out.println(denise.getName() + ":"); ArrayList courses = denise.getCourseIds(); Iterator i = courses.iterator(); while (i.hasNext()) { String courseId = (String)i.next(); Course course = cHome.findByPrimaryKey(courseId); System.out.println(courseId + " " + course.getName()); } System.out.println(); Course intro = cHome.findByPrimaryKey("777"); System.out.println(intro.getName() + ":"); courses = intro.getStudentIds(); i = courses.iterator(); while (i.hasNext()) { String studentId = (String)i.next(); Student student = sHome.findByPrimaryKey(studentId); System.out.println(studentId + " " + student.getName()); } stat.addStatus("Bmp HandleClient", stat.PASS); } catch (Exception ex) { stat.addStatus("Bmp HandleClient", stat.FAIL); System.err.println("Caught an unexpected exception!"); ex.printStackTrace(); } } private void test02(Context initialCtx, EnrollerHome enrollerHome) { try { Enroller enroller = enrollerHome.create(); enroller.testEnrollerHomeHandle(); stat.addStatus("Bmp StatelessHomeHandle", stat.PASS); } catch (Exception ex) { stat.addStatus("Bmp StatelessHomeHandle", stat.FAIL); System.err.println("Caught an unexpected exception!"); ex.printStackTrace(); } } private void test03(Context initialCtx, EnrollerHome enrollerHome) { try { Enroller enroller = enrollerHome.create(); enroller.testEnrollerHandle(); stat.addStatus("Bmp StatelessHandle", stat.PASS); } catch (Exception ex) { stat.addStatus("Bmp StatelessHandle", stat.FAIL); System.err.println("Caught an unexpected exception!"); ex.printStackTrace(); } } private void test04(Context initialCtx, EnrollerHome enrollerHome) { try { Enroller enroller = enrollerHome.create(); enroller.testStudentHomeHandle(); stat.addStatus("Bmp EntityHomeHandle", stat.PASS); } catch (Exception ex) { stat.addStatus("Bmp EntityHomeHandle", stat.FAIL); System.err.println("Caught an unexpected exception!"); ex.printStackTrace(); } } private void test05(Context initialCtx, EnrollerHome enrollerHome) { try { Enroller enroller = enrollerHome.create(); enroller.testStudentHandle("823"); stat.addStatus("Bmp EntityHandle", stat.PASS); } catch (Exception ex) { stat.addStatus("Bmp EntityHandle", stat.FAIL); System.err.println("Caught an unexpected exception!"); ex.printStackTrace(); } } }