Skip to content

Commit

Permalink
[resolves #2312] Add test coverage for direct-vm endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Nov 16, 2017
1 parent 509ff9f commit 7db7542
Show file tree
Hide file tree
Showing 4 changed files with 214 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
* #%L
* Wildfly Camel :: Testsuite
* %%
* Copyright (C) 2013 - 2017 RedHat
* %%
* Licensed 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.
* #L%
*/
package org.wildfly.camel.test.directvm;

import org.apache.camel.CamelContext;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.impl.DefaultCamelContext;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.wildfly.extension.camel.CamelAware;

@CamelAware
@RunWith(Arquillian.class)
public class DirectVMIntegrationTest {

@Deployment
public static JavaArchive createDeployment() {
return ShrinkWrap.create(JavaArchive.class, "camel-direct-vm-tests.jar");
}

@Test
public void testDirectVMComponent() throws Exception {
CamelContext camelctxA = new DefaultCamelContext();
camelctxA.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.to("direct-vm:hello");
}
});

CamelContext camelctxB = new DefaultCamelContext();
camelctxB.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct-vm:hello")
.transform(simple("Hello ${body}"))
.to("mock:result");
}
});

MockEndpoint mockEndpoint = camelctxB.getEndpoint("mock:result", MockEndpoint.class);
mockEndpoint.expectedBodiesReceived("Hello Kermit");

camelctxA.start();
camelctxB.start();
try {
ProducerTemplate template = camelctxA.createProducerTemplate();
template.sendBody("direct:start", "Kermit");

mockEndpoint.assertIsSatisfied();
} finally {
camelctxB.stop();
camelctxA.stop();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* #%L
* Wildfly Camel :: Testsuite
* %%
* Copyright (C) 2013 - 2017 RedHat
* %%
* Licensed 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.
* #L%
*/
package org.wildfly.camel.test.directvm;

import org.apache.camel.CamelContext;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.ServiceStatus;
import org.apache.camel.component.mock.MockEndpoint;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.wildfly.extension.camel.CamelAware;
import org.wildfly.extension.camel.CamelContextRegistry;

@CamelAware
@RunWith(Arquillian.class)
public class DirectVMSpringIntegrationTest {

@ArquillianResource
private CamelContextRegistry contextRegistry;

@Deployment
public static JavaArchive createDeployment() {
return ShrinkWrap.create(JavaArchive.class, "camel-direct-vm-spring-tests.jar")
.addAsResource("directvm/direct-vm-a-camel-context.xml", "direct-vm-a-camel-context.xml")
.addAsResource("directvm/direct-vm-b-camel-context.xml", "direct-vm-b-camel-context.xml");
}

@Test
public void testSpringDirectVMComponent() throws Exception {
CamelContext camelctxA = contextRegistry.getCamelContext("direct-vm-context-a");
Assert.assertEquals(ServiceStatus.Started, camelctxA.getStatus());

CamelContext camelctxB = contextRegistry.getCamelContext("direct-vm-context-b");
Assert.assertEquals(ServiceStatus.Started, camelctxB.getStatus());

MockEndpoint mockEndpoint = camelctxB.getEndpoint("mock:result", MockEndpoint.class);
mockEndpoint.expectedBodiesReceived("Hello Kermit");

ProducerTemplate template = camelctxA.createProducerTemplate();
template.sendBody("direct:start", "Kermit");

mockEndpoint.assertIsSatisfied();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
#%L
Wildfly Camel :: Testsuite
%%
Copyright (C) 2013 - 2017 RedHat
%%
Licensed 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.
#L%
-->
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">

<camelContext id="direct-vm-context-a" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="direct:start"/>
<to uri="direct-vm:hello"/>
</route>
</camelContext>

</beans>
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!--
#%L
Wildfly Camel :: Testsuite
%%
Copyright (C) 2013 - 2017 RedHat
%%
Licensed 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.
#L%
-->
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">

<camelContext id="direct-vm-context-b" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="direct-vm:hello"/>
<transform>
<simple>Hello ${body}</simple>
</transform>
<to uri="mock:result"/>
</route>
</camelContext>

</beans>

0 comments on commit 7db7542

Please sign in to comment.