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

org.soitoolkit.commons.mule.test.AbstractTestConsumer Maven / Gradle / Ivy

There is a newer version: 2.0.0-M6
Show newest version
/* 
 * Licensed to the soi-toolkit project under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The soi-toolkit project 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.soitoolkit.commons.mule.test;

import java.net.MalformedURLException;
import java.net.URL;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Base class for test consumer of services based on the servlet-transport
 * 
 * @author Magnus Larsson
 *
 */
abstract public class AbstractTestConsumer {

	private final static Logger log = LoggerFactory.getLogger(AbstractTestConsumer.class);

	/**
     * Address based on usage of the servlet-transport
     * 
     * TODO: Do we need this method here? MuleServers already have this code... Should it be moved to another place not related to test-consumers?
     * 
     * @param serviceUriPropertyName
     * @return
     */
    public static String getAddress(String uri, int httpPort, String ctxPath, String servletUri) {
	    String url = "http://localhost" + ":" + httpPort + ctxPath + servletUri + "/" + uri;
	    log.info("URL: {}", url);
	    return url;    	
    }

    private static final String CLASSPATH_PROTOCOL = "classpath:";
    private static final int    CLASSPATH_PROTOCOL_LEN = CLASSPATH_PROTOCOL.length();
    protected URL createEndpointUrlFromServiceAddress(String serviceAddress) {
        try {
        	// TODO: Could be more elegant according to: http://stackoverflow.com/questions/861500/url-to-load-resources-from-the-classpath-in-java
        	if (serviceAddress.startsWith(CLASSPATH_PROTOCOL)) {
        		serviceAddress = serviceAddress.substring(CLASSPATH_PROTOCOL_LEN);
        		return getClass().getResource(serviceAddress);
        	} else {
        		return new URL(serviceAddress + "?wsdl");
        	}
        } catch (MalformedURLException e) {
            throw new RuntimeException("Malformed URL Exception: " + e.getMessage());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy