Package org.mule.test.integration

Source Code of org.mule.test.integration.ServerTools

/*
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.test.integration;

import org.mule.transport.file.filters.FilenameWildcardFilter;
import org.mule.util.FileUtils;

import java.io.File;

import javax.jms.JMSException;

import org.apache.activemq.ActiveMQConnection;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DefaultLogger;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.taskdefs.ExecuteWatchdog;
import org.apache.tools.ant.taskdefs.Java;
import org.apache.tools.ant.types.Environment;
import org.apache.tools.ant.types.Path;
import org.apache.tools.ant.util.Watchdog;

/**
* Will start external test servers needed for the integration tests
*/

public class ServerTools
{
    public static final String ACTIVEMQ_HOME = "org.activemq.home";

    private static KillableWatchdog activemq;
    private static ActiveMQConnectionFactory embeddedFactory = null;

    public static void launchActiveMq()
    {
        launchActiveMq(ActiveMQConnection.DEFAULT_BROKER_URL);
    }

    public static ActiveMQConnectionFactory launchEmbeddedActiveMq() throws JMSException
    {
        return new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false&broker.useJmx=false");
    }

    public static void killEmbeddedActiveMq()
    {
        if (embeddedFactory != null)
        {
         /*   try
            {
                embeddedFactory.stop();
            }
            catch (JMSException e)
            {
                throw new RuntimeException("Could not stop embedded ActiveMQ!", e);
            }*/
            embeddedFactory = null;
        }
    }

    public static void launchActiveMq(String brokerUrl)
    {
        String activeMqHome = System.getProperty(ACTIVEMQ_HOME);
        if (activeMqHome == null)
        {
            throw new IllegalArgumentException(
                "You must set the "
                                + ACTIVEMQ_HOME
                                + " system property to the root path of an ActiveMq distribution (v3.0 and greater) before running these tests");
        }
        Project project = new Project();
        DefaultLogger consoleLogger = new DefaultLogger();
        consoleLogger.setErrorPrintStream(System.err);
        consoleLogger.setOutputPrintStream(System.out);
        consoleLogger.setMessageOutputLevel(Project.MSG_INFO);
        project.addBuildListener(consoleLogger);
        Path path = new Path(project);
        File[] jars = FileUtils.newFile(activeMqHome + "\\lib").listFiles(new FilenameWildcardFilter("*.jar"));
        path.add(new Path(project, FileUtils.newFile(activeMqHome, "\\conf").getAbsolutePath()));
        for (int i = 0; i < jars.length; i++)
        {
            path.add(new Path(project, jars[i].getAbsolutePath()));
        }
        jars = FileUtils.newFile(activeMqHome + "\\lib\\optional").listFiles(new FilenameWildcardFilter("*.jar"));
        for (int i = 0; i < jars.length; i++)
        {
            path.add(new Path(project, jars[i].getAbsolutePath()));
        }
        final JavaTask java = new JavaTask();
        java.setProject(project);
        java.setClasspath(path);
        if (activeMqHome.indexOf("4.") > -1)
        {
            java.setClassname("org.apache.activemq.broker.Main");
        }
        else
        {
            java.setClassname("org.activemq.broker.impl.Main");
        }
        java.setArgs(brokerUrl);
        java.setFork(true);
        java.setDir(FileUtils.newFile(activeMqHome));
        java.addSysproperty(createVar("activemq.home", FileUtils.newFile(activeMqHome).getAbsolutePath()));
        java.addSysproperty(createVar("derby.system.home", FileUtils.newFile(activeMqHome, "\\var").getAbsolutePath()));
        java.createWatchdog();
        new Thread()
        {
            public void run()
            {
                java.execute();
            }
        }.start();
        activemq = java.watchDog;
    }

    public static void killActiveMq()
    {
        try
        {
            if (activemq != null)
            {
                activemq.kill();
            }
        }
        catch (Throwable e)
        {
            e.printStackTrace();
        }
    }

    static class JavaTask extends Java
    {
        public KillableWatchdog watchDog;
        private Long timeout = new Long(Long.MAX_VALUE);

        public void setTimeout(Long value)
        {
            this.timeout = value;
            super.setTimeout(value);
        }

        protected ExecuteWatchdog createWatchdog() throws BuildException
        {
            if (watchDog == null)
            {
                watchDog = new KillableWatchdog(timeout != null ? timeout.longValue() : 0);
            }
            return watchDog;
        }

    }

    static class KillableWatchdog extends ExecuteWatchdog
    {
        public KillableWatchdog(long timeout)
        {
            super(timeout);
        }

        public void timeoutOccured(Watchdog w)
        {
            // ignore
        }

        public synchronized void start(Process process)
        {
            super.start(process);
        }

        public void kill()
        {
            super.timeoutOccured(null);
        }
    }

    static Environment.Variable createVar(String name, String value)
    {
        Environment.Variable var = new Environment.Variable();
        var.setKey(name);
        var.setValue(value);
        return var;
    }

}
TOP

Related Classes of org.mule.test.integration.ServerTools

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.