/*
* $Id: SoapAttachmentsFunctionalTestCase.java 22156 2011-06-08 21:36:30Z dfeist $
* --------------------------------------------------------------------------------------
* 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.transport.soap.axis.functional;
import org.mule.DefaultMuleEvent;
import org.mule.DefaultMuleMessage;
import org.mule.api.MuleMessage;
import org.mule.api.endpoint.OutboundEndpoint;
import org.mule.message.ds.StringDataSource;
import org.mule.session.DefaultMuleSession;
import org.mule.tck.DynamicPortTestCase;
import org.mule.transport.AbstractConnector;
import org.mule.transport.soap.axis.AxisMessageDispatcher;
import javax.activation.DataHandler;
public class SoapAttachmentsFunctionalTestCase extends DynamicPortTestCase
{
private static final int SEND_COUNT = 5;
private int callbackCount = 0;
protected String getConfigResources()
{
return "axis-soap-attachments.xml";
}
public void testSend() throws Exception
{
sendTestData(SEND_COUNT);
assertEquals(SEND_COUNT, callbackCount);
}
protected void sendTestData(int iterations) throws Exception
{
OutboundEndpoint ep = muleContext.getRegistry().lookupEndpointBuilder("client").buildOutboundEndpoint();
AxisMessageDispatcher client = new AxisMessageDispatcher(ep);
client.initialise();
for (int i = 0; i < iterations; i++)
{
MuleMessage msg = new DefaultMuleMessage("testPayload", muleContext);
msg.addOutboundAttachment("testAttachment", new DataHandler(new StringDataSource("foo")));
DefaultMuleSession session = new DefaultMuleSession(msg, ((AbstractConnector) ep.getConnector()).getSessionHandler(), muleContext);
DefaultMuleEvent event = new DefaultMuleEvent(msg, getTestInboundEndpoint("test://test"), session);
MuleMessage result = client.process(event).getMessage();
assertNotNull(result);
assertNotNull(result.getPayload());
assertEquals(result.getPayloadAsString(), "Done");
callbackCount++;
}
}
@Override
protected int getNumPortsToFind()
{
return 1;
}
}