/*
* $Id: NoArgsCallWrapperFunctionalTestCase.java 19191 2010-08-25 21:05:23Z tcarlson $
* --------------------------------------------------------------------------------------
* 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;
import org.mule.api.MuleMessage;
import org.mule.module.client.MuleClient;
import org.mule.tck.FunctionalTestCase;
/**
* This test has been re-written to use entry point resolvers.
*/
public class NoArgsCallWrapperFunctionalTestCase extends FunctionalTestCase
{
private static final int RECEIVE_TIMEOUT = 5000;
protected String getConfigResources()
{
return "no-args-call-wrapper-config.xml";
}
public void testNoArgsCallWrapper() throws Exception
{
MuleClient client = new MuleClient(muleContext);
client.dispatch("vm://invoke", "test", null);
MuleMessage reply = client.request("vm://out", RECEIVE_TIMEOUT);
assertNotNull(reply);
assertNull(reply.getExceptionPayload());
assertEquals("Just an apple.", reply.getPayload());
}
public void testWithInjectedDelegate() throws Exception
{
MuleClient client = new MuleClient(muleContext);
client.dispatch("vm://invokeWithInjected", "test", null);
MuleMessage reply = client.request("vm://outWithInjected", RECEIVE_TIMEOUT);
assertNotNull(reply);
assertNull(reply.getExceptionPayload());
// same as original input
assertEquals("test", reply.getPayload());
}
}