All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mockrunner.mock.jms.MockTopicConnection Maven / Gradle / Ivy

Go to download

Mockrunner is a lightweight framework for unit testing applications in the J2EE environment. It supports servlets, filters, tag classes and Struts actions. It includes a JDBC a JMS and a JCA test framework and can be used to test EJB based applications.

The newest version!
package com.mockrunner.mock.jms;

import java.util.List;

import javax.jms.ConnectionConsumer;
import javax.jms.JMSException;
import javax.jms.ServerSessionPool;
import javax.jms.Session;
import javax.jms.Topic;
import javax.jms.TopicConnection;
import javax.jms.TopicSession;

import com.mockrunner.jms.ConfigurationManager;
import com.mockrunner.jms.DestinationManager;

/**
 * Mock implementation of JMS TopicConnection.
 * Please note: The interfaces ConnectionConsumer,
 * ServerSessionPool and ServerSession
 * are not meant for application use. Mockrunner provides very
 * simple mock implementations but usually you won't need them.
 */
public class MockTopicConnection extends MockConnection implements TopicConnection
{
    public MockTopicConnection(DestinationManager destinationManager, ConfigurationManager configurationManager)
    {
        super(destinationManager, configurationManager);
    }
    
    /**
     * Returns the list of {@link MockTopicSession} objects that were created 
     * with {@link #createTopicSession}.
     * @return the list
     */
    public List getTopicSessionList()
    {
        return super.getSessionList();
    }

    /**
     * Returns a {@link MockTopicSession} that was created with
     * {@link #createTopicSession}. If there's no such
     * {@link MockTopicSession}, null is returned.
     * @param index the index of the session object
     * @return the session object
     */
    public MockTopicSession getTopicSession(int index)
    {
        return (MockTopicSession)super.getSession(index);
    }
    
    public Session createSession(boolean transacted, int acknowledgeMode) throws JMSException
    {
        return createTopicSession(transacted, acknowledgeMode);
    }

    public TopicSession createTopicSession(boolean transacted, int acknowledgeMode) throws JMSException
    {
        throwJMSException();
        MockTopicSession session = new MockTopicSession(this, transacted, acknowledgeMode);
        sessions().add(session);
        return session;
    }

    public ConnectionConsumer createConnectionConsumer(Topic topic, String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException
    {
        return super.createConnectionConsumer(topic, messageSelector, sessionPool, maxMessages);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy