/*
* $Id: ClientBridgeTestCase.java 20297 2010-11-22 18:49:18Z aperepel $
* --------------------------------------------------------------------------------------
* 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.usecases.axis.clientbridge;
import org.mule.api.MuleMessage;
import org.mule.module.client.MuleClient;
import org.mule.tck.DynamicPortTestCase;
public class ClientBridgeTestCase extends DynamicPortTestCase
{
protected String getConfigResources()
{
return "org/mule/test/usecases/axis/clientbridge/client-mule-config.xml";
}
public void testBridgeVMToAxis() throws Exception
{
MuleClient client = new MuleClient(muleContext);
MuleMessage message = client.send("vm://complexRequest", new ComplexData("Foo", new Integer(84)), null);
assertNotNull(message);
assertTrue(message.getPayload() instanceof ComplexData);
ComplexData result = (ComplexData)message.getPayload();
assertEquals(new Integer(84), result.getSomeInteger());
assertEquals("Foo", result.getSomeString());
}
@Override
protected int getNumPortsToFind()
{
return 1;
}
}