/*
* $Id: MuleAdminTestCase.java 20265 2010-11-18 22:30:54Z dzapata $
* --------------------------------------------------------------------------------------
* 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.spring;
import org.mule.api.MuleMessage;
import org.mule.module.client.MuleClient;
import org.mule.module.client.RemoteDispatcher;
import org.mule.tck.DynamicPortTestCase;
public class MuleAdminTestCase extends DynamicPortTestCase
{
protected String getConfigResources()
{
return "org/mule/test/integration/spring/mule-admin-spring.xml";
}
public void testMuleAdminChannelInSpring() throws Exception
{
MuleClient mc = new MuleClient(muleContext);
RemoteDispatcher rd = mc.getRemoteDispatcher("tcp://localhost:" + getPorts().get(0));
MuleMessage result = rd.sendToRemoteComponent("appleComponent", "string", null);
assertNotNull(result);
}
@Override
protected int getNumPortsToFind()
{
return 1;
}
}