/*
* $Id: SslFunctionalTestCase.java 20770 2010-12-16 02:29:44Z 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.transport.ssl;
import org.mule.api.MuleMessage;
import org.mule.api.service.Service;
import org.mule.module.client.MuleClient;
import org.mule.tck.DynamicPortTestCase;
import org.mule.tck.functional.CounterCallback;
import org.mule.tck.functional.EventCallback;
import org.mule.tck.functional.FunctionalTestComponent;
import org.mule.tck.testmodels.mule.TestSedaService;
public class SslFunctionalTestCase extends DynamicPortTestCase
{
private static int NUM_MESSAGES = 100;
protected String getConfigResources()
{
return "ssl-functional-test.xml";
}
public void testSend() throws Exception
{
MuleClient client = new MuleClient(muleContext);
MuleMessage result = client.send("sendEndpoint", TEST_MESSAGE, null);
assertEquals(TEST_MESSAGE + " Received", result.getPayloadAsString());
}
public void testSendMany() throws Exception
{
MuleClient client = new MuleClient(muleContext);
for (int i = 0; i < NUM_MESSAGES; ++i)
{
MuleMessage result = client.send("sendManyEndpoint", TEST_MESSAGE, null);
assertEquals(TEST_MESSAGE + " Received", result.getPayloadAsString());
}
Service c = muleContext.getRegistry().lookupService("testComponent2");
assertTrue("Service should be a TestSedaService", c instanceof TestSedaService);
Object ftc = getComponent(c);
assertNotNull("Functional Test Service not found in the model.", ftc);
assertTrue("Service should be a FunctionalTestComponent", ftc instanceof FunctionalTestComponent);
EventCallback cc = ((FunctionalTestComponent) ftc).getEventCallback();
assertNotNull("EventCallback is null", cc);
assertTrue("EventCallback should be a CounterCallback", cc instanceof CounterCallback);
assertEquals(NUM_MESSAGES, ((CounterCallback) cc).getCallbackCount());
}
public void testAsynchronous() throws Exception
{
MuleClient client = new MuleClient(muleContext);
client.dispatch("asyncEndpoint", TEST_MESSAGE, null);
// MULE-2757
Thread.sleep(100);
MuleMessage response = client.request("asyncEndpoint", 5000);
assertNotNull("Response is null", response);
assertEquals(TEST_MESSAGE + " Received Async", response.getPayloadAsString());
}
@Override
protected int getNumPortsToFind()
{
return 3;
}
}