Java API for customizing routes to consumer actors

This commit is contained in:
Martin Krasser 2010-11-08 14:13:50 +01:00
parent 3962c56ff7
commit 1913b32738
5 changed files with 92 additions and 3 deletions

View file

@ -0,0 +1,42 @@
package akka.camel;
import akka.actor.ActorRegistry;
import akka.actor.UntypedActor;
import akka.japi.SideEffect;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import static akka.camel.CamelContextManager.*;
import static akka.camel.CamelServiceManager.*;
import static org.junit.Assert.*;
/**
* @author Martin Krasser
*/
public class ConsumerJavaTestBase {
@BeforeClass
public static void setUpBeforeClass() {
startCamelService();
}
@AfterClass
public static void tearDownAfterClass() {
stopCamelService();
ActorRegistry.shutdownAll();
}
@Test
public void shouldHandleExceptionAndGenerateCustomResponse() {
getMandatoryService().awaitEndpointActivation(1, new SideEffect() {
public void apply() {
UntypedActor.actorOf(SampleErrorHandlingConsumer.class).start();
}
});
String result = getMandatoryTemplate().requestBody("direct:error-handler-test-java", "hello", String.class);
assertEquals("error: hello", result);
}
}