Creating a new Apache Camel JUnit test case

Overview

A common way of testing routes is to use JUnit. Fuse IDE includes a wizard that simplifies creating a JUnit test case for your routes. The wizard generates the starting point code and configuration to run the test.

Procedure

To create a new JUnit test case for your route:

  1. In Package Explorer, select the camel-context.xml file in your routing project.

  2. Right-click it to open the context menu, and then select New > Camel Test Case to open the New Camel JUnit Test Case wizard, as shown in Figure 7, “New Camel JUnit Test Case wizard”.

    Figure 7. New Camel JUnit Test Case wizard

    Entry page of the New Camel JUnit Test Case wizard

    [Tip]Tip

    Alternatively, you can open the wizard by selecting File > New > Camel Test Case from the menu bar.

  3. In Source folder, accept the default location of the source code for the test case, or enter another location.

    [Tip]Tip

    You can click Browse button to search for a location.

  4. In Package, accept the default package name for the generated test code, or enter another package name.

    [Tip]Tip

    You can click Browse button to search for a package.

  5. In Camel XML file under test, accept the default pathname of the routing context file that contains the route you want to test, or enter another pathname.

    [Tip]Tip

    You can click Browse button to search for a context file.

  6. In Name, accept the default name for the generated test class, or enter another name.

  7. Select the method stubs you want to include in the generated code.

  8. If you want to include the default generated comments in the generated code, check the Generate comments box.

  9. Click Next button to open the Test Endpoints page, shown in Figure 8, “New Camel JUnit Test Case page”.

    Figure 8. New Camel JUnit Test Case page

    Example Test Endpoints page

  10. Under Available endpoints, select the endpoints you want to test. Click the checkbox next to any selected endpoint to deselect it.

  11. Click Finish button.

    [Tip]Tip

    If prompted, add JUnit to the build path.

The artifacts for the test are added to your project and appear in Package Explorer under src/test/java. The class implementing the test case opens in the Java editor.

Related topics

Camel JUnit Test Case
Test Endpoints
"Testing a Route with JUnit"