blob: 07979c4a97e8a913dd7e34e4b5cdd3ff3d0d0109 [file] [log] [blame]
/*
* Copyright (c) 2010, 2020 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.sun.s1asdev.cdi.hello.mdb.client;
import jakarta.annotation.Resource;
import jakarta.ejb.EJB;
import jakarta.jms.Destination;
import jakarta.jms.JMSException;
import jakarta.jms.Message;
import jakarta.jms.QueueConnection;
import jakarta.jms.QueueConnectionFactory;
import jakarta.jms.QueueReceiver;
import jakarta.jms.QueueSender;
import jakarta.jms.QueueSession;
import jakarta.jms.Session;
import jakarta.jms.TextMessage;
import javax.naming.InitialContext;
import test.ejb.session.HelloSless;
import com.sun.ejte.ccl.reporter.SimpleReporterAdapter;
public class Client {
// in milli-seconds
private static long TIMEOUT = 90000;
private static SimpleReporterAdapter stat = new SimpleReporterAdapter(
"appserv-tests");
private static final String TEST_NAME = "request-and-application-scope-ejb-mdb";
public static void main(String[] args) {
Client client = new Client(args);
stat.addDescription("cdi-hello-mdb");
client.doTest();
stat.printSummary("cdi-hello-mdbID");
System.exit(0);
}
@Resource(name = "FooCF", mappedName = "jms/cdi_hello_mdb_QCF")
private static QueueConnectionFactory queueConFactory;
@Resource(name = "MsgBeanQueue", mappedName = "jms/cdi_hello_mdb_InQueue")
private static jakarta.jms.Queue msgBeanQueue;
@Resource(name = "ClientQueue", mappedName = "foo")
private static jakarta.jms.Queue clientQueue;
private QueueConnection queueCon;
private QueueSession queueSession;
private QueueSender queueSender;
private QueueReceiver queueReceiver;
// Only one target bean with Remote intf SlessSub so no linking info
// necessary
private static @EJB
HelloSless helloStatelessRemoteBean;
private int numMessages = 2;
public Client(String[] args) {
if (args.length == 1) {
numMessages = new Integer(args[0]).intValue();
}
}
private void doTest() {
try {
if (queueConFactory == null) {
System.out.println("Java SE mode...");
InitialContext ic = new InitialContext();
queueConFactory = (jakarta.jms.QueueConnectionFactory) ic
.lookup("jms/cdi_hello_mdb_QCF");
msgBeanQueue = (jakarta.jms.Queue) ic
.lookup("jms/cdi_hello_mdb_InQueue");
clientQueue = (jakarta.jms.Queue) ic
.lookup("jms/cdi_hello_mdb_OutQueue");
}
setup();
doTest(numMessages);
stat.addStatus(TEST_NAME, stat.PASS);
} catch (Throwable t) {
stat.addStatus(TEST_NAME, stat.FAIL);
t.printStackTrace();
} finally {
cleanup();
}
}
private void setup() throws Exception {
queueCon = queueConFactory.createQueueConnection();
queueSession = queueCon.createQueueSession(false,
Session.AUTO_ACKNOWLEDGE);
// Producer will be specified when actual msg is sent.
queueSender = queueSession.createSender(null);
queueReceiver = queueSession.createReceiver(clientQueue);
queueCon.start();
}
private void cleanup() {
try {
if (queueCon != null) {
queueCon.close();
}
} catch (Throwable t) {
t.printStackTrace();
}
}
private void sendMsgs(jakarta.jms.Queue queue, Message msg, int num)
throws JMSException {
for (int i = 0; i < num; i++) {
System.out.println("Sending message " + i + " to " + queue
+ " at time " + System.currentTimeMillis());
queueSender.send(queue, msg);
System.out.println("Sent message " + i + " to " + queue
+ " at time " + System.currentTimeMillis());
}
}
private void doTest(int num) throws Exception {
Destination dest = msgBeanQueue;
Message message = queueSession.createTextMessage("foo");
message.setBooleanProperty("flag", true);
message.setIntProperty("num", 2);
sendMsgs((jakarta.jms.Queue) dest, message, num);
System.out.println("remote bean:" + helloStatelessRemoteBean);
String response = helloStatelessRemoteBean.hello();
if (!response.equals("hello")){
System.out.println("Expected hello, but instead got" + response);
stat.addStatus(TEST_NAME, stat.FAIL);
}
System.out.println("Waiting for queue message");
Message recvdmessage = queueReceiver.receive(TIMEOUT);
if (recvdmessage != null) {
System.out.println("Received message : "
+ ((TextMessage) recvdmessage).getText());
} else {
System.out.println("timeout after " + TIMEOUT + " seconds");
throw new JMSException("timeout" + TIMEOUT + " seconds");
}
}
}