/** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.test.mdb; import org.junit.Assert; import junit.framework.AssertionFailedError; import org.apache.openejb.test.TestFailureException; import org.apache.openejb.test.entity.bmp.BasicBmpHome; import org.apache.openejb.test.entity.bmp.BasicBmpObject; import org.apache.openejb.test.stateful.BasicStatefulBusinessLocal; import org.apache.openejb.test.stateful.BasicStatefulBusinessRemote; import org.apache.openejb.test.stateful.BasicStatefulHome; import org.apache.openejb.test.stateful.BasicStatefulObject; import org.apache.openejb.test.stateless.BasicStatelessBusinessLocal; import org.apache.openejb.test.stateless.BasicStatelessBusinessRemote; import org.apache.openejb.test.stateless.BasicStatelessHome; import org.apache.openejb.test.stateless.BasicStatelessObject; import javax.ejb.EJBContext; import javax.ejb.EJBException; import javax.ejb.MessageDrivenBean; import javax.ejb.MessageDrivenContext; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.MessageListener; import javax.jms.MessageProducer; import javax.jms.QueueConnectionFactory; import javax.jms.Session; import javax.jms.Topic; import javax.jms.TopicConnectionFactory; import javax.naming.InitialContext; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.sql.DataSource; public class ContextLookupMdbBean implements EncMdbObject, MessageDrivenBean, MessageListener { private MessageDrivenContext mdbContext = null; private MdbInvoker mdbInvoker; @Override public void setMessageDrivenContext(final MessageDrivenContext ctx) throws EJBException { this.mdbContext = ctx; try { final ConnectionFactory connectionFactory = (ConnectionFactory) new InitialContext().lookup("java:comp/env/jms"); mdbInvoker = new MdbInvoker(connectionFactory, this); } catch (final Exception e) { throw new EJBException(e); } } @Override public void onMessage(final Message message) { try { // System.out.println("\n" + // "***************************************\n" + // "Got message: " + message + "\n" + // "***************************************\n\n"); try { message.acknowledge(); } catch (final JMSException e) { e.printStackTrace(); } mdbInvoker.onMessage(message); } catch (final Throwable e) { e.printStackTrace(); } } @Override public void lookupEntityBean() throws TestFailureException { try { try { final BasicBmpHome home = (BasicBmpHome) mdbContext.lookup("stateless/beanReferences/bmp_entity"); Assert.assertNotNull("The EJBHome looked up is null", home); final BasicBmpObject object = home.createObject("Enc Bean"); Assert.assertNotNull("The EJBObject is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatefulBean() throws TestFailureException { try { try { final BasicStatefulHome home = (BasicStatefulHome) mdbContext.lookup("stateless/beanReferences/stateful"); Assert.assertNotNull("The EJBHome looked up is null", home); final BasicStatefulObject object = home.createObject("Enc Bean"); Assert.assertNotNull("The EJBObject is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatelessBean() throws TestFailureException { try { try { final BasicStatelessHome home = (BasicStatelessHome) mdbContext.lookup("stateless/beanReferences/stateless"); Assert.assertNotNull("The EJBHome looked up is null", home); final BasicStatelessObject object = home.createObject(); Assert.assertNotNull("The EJBObject is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatelessBusinessLocal() throws TestFailureException { try { try { final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) mdbContext.lookup("stateless/beanReferences/stateless-business-local"); Assert.assertNotNull("The EJB BusinessLocal is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatelessBusinessRemote() throws TestFailureException { try { try { final BasicStatelessBusinessRemote object = (BasicStatelessBusinessRemote) mdbContext.lookup("stateless/beanReferences/stateless-business-remote"); Assert.assertNotNull("The EJB BusinessRemote is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatefulBusinessLocal() throws TestFailureException { try { try { final BasicStatefulBusinessLocal object = (BasicStatefulBusinessLocal) mdbContext.lookup("stateless/beanReferences/stateful-business-local"); Assert.assertNotNull("The EJB BusinessLocal is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStatefulBusinessRemote() throws TestFailureException { try { try { final BasicStatefulBusinessRemote object = (BasicStatefulBusinessRemote) mdbContext.lookup("stateless/beanReferences/stateful-business-remote"); Assert.assertNotNull("The EJB BusinessRemote is null", object); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupStringEntry() throws TestFailureException { try { try { final String expected = "1"; final String actual = (String) mdbContext.lookup("stateless/references/String"); Assert.assertNotNull("The String looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupDoubleEntry() throws TestFailureException { try { try { final Double expected = 1.0D; final Double actual = (Double) mdbContext.lookup("stateless/references/Double"); Assert.assertNotNull("The Double looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupLongEntry() throws TestFailureException { try { try { final Long expected = 1L; final Long actual = (Long) mdbContext.lookup("stateless/references/Long"); Assert.assertNotNull("The Long looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupFloatEntry() throws TestFailureException { try { try { final Float expected = 1.0F; final Float actual = (Float) mdbContext.lookup("stateless/references/Float"); Assert.assertNotNull("The Float looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupIntegerEntry() throws TestFailureException { try { try { final Integer expected = 1; final Integer actual = (Integer) mdbContext.lookup("stateless/references/Integer"); Assert.assertNotNull("The Integer looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupShortEntry() throws TestFailureException { try { try { final Short expected = (short) 1; final Short actual = (Short) mdbContext.lookup("stateless/references/Short"); Assert.assertNotNull("The Short looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupBooleanEntry() throws TestFailureException { try { try { final Boolean expected = true; final Boolean actual = (Boolean) mdbContext.lookup("stateless/references/Boolean"); Assert.assertNotNull("The Boolean looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupByteEntry() throws TestFailureException { try { try { final Byte expected = (byte) 1; final Byte actual = (Byte) mdbContext.lookup("stateless/references/Byte"); Assert.assertNotNull("The Byte looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupCharacterEntry() throws TestFailureException { try { try { final Character expected = 'D'; final Character actual = (Character) mdbContext.lookup("stateless/references/Character"); Assert.assertNotNull("The Character looked up is null", actual); Assert.assertEquals(expected, actual); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupResource() throws TestFailureException { try { try { final Object obj = mdbContext.lookup("datasource"); Assert.assertNotNull("The DataSource is null", obj); Assert.assertTrue("Not an instance of DataSource", obj instanceof DataSource); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupJMSConnectionFactory() throws TestFailureException { try { try { Object obj = mdbContext.lookup("jms"); Assert.assertNotNull("The JMS ConnectionFactory is null", obj); Assert.assertTrue("Not an instance of ConnectionFactory", obj instanceof ConnectionFactory); final ConnectionFactory connectionFactory = (ConnectionFactory) obj; testJmsConnection(connectionFactory.createConnection()); obj = mdbContext.lookup("TopicCF"); Assert.assertNotNull("The JMS TopicConnectionFactory is null", obj); Assert.assertTrue("Not an instance of TopicConnectionFactory", obj instanceof TopicConnectionFactory); final TopicConnectionFactory topicConnectionFactory = (TopicConnectionFactory) obj; testJmsConnection(topicConnectionFactory.createConnection()); obj = mdbContext.lookup("QueueCF"); Assert.assertNotNull("The JMS QueueConnectionFactory is null", obj); Assert.assertTrue("Not an instance of QueueConnectionFactory", obj instanceof QueueConnectionFactory); final QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory) obj; testJmsConnection(queueConnectionFactory.createConnection()); } catch (final Exception e) { e.printStackTrace(); Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } private void testJmsConnection(final Connection connection) throws JMSException { final Session session = connection.createSession(false, Session.DUPS_OK_ACKNOWLEDGE); final Topic topic = session.createTopic("test"); final MessageProducer producer = session.createProducer(topic); producer.send(session.createMessage()); producer.close(); session.close(); connection.close(); } @Override public void lookupPersistenceUnit() throws TestFailureException { try { try { final EntityManagerFactory emf = (EntityManagerFactory) mdbContext.lookup("persistence/TestUnit"); Assert.assertNotNull("The EntityManagerFactory is null", emf); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupPersistenceContext() throws TestFailureException { try { try { final EntityManager em = (EntityManager) mdbContext.lookup("persistence/TestContext"); Assert.assertNotNull("The EntityManager is null", em); // call a do nothing method to assure entity manager actually exists em.getFlushMode(); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } @Override public void lookupMessageDrivenContext() throws TestFailureException { try { try { final InitialContext ctx = new InitialContext(); Assert.assertNotNull("The InitialContext is null", ctx); // lookup in enc final MessageDrivenContext sctx = (MessageDrivenContext) ctx.lookup("java:comp/env/mdbcontext"); Assert.assertNotNull("The MessageDrivenContext got from java:comp/env/mdbcontext is null", sctx); // lookup using global name final EJBContext ejbCtx = (EJBContext) ctx.lookup("java:comp/EJBContext"); Assert.assertNotNull("The MessageDrivenContext got from java:comp/EJBContext is null ", ejbCtx); // verify context was set via legacy set method Assert.assertNotNull("The MessageDrivenContext is null from setter method", mdbContext); } catch (final Exception e) { Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage()); } } catch (final AssertionFailedError afe) { throw new TestFailureException(afe); } } public void ejbCreate() throws javax.ejb.CreateException { } @Override public void ejbRemove() throws EJBException { if (null != mdbInvoker) { mdbInvoker.destroy(); } } }