Package org.mule.jbi

Source Code of org.mule.jbi.AbstractFunctionalTestCase

/*
* Copyright 2005 SymphonySoft Limited. All rights reserved.
* http://www.symphonysoft.com
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* ------------------------------------------------------------------------------------------------------
* $Id: AbstractFunctionalTestCase.java 2184 2006-06-04 23:36:19Z holger $
* $Revision: 2184 $
* $Date: 2006-06-05 07:36:19 +0800 (周一, 2006-06-05) $
*/
package org.mule.jbi;

import junit.framework.TestCase;
import org.mule.jbi.framework.JbiContainerImpl;
import org.mule.jbi.util.IOUtils;

import javax.management.ObjectName;
import java.io.File;
import java.net.URL;

public abstract class AbstractFunctionalTestCase extends TestCase {

  protected JbiContainer container;
 
  protected void setUp() throws Exception {
    IOUtils.deleteFile(new File("target/.mule-jbi"));
    JbiContainerImpl jbi = new JbiContainerImpl();
    jbi.setWorkingDir(new File("target/.mule-jbi"));
    jbi.start();
    container = jbi;
  }
 
  protected void installLibrary(String file) throws Exception {
   
    URL url = Thread.currentThread().getContextClassLoader().getResource(file);
        assertNotNull(url);
    ObjectName serviceON = container.createMBeanName(null, "service", "install");
    String result = (String) container.getMBeanServer().invoke(serviceON, "installSharedLibrary", new Object[] { url.toString() }, new String[] { "java.lang.String" });
    assertNotNull(result);
  }
 
  protected void installComponent(String file) throws Exception {
    ObjectName serviceON = container.createMBeanName(null, "service", "install");
    URL url = Thread.currentThread().getContextClassLoader().getResource(file);
    assertNotNull(url);
        ObjectName installON = (ObjectName) container.getMBeanServer().invoke(serviceON, "loadNewInstaller", new Object[] { url.toString() }, new String[] { "java.lang.String" });
    assertNotNull(installON);
    ObjectName lifecycleON = (ObjectName) container.getMBeanServer().invoke(installON, "install", null, null);
    assertNotNull(lifecycleON);
    container.getMBeanServer().invoke(lifecycleON, "start", null, null);
  }
 
  protected void deployAssembly(String file) throws Exception {
    URL url = Thread.currentThread().getContextClassLoader().getResource(file);
        assertNotNull(url);
    ObjectName serviceON = container.createMBeanName(null, "service", "deploy");
    String result = (String) container.getMBeanServer().invoke(serviceON, "deploy", new Object[] { url.toString() }, new String[] { "java.lang.String" });
    System.err.println(result);
  }
 
}
TOP

Related Classes of org.mule.jbi.AbstractFunctionalTestCase

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.