Package org.apache.camel.itest.jms

Source Code of org.apache.camel.itest.jms.JmsMediumQueuePerformanceTest

/**
* 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.camel.itest.jms;

import javax.jms.ConnectionFactory;
import javax.naming.Context;

import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.camel.component.jms.JmsComponent;
import org.apache.camel.util.jndi.JndiContext;
import org.junit.Test;

/**
* @version
*/
public class JmsMediumQueuePerformanceTest extends JmsPerformanceTest {
    protected int mediumQueueCount = 1000;

    @Override
    protected String getActiveMQFileName() {
        // using different port number to avoid clash
        return "activemq8.xml";
    }

    @Override
    protected Context createJndiContext() throws Exception {
        JndiContext answer = new JndiContext();
        answer.bind("myBean", myBean);

        // add ActiveMQ client
        ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://broker8");
        answer.bind("activemq", JmsComponent.jmsComponentAutoAcknowledge(connectionFactory));

        return answer;
    }

    @Override
    @Test
    public void testSendingAndReceivingMessages() throws Exception {
        int expected = mediumQueueCount + messageCount;
        setExpectedMessageCount(expected);

        System.out.println("Sending " + mediumQueueCount + " messages first");
        sendLoop(0, mediumQueueCount);
        System.out.println("Sent!");

        Thread.sleep(2000);

        System.out.println("Now testing!");
        timedSendLoop(mediumQueueCount, expected);

        assertExpectedMessagesReceived();
    }
}
TOP

Related Classes of org.apache.camel.itest.jms.JmsMediumQueuePerformanceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.