-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test Camel events as CDI events with multiple Camel contexts
- Loading branch information
1 parent
b2f2057
commit 9925be8
Showing
1 changed file
with
230 additions
and
0 deletions.
There are no files selected for viewing
230 changes: 230 additions & 0 deletions
230
envs/se/src/test/java/org/apache/camel/cdi/se/MultiContextEventNotifierTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,230 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.camel.cdi.se; | ||
|
||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.ProducerTemplate; | ||
import org.apache.camel.builder.RouteBuilder; | ||
import org.apache.camel.cdi.CdiCamelExtension; | ||
import org.apache.camel.cdi.ContextName; | ||
import org.apache.camel.cdi.Uri; | ||
import org.apache.camel.cdi.se.bean.DefaultCamelContextBean; | ||
import org.apache.camel.cdi.se.bean.FirstCamelContextBean; | ||
import org.apache.camel.cdi.se.bean.FirstCamelContextRoute; | ||
import org.apache.camel.cdi.se.bean.SecondCamelContextBean; | ||
import org.apache.camel.cdi.se.bean.UriEndpointRoute; | ||
import org.apache.camel.component.mock.MockEndpoint; | ||
import org.apache.camel.management.event.AbstractExchangeEvent; | ||
import org.apache.camel.management.event.CamelContextStartedEvent; | ||
import org.apache.camel.management.event.CamelContextStartingEvent; | ||
import org.apache.camel.management.event.ExchangeCompletedEvent; | ||
import org.apache.camel.management.event.ExchangeCreatedEvent; | ||
import org.apache.camel.management.event.ExchangeSendingEvent; | ||
import org.apache.camel.management.event.ExchangeSentEvent; | ||
import org.hamcrest.Matchers; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.arquillian.junit.InSequence; | ||
import org.jboss.shrinkwrap.api.Archive; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.asset.EmptyAsset; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import javax.enterprise.context.ApplicationScoped; | ||
import javax.enterprise.event.Observes; | ||
import javax.enterprise.inject.Produces; | ||
import javax.inject.Inject; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.apache.camel.cdi.se.expression.ExchangeExpression.fromCamelContext; | ||
import static org.apache.camel.component.mock.MockEndpoint.assertIsSatisfied; | ||
import static org.junit.Assert.assertThat; | ||
|
||
import static org.hamcrest.Matchers.everyItem; | ||
|
||
@RunWith(Arquillian.class) | ||
public class MultiContextEventNotifierTest { | ||
|
||
@Deployment | ||
public static Archive<?> deployment() { | ||
return ShrinkWrap.create(JavaArchive.class) | ||
// Camel CDI | ||
.addPackage(CdiCamelExtension.class.getPackage()) | ||
// Test class | ||
.addClass(DefaultCamelContextBean.class) | ||
.addClass(UriEndpointRoute.class) | ||
.addClass(FirstCamelContextBean.class) | ||
.addClass(FirstCamelContextRoute.class) | ||
.addClass(SecondCamelContextBean.class) | ||
// Bean archive deployment descriptor | ||
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml"); | ||
} | ||
|
||
@Inject | ||
// Support bean class injection for custom beans | ||
private DefaultCamelContextBean defaultCamelContext; | ||
|
||
@Inject @Uri("direct:inbound") | ||
private ProducerTemplate defaultInbound; | ||
|
||
@Inject @Uri("mock:outbound") | ||
private MockEndpoint defaultOutbound; | ||
|
||
@Produces @ApplicationScoped | ||
private List<Class> anyFiredEvents = new ArrayList<>(); | ||
|
||
|
||
@Inject @ContextName("first") | ||
private CamelContext firstCamelContext; | ||
|
||
@Inject @ContextName("first") @Uri("direct:inbound") | ||
private ProducerTemplate firstInbound; | ||
|
||
@Inject @ContextName("first") @Uri("mock:outbound") | ||
private MockEndpoint firstOutbound; | ||
|
||
@Produces @ApplicationScoped @ContextName("first") | ||
private List<Class> firstFiredEvents = new ArrayList<>(); | ||
|
||
|
||
@Inject @ContextName("second") | ||
private CamelContext secondCamelContext; | ||
|
||
@Inject @ContextName("second") @Uri("direct:inbound") | ||
private ProducerTemplate secondInbound; | ||
|
||
@Inject @ContextName("second") @Uri("mock:outbound") | ||
private MockEndpoint secondOutbound; | ||
|
||
@Produces @ApplicationScoped @ContextName("second") | ||
private List<Class> secondFiredEvents = new ArrayList<>(); | ||
|
||
|
||
private void onDefaultContextStartingEvent(@Observes CamelContextStartingEvent event, List<Class> events) { | ||
events.add(CamelContextStartingEvent.class); | ||
} | ||
|
||
private void onDefaultContextStartedEvent(@Observes CamelContextStartedEvent event, List<Class> events) { | ||
events.add(CamelContextStartedEvent.class); | ||
} | ||
|
||
private void onDefaultExchangeEvent(@Observes AbstractExchangeEvent event, List<Class> events) { | ||
events.add(event.getClass()); | ||
} | ||
|
||
|
||
private void onFirstContextStartingEvent(@Observes @ContextName("first") CamelContextStartingEvent event, @ContextName("first") List<Class> events) { | ||
events.add(CamelContextStartingEvent.class); | ||
} | ||
|
||
private void onFirstContextStartedEvent(@Observes @ContextName("first") CamelContextStartedEvent event, @ContextName("first") List<Class> events) { | ||
events.add(CamelContextStartedEvent.class); | ||
} | ||
|
||
private void onFirstExchangeEvent(@Observes @ContextName("first") AbstractExchangeEvent event, @ContextName("first") List<Class> events) { | ||
events.add(event.getClass()); | ||
} | ||
|
||
|
||
private void onSecondContextStartingEvent(@Observes @ContextName("second") CamelContextStartingEvent event, @ContextName("second") List<Class> events) { | ||
events.add(CamelContextStartingEvent.class); | ||
} | ||
|
||
private void onSecondContextStartedEvent(@Observes @ContextName("second") CamelContextStartedEvent event, @ContextName("second") List<Class> events) { | ||
events.add(CamelContextStartedEvent.class); | ||
} | ||
|
||
private void onSecondExchangeEvent(@Observes @ContextName("second") AbstractExchangeEvent event, @ContextName("second") List<Class> events) { | ||
events.add(event.getClass()); | ||
} | ||
|
||
|
||
@Test | ||
@InSequence(1) | ||
public void configureAndStartCamelContexts(List<Class> anyEvents, @ContextName("first") List<Class> firstEvents, @ContextName("second") List<Class> secondEvents) throws Exception { | ||
secondCamelContext.addRoutes(new RouteBuilder() { | ||
@Override | ||
public void configure() throws Exception { | ||
from("direct:inbound").setHeader("context").constant("second").to("mock:outbound"); | ||
} | ||
}); | ||
|
||
defaultCamelContext.start(); | ||
firstCamelContext.start(); | ||
secondCamelContext.start(); | ||
|
||
assertThat("Events fired for any context are incorrect", anyEvents, everyItem(Matchers.<Class>isOneOf(CamelContextStartingEvent.class, CamelContextStartedEvent.class))); | ||
assertThat("Events fired for first context are incorrect", firstEvents, Matchers.<Class>contains(CamelContextStartingEvent.class, CamelContextStartedEvent.class)); | ||
assertThat("Events fired for second context are incorrect", secondEvents, Matchers.<Class>contains(CamelContextStartingEvent.class, CamelContextStartedEvent.class)); | ||
} | ||
|
||
@Test | ||
@InSequence(2) | ||
public void sendMessageToDefaultCamelContextInbound(List<Class> events) throws InterruptedException { | ||
defaultOutbound.expectedMessageCount(1); | ||
defaultOutbound.expectedBodiesReceived("test-default"); | ||
defaultOutbound.message(0).exchange().matches(fromCamelContext("camel-cdi")); | ||
|
||
defaultInbound.sendBody("test-default"); | ||
|
||
assertIsSatisfied(2L, TimeUnit.SECONDS, defaultOutbound); | ||
|
||
assertThat("Events fired are incorrect", events, Matchers.<Class>contains(CamelContextStartingEvent.class, CamelContextStartedEvent.class, CamelContextStartingEvent.class, CamelContextStartedEvent.class, CamelContextStartingEvent.class, CamelContextStartedEvent.class, ExchangeSendingEvent.class, ExchangeCreatedEvent.class, ExchangeSendingEvent.class, ExchangeSentEvent.class, ExchangeCompletedEvent.class, ExchangeSentEvent.class)); | ||
} | ||
|
||
@Test | ||
@InSequence(3) | ||
public void sendMessageToFirstCamelContextInbound(@ContextName("first") List<Class> events) throws InterruptedException { | ||
firstOutbound.expectedMessageCount(1); | ||
firstOutbound.expectedBodiesReceived("test-first"); | ||
firstOutbound.expectedHeaderReceived("context", "first"); | ||
firstOutbound.message(0).exchange().matches(fromCamelContext("first")); | ||
|
||
firstInbound.sendBody("test-first"); | ||
|
||
assertIsSatisfied(2L, TimeUnit.SECONDS, firstOutbound); | ||
|
||
assertThat("Events fired are incorrect", events, Matchers.<Class>contains(CamelContextStartingEvent.class, CamelContextStartedEvent.class, ExchangeSendingEvent.class, ExchangeCreatedEvent.class, ExchangeSendingEvent.class, ExchangeSentEvent.class, ExchangeCompletedEvent.class, ExchangeSentEvent.class)); | ||
} | ||
|
||
@Test | ||
@InSequence(4) | ||
public void sendMessageToSecondCamelContextInbound(@ContextName("second") List<Class> events) throws InterruptedException { | ||
secondOutbound.expectedMessageCount(1); | ||
secondOutbound.expectedBodiesReceived("test-second"); | ||
secondOutbound.expectedHeaderReceived("context", "second"); | ||
secondOutbound.message(0).exchange().matches(fromCamelContext("second")); | ||
|
||
secondInbound.sendBody("test-second"); | ||
|
||
assertIsSatisfied(2L, TimeUnit.SECONDS, secondOutbound); | ||
|
||
assertThat("Events fired are incorrect", events, Matchers.<Class>contains(CamelContextStartingEvent.class, CamelContextStartedEvent.class, ExchangeSendingEvent.class, ExchangeCreatedEvent.class, ExchangeSendingEvent.class, ExchangeSentEvent.class, ExchangeCompletedEvent.class, ExchangeSentEvent.class)); | ||
} | ||
|
||
@Test | ||
@InSequence(5) | ||
public void stopCamelContexts() throws Exception { | ||
defaultCamelContext.stop(); | ||
firstCamelContext.stop(); | ||
secondCamelContext.stop(); | ||
} | ||
} |