Camel Test
As a simple alternative to using CDI Testing, Spring Testing or Guice the camel-test module was introduced so you can perform powerful Testing of your Enterprise Integration Patterns easily.
JUnit or TestNGThe camel-test
JAR is using JUnit. There is an alternative camel-testng
JAR (from Camel 2.8) using the TestNG test framework.
Adding to your pom.xml
To get started using Camel Test you will need to add an entry to your pom.xml
:
JUnit
xmlTestNG
Available as of Camel 2.8
xmlYou might also want to add slf4j
and log4j
to ensure nice logging messages (and maybe adding a log4j.properties file into your src/test/resources
directory).
Writing your test
You firstly need to derive from the class CamelTestSupport
(org.apache.camel.test.CamelTestSupport
, org.apache.camel.test.junit4.CamelTestSupport
, or org.apache.camel.testng.CamelTestSupport
for JUnit 3.x, JUnit 4.x, and TestNG, respectively) and typically you will need to override the createRouteBuilder()
or createRouteBuilders()
method to create routes to be tested.
Here is an example.
Features Provided by CamelTestSupport
The various CamelTestSupport
classes provide a standard set of behaviors relating to the CamelContext
used to host the route(s) under test. The classes provide a number of methods that allow a test to alter the configuration of the CamelContext
used. The following table describes the available customization methods and the default behavior of tests that are built from a CamelTestSupport
class.
Method Name | Description | Default Behavior |
---|---|---|
| If the route builders returned from either | Returns
|
| If the
Its important to start the | Returns The |
| See Setup CamelContext once per class, or per every test method. | The |
| Triggers the auto-mocking of endpoints whose URIs match the provided filter. The default filter is Return See | Disabled |
| If this method returns
are invoked for each processor in the registered routes. | Disabled The methods are not invoked during the test. |
| Returns the number of seconds that Camel should wait for graceful shutdown. Useful for decreasing test times when a message is still in flight at the end of the test. | 10 seconds |
| If JMX should be disabled on the | JMX is disabled |
| Provides a hook for adding objects into the registry. Override this method to bind objects to the registry before test methods are invoked. | An empty registry is initialized |
| Camel 2.10: Allows to add/override properties when Using PropertyPlaceholder in Camel. |
|
| Camel 2.10: Allows to control if Camel should ignore missing locations for properties. |
|
| Camel 2.16: If enabled, then Camel will dump all route coverage statistics into XML files in the target/camel-route-coverage directory. These XML files contains information about "route coverage" of all the routes that was used during the unit test. This allows tooling to inspect these XML files and generate nice route coverage reports. | Disabled |
JNDI
Camel uses a Registry to allow you to configure Component or Endpoint instances or Beans used in your routes. If you are not using Spring or OSGi then JNDI is used as the default registry implementation.
So you will also need to create a jndi.properties
file in your src/test/resources
directory so that there is a default registry available to initialize the CamelContext.
Here is an example jndi.properties file
Dynamically Assigning Ports
Available as of Camel 2.7
Tests that use port numbers will fail if that port is already on use. AvailablePortFinder
provides methods for finding unused port numbers at run time.
Setup CamelContext once per class, or per every test method
Available as of Camel 2.8
The Camel Test kit will by default setup and shutdown CamelContext per every test method in your test class. So for example if you have 3 test methods, then CamelContext is started and shutdown after each test, that is 3 times.
TestNGThis feature is also supported in camel-testng
When using this the CamelContext will keep state between tests, so have that in mind. So if your unit tests start to fail for no apparent reason, it could be due this fact. So use this feature with a bit of care.
You may want to do this once, to share the CamelContext between test methods, to speedup unit testing. This requires the use of JUnit 4! In your unit test method you have to extend the org.apache.camel.test.junit4.CamelTestSupport
or the org.apache.camel.test.junit4.CamelSpringTestSupport
test class and override the isCreateCamelContextPerClass
method and return true
as shown in the following example:
See Also