-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves #2312] Add test coverage for direct-vm endpoints
- Loading branch information
1 parent
509ff9f
commit 7db7542
Showing
4 changed files
with
214 additions
and
0 deletions.
There are no files selected for viewing
80 changes: 80 additions & 0 deletions
80
...andalone/basic/src/test/java/org/wildfly/camel/test/directvm/DirectVMIntegrationTest.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,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(); | ||
} | ||
} | ||
} |
67 changes: 67 additions & 0 deletions
67
...ne/basic/src/test/java/org/wildfly/camel/test/directvm/DirectVMSpringIntegrationTest.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,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(); | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
itests/standalone/basic/src/test/resources/directvm/direct-vm-a-camel-context.xml
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,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> |
35 changes: 35 additions & 0 deletions
35
itests/standalone/basic/src/test/resources/directvm/direct-vm-b-camel-context.xml
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,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> |