blob: a0995325c3e0336b0335613368923a14bd7e4db7 [file] [log] [blame]
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.acme;
import org.glassfish.tests.ejb.profile.Simple;
import java.util.Map;
import java.util.HashMap;
import jakarta.ejb.*;
import jakarta.ejb.embeddable.EJBContainer;
import javax.naming.Context;
import javax.naming.NamingException;
import com.sun.ejte.ccl.reporter.SimpleReporterAdapter;
public class Client {
private static SimpleReporterAdapter stat =
new SimpleReporterAdapter("appserv-tests");
private static String appName;
public static void main(String[] s) {
appName = s[0];
System.out.println(".......... Testing module: " + appName);
stat.addDescription(appName);
Client t = new Client();
try {
t.test(appName);
} catch (Exception e) {
e.printStackTrace();
}
stat.printSummary(appName + "ID");
//System.exit(0);
}
private void test(String module) {
long startTime0 = now();
long startTime = startTime0;
EJBContainer c = EJBContainer.createEJBContainer();
System.err.println("\n==> Spent on CREATE: " + (now() - startTime) + " msec");
// ok now let's look up the EJB...
Context ic = c.getContext();
try {
System.out.println("Looking up EJB...");
startTime = now();
Simple ejb = (Simple) ic.lookup("java:global/" + module + "/SimpleEjb");
System.err.println("\n==> Spent on LOOKUP: " + (now() - startTime) + " msec");
System.out.println("Invoking EJB...");
startTime = now();
String result = ejb.saySomething();
System.err.println("\n==> Spent on CALL: " + (now() - startTime) + " msec");
System.out.println("EJB said: " + result);
startTime = now();
c.close();
System.err.println("\n==> Spent on CLOSE: " + (now() - startTime) + " msec");
stat.addStatus("EJB embedded with profile", stat.PASS);
} catch (Exception e) {
stat.addStatus("EJB embedded with profile", stat.FAIL);
System.out.println("ERROR calling EJB:");
e.printStackTrace();
}
System.out.println("Done calling EJB");
System.err.println("\n==> Spent on TEST: " + (now() - startTime0) + " msec");
}
private long now() {
return System.currentTimeMillis();
}
}