Package org.apache.cactus.internal.client.connector.http

Source Code of org.apache.cactus.internal.client.connector.http.JmsProtocolHandler

/*
* ========================================================================
*
* 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.cactus.internal.client.connector.http;

import javax.jms.QueueSession;

import junit.framework.Test;

import org.apache.cactus.JmsRequest;
import org.apache.cactus.Request;
import org.apache.cactus.ServiceDefinition;
import org.apache.cactus.internal.client.jms.JmsClient;
import org.apache.cactus.internal.client.jms.JmsClientHelper;
import org.apache.cactus.internal.util.JUnitVersionHelper;
import org.apache.cactus.spi.client.ResponseObjectFactory;
import org.apache.cactus.spi.client.connector.ProtocolHandler;
import org.apache.cactus.spi.client.connector.ProtocolState;
import org.apache.cactus.util.JmsConfiguration;

/**
* The JMS protocol handler.
* @author ptahchiev
*/
public class JmsProtocolHandler implements ProtocolHandler
{
    /**
     * Cactus configuration data to use. In particular contains useful
     * configuration data for the HTTP connector (e.g. redirector URL).
     */
    private JmsConfiguration configuration;
   
    private QueueSession session;

    /**
     * @param theConfiguration configuration data
     */
    public JmsProtocolHandler(JmsConfiguration theConfiguration)
    {
        this.configuration = theConfiguration;
    }
   
    /**
     * A method that gets executed after the test execution.
     * @param theProtocolState the state of the protocol after the execution.
     */
    public void afterTest(ProtocolState theState) throws Exception
    {
        // We simply do nothing here.       
    }

    /**
     * A method to create a request object.
     * @return Request
     */
    public Request createRequest() {
        return new JmsRequest(session);
    }

    /**
     * TODO implement this method.
     */
    public ResponseObjectFactory createResponseObjectFactory(
            ProtocolState theState) {
        return null;
    }


    /**
     * The method that actually runs the tests.
     *
     * @param theDelegatedTest
     * @param theWrappedTest
     * @param theRequest
     */
    public ProtocolState runTest(Test theDelegatedTest, Test theWrappedTest,
            Request theRequest) throws Throwable
    {
        // Create the JMS Request object and creates necessary JMS objects
        // so that the user can get them in his beginXXX method, so that he
        // can create the message to send.
        JmsRequest request = new JmsRequest(
            JmsClientHelper.getQueueSession());

        // Add Cactus information to the JMS Message
        request.getMessage().setStringProperty(
            ServiceDefinition.CLASS_NAME_PARAM, theDelegatedTest.getClass().getName());
        request.getMessage().setStringProperty(
            ServiceDefinition.METHOD_NAME_PARAM, (getCurrentTestName(theDelegatedTest)));

        // Start the test
        new JmsClient().doTest(request);
       
        return new JmsProtocolState();
    }
   
   
    /**
     * Returns the configuration data.
     * @return configuration data
     */
    private JmsConfiguration getConfiguration()
    {
        return this.configuration;
    }
   
    /**
     * @param theDelegatedTest the Cactus test to execute
     * @return the name of the current test case being executed (it corresponds
     *         to the name of the test method with the "test" prefix removed.
     *         For example, for "testSomeTestOk" would return "someTestOk".
     */
    private String getCurrentTestName(Test theDelegatedTest)
    {
        return JUnitVersionHelper.getTestCaseName(theDelegatedTest);       
    }
}
TOP

Related Classes of org.apache.cactus.internal.client.connector.http.JmsProtocolHandler

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.