To Test a Route with JUnit

This tutorial walks you through the process of using the New Camel Test Case wizard to create a test case for your route and using it test the route.

Overview

The New Camel JUnit Test Case wizard generates a boilerplate JUnit test case. This means that when you create or modify a route (for example, adding more processors to it), you'll need to modify the generated test case to add expectations and assertions specific to the new route you've created, so the test is valid for the new route.

Goals

In this tutorial you will:

  • create the /src/test/ folder to store the JUnit test case

  • generate the JUnit test case for the CBRroute project

  • modify the newly generated JUnit test case

  • modify the CBRroute project's pom.xml file

  • run the CBRroute with the new JUnit test case

  • observe the output

Prerequisites

To complete this tutorial you will need the CBRroute project you used in To Trace a Message Through a Route

[Note]Note

If you skipped any tutorial after To Create a New Route, you can use the prefabricated blueprintContext6.xml file to work through this tutorial (for details, see Using the Fuse Tooling Resource Files).

Delete any trace-generated messages from the CBRroute project's /src/data/ directory and /target/messages/ subdirectories in Project Explorer. Trace-generated messages begin with the ID- prefix. For example, Figure 5, “Trace-generated messages” shows six trace-generated messages:

Figure 5. Trace-generated messages

Trace-generated messages

Select all trace-generated messages in batch, right-click to open the context menu, and select Delete.

Creating the src/test folder

Before you create a JUnit test case for the CBRroute project, you need to create a folder for it and add it to the build path:

  1. In Project Explorer, right-click the CBRroute project's root to open the context menu, and then select New > Folder.

  2. In the project tree pane, expand the CBRroute node and select the src folder.

    Make sure CBRroute/src appears in the Enter or select the parent folder field.

  3. In Folder name, enter /test/java:

  4. Click Finish.

    In Project Explorer, the new /test/java folder appears under the src folder:

  5. In Project Explorer, right-click the /src/test/java folder to open the context menu, and then select Build Path > Use as Source Folder.

    The /src/test/java folder is now included in the build path:

Creating the JUnit test case

To create a JUnit test case for the CBRroute project:

  1. In Project Explorer, select src/test/java.

  2. Right-click it to open the context menu, and then select New > Camel Test Case:

  3. In the Camel JUnit Test Case wizard, make sure the Source folder field contains CBRroute/src/test/java.

    [Note]Note

    If needed, you can click browse button to find the proper folder.

  4. In the Package field, enter tutorial.cbr.route. This is the package that will include the new test case.

  5. Click Browse next to the Camel XML file under test field to open a file explorer configured to screen for XML files, and then select the CBRroute project's blueprint.xml file:

  6. Click OK.

    [Note]Note

    The Name field defaults to BlueprintXmlTest.

  7. Click Next to open the Test Endpoints page:

  8. By default, all endpoints are selected and will be included in the test case. For this tutorial, remove the direct:OrderFulfillment endpoint from both the Inputs and Outputs lists.

    [Note]Note

    You can select or deselect all endpoints by clicking the Select All or Deselect All button, or you can select and deselect individual endpoints by clicking the check box next to each.

  9. Click Finish.

    [Note]Note

    If prompted, add JUnit to the build path.

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

package tutorial.cbr.route;

import org.apache.camel.EndpointInject;
import org.apache.camel.Produce;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.blueprint.CamelBlueprintTestSupport;
import org.junit.Test;

public class BlueprintXmlTest extends CamelBlueprintTestSupport {

	// TODO Create test message bodies that work for the route(s) being tested
	// Expected message bodies
	
	protected object[] expectBodies = {
        "<something id='1'>expectedBody1</something>", 
        "<something id='2'>expectedBody2</something>";
	
	// Templates to send to input endpoints
	@Produce(uri = "file:src/data?noop=true")
	protected ProducerTemplate inputEndpoint;
	@Produce(uri = "direct:OrderFulfillment")
	protected ProducerTemplate input2Endpoint;
	
	// Mock endpoints used to consume messages from the output endpoints and 
	// then perform assertions
	@EndpointInject(uri = "mock:output")
	protected MockEndpoint outputEndpoint;
	@EndpointInject(uri = "mock:output2")
	protected MockEndpoint output2Endpoint;
	@EndpointInject(uri = "mock:output3")
	protected MockEndpoint output3Endpoint;
	@EndpointInject(uri = "mock:output4")
	protected MockEndpoint output4Endpoint;
	@EndpointInject(uri = "mock:output5")
	protected MockEndpoint output5Endpoint;
	@EndpointInject(uri = "mock:output6")
	protected MockEndpoint output6Endpoint;

	@Test
	public void testCamelRoute() throws Exception {
		// Create routes from the output endpoints to our mock endpoints so we can 
		// assert expectations
		context.addRoutes(new RouteBuilder() {
			@Override
			public void configure() throws Exception {
				from("file:target/messages/invalidOrders").to(outputEndpoint);
				from("file:target/messages/GreatBritain").to(output3Endpoint);
				from("file:target/messages/Germany").to(output4Endpoint);
				from("file:target/messages/USA").to(output2Endpoint);
				from("file:target/messages/France").to(output5Endpoint);
			}
		});

		// Define some expectations

		// TODO Ensure expectations make sense for the route(s) we're testing
		outputEndpoint.expectedBodiesReceivedInAnyOrder(expectedBodies);

		// Send some messages to input endpoints
		for (Object expectedBody : expectedBodies) {
			inputEndpoint.sendBody(expectedBody);
		}

		// Validate our expectations
		assertMockEndpointsSatisfied();
	}

	@Override
	protected String getBlueprintDescriptor() {
		return "OSGI-INF/blueprint/blueprint.xml";
	}

}

This generated JUnit test case is insufficient for the CBRroute project, and it will fail to run successfully. You need to modify it and the project's pom.xml, as described in Modifying the BlueprintXmlTest file and Modifying the pom.xml file.

Modifying the BlueprintXmlTest file

You need to modify the BlueprintXmlTest.java file to:

  • import several classes that support required file functions

  • create variables for holding the content of the various source .xml files

  • read the content of the source .xml files

  • define appropriate expectations

  1. In Project Explorer, expand the CBRroute project to expose the BlueprintXmlTest.java file:

  2. Double-click BlueprintXmlTest.java to open the file in the tooling's Java editor.

  3. In the Java editor, click the expand button next to import org.apache.camel.EndpointInject; to expand the list.

  4. Add the two lines shown here:

  5. Scroll down to the lines that follow directly after // Expected message bodies.

  6. Replace those lines—protected Object[] expectedBodies={ ...... expectedBody2</something>"};— with the protected String body#; lines shown here:

  7. Scroll down to the line public void testCamelRoute() throws Exception {, and insert directly after it the lines body# = FileUtils.readFileToString(new File("src/data/message#.xml")); shown here:

  8. Scroll down to the lines that follow directly after // TODO Ensure expectations make sense for the route(s) we're testing.

  9. Replace the block of code that begins with output4Endpoint.expectedBodiesReceivedInAnyOrder(expectedBodies); and ends with ...inputEndpoint.sendBody(expectedBody); } with the lines shown here:

    Leave the remaining code as is.

  10. Save the file.

  11. Check that your updated BlueprintXmlTest.java file has the required modifications. It should look something like this:

    package tutorial.cbr.route;
    
    import org.apache.camel.EndpointInject;
    import org.apache.camel.Produce;
    import org.apache.camel.ProducerTemplate;
    import org.apache.camel.builder.RouteBuilder;
    import org.apache.camel.component.mock.MockEndpoint;
    import org.apache.camel.test.blueprint.CamelBlueprintTestSupport;
    import org.apache.commons.io.FileUtils;
    import org.junit.Test;
    
    import java.io.File;
    
    public class BlueprintXmlTest extends CamelBlueprintTestSupport {
    
    	// TODO Create test message bodies that work for the route(s) being tested
    	// Expected message bodies
    	
    	// To assert that everything works as it should, you must read 
    	// the content of the created xml files
    	protected String body1;
    	protected String body2;
    	protected String body3;
    	protected String body4;
    	protected String body5;
    	protected String body6;
    	
    	// Templates to send to input endpoints
    	@Produce(uri = "file:src/data?noop=true")
    	protected ProducerTemplate inputEndpoint;
    	// Mock endpoints used to consume messages from the output endpoints 
    	// and then perform assertions
    	@EndpointInject(uri = "mock:output")
    	protected MockEndpoint outputEndpoint;
    	@EndpointInject(uri = "mock:output2")
    	protected MockEndpoint output2Endpoint;
    	@EndpointInject(uri = "mock:output3")
    	protected MockEndpoint output3Endpoint;
    	@EndpointInject(uri = "mock:output4")
    	protected MockEndpoint output4Endpoint;
    	@EndpointInject(uri = "mock:output5")
    	protected MockEndpoint output5Endpoint;
    
    	@Test
    	public void testCamelRoute() throws Exception {
    		// Easy way of reading content of xml files to String object, but you must 
    		// add a dependency to the commons-io project to the CBRroute pom.xml file
    		body1 = FileUtils.readFileToString(new File("src/data/message1.xml"));
    		body3 = FileUtils.readFileToString(new File("src/data/message3.xml"));
    		body5 = FileUtils.readFileToString(new File("src/data/message5.xml"));
    		body6 = FileUtils.readFileToString(new File("src/data/message6.xml"));
    		
    		// Invalid Orders
    		body2 = FileUtils.readFileToString(new File("src/data/message2.xml"));		
    		body4 = FileUtils.readFileToString(new File("src/data/message4.xml"));		
    		
    		context.addRoutes(new RouteBuilder() {
    			@Override
    			public void configure() throws Exception {
    				from("file:target/messages/invalidOrders").to(outputEndpoint);
    				from("file:target/messages/GreatBritain").to(output3Endpoint);
    				from("file:target/messages/Germany").to(output4Endpoint);
    				from("file:target/messages/USA").to(output2Endpoint);
    				from("file:target/messages/France").to(output5Endpoint);
    			}
    		});
    
    		// Define some expectations
    
    		// TODO Ensure expectations make sense for the route(s) we're testing
    		// Invalid Orders
    		outputEndpoint.expectedBodiesReceived(body2, body4);
    		
    		//For each country, one order
    		output2Endpoint.expectedBodiesReceived(body1);
    		output3Endpoint.expectedBodiesReceived(body3);
    		output4Endpoint.expectedBodiesReceived(body6);
    		output5Endpoint.expectedBodiesReceived(body5);
    
    		// Send some messages to input endpoints
    
    		// Validate our expectations
    		assertMockEndpointsSatisfied();
    	}
    
    	@Override
    	protected String getBlueprintDescriptor() {
    		return "OSGI-INF/blueprint/blueprint.xml";
    	}
    
    }

Modifying the pom.xml file

You need to add a dependency on the commons-io project to the CBRroute project's pom.xml file:

  1. In Project Explorer, double-click pom.xml, located below the target folder, to open the file in the tooling's XML editor.

  2. Click the pom.xml tab at the bottom of the page to open the file for editing.

  3. Add these lines to the end of the <dependencies> section:

    <dependency>
           <groupId>commons-io</groupId>
           <artifactId>commons-io</artifactId>
           <version>2.4</version>
           <scope>test</scope>
    </dependency>
  4. Save the file.

    The contents of the entire pom.xml file should look like this:

    <?xml version="1.0" encoding="UTF-8"?>
    
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
      http://maven.apache.org/xsd/maven-4.0.0.xsd" 
      xmlns="http://maven.apache.org/POM/4.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      
      <modelVersion>4.0.0</modelVersion>
      <groupId>tutorial</groupId>
      <artifactId>cbr-route</artifactId>
      <version>1.0.0-SNAPSHOT</version>
      <packaging>bundle</packaging>
      <name>A Camel Blueprint Route</name>
      <description>Empty Camel Blueprint Example</description>
      
      <licenses>
        <license>
          <name>Apache License, Version 2.0</name>
          <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
      
      <properties>
        <camel.version>2.17.0.redhat-630077</camel.version>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <version.maven-bundle-plugin>2.3.7<</version.maven-bundle-plugin>
        <jboss.fuse.bom.version>6.3.0.redhat-077</jboss.fuse.bom.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
      
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.jboss.fuse.bom</groupId>
            <artifactId>jboss-fuse-parent</artifactId>
            <version>${jboss.fuse.bom.version}</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
        </dependencies>
      </dependencyManagement>
      
      <dependencies>
        <dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-core</artifactId>
          <version>2.17.0.redhat-630077</version>
        </dependency>
        <dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-blueprint</artifactId>
          <version>2.17.0.redhat-630077</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
        </dependency>
        <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.camel</groupId>
          <artifactId>camel-test-blueprint</artifactId>
          <version>2.17.0.redhat-630077</version>
          <scope>test</scope>
        </dependency>
        <dependency>
        	<groupId>commons-io</groupId>
        	<artifactId>commons-io</artifactId>
        	<version>2.4</version>
        	<scope>test</scope>
        </dependency>
      </dependencies>
      
      <repositories>
        <repository>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>fuse-public-repository</id>
          <name>FuseSource Community Release Repository</name>
          <url>https://maven.repository.redhat.com/ga</url>
        </repository>
        <repository>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>red-hat-ga-repository</id>
          <name>Red Hat GA Repository</name>
          <url>https://maven.repository.redhat.com/ga</url>
        </repository>
        <repository>
          <id>camelStaging</id>
          <url>https://repository.jboss.org/nexus/content/repositories/fusesource_releases_external-2384</url>
        </repository>
      </repositories>
      
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>fuse-public-repository</id>
          <name>FuseSource Community Release Repository</name>
          <url>https://maven.repository.redhat.com/ga</url>
        </pluginRepository>
        <pluginRepository>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>red-hat-ga-repository</id>
          <name>Red Hat GA Repository</name>
          <url>https://maven.repository.redhat.com/ga<url>
        </pluginRepository>
        <pluginRepository>
          <id>camelStaging</id>
          <url>https://repository.jboss.org/nexus/content/repositories/fusesource_releases_external-2384</url>
        </pluginRepository>
      </pluginRepositories>
      
      <build>
        <defaultGoal>install</defaultGoal>
        <plugins>
          <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>${version.maven-bundle-plugin}</version>
            <extensions>true</extensions>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
              <source>1.8</source>
              <target>1.8</target>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <version>3.0.1</version>
            <configuration>
              <encoding>UTF-8</encoding>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.camel</groupId>
            <artifactId>camel-maven-plugin</artifactId>
            <version>2.17.0.redhat-630077</version>
            <configuration>
              <useBlueprint>true</useBlueprint>
            </configuration>
          </plugin>
        </plugins>
      </build>
      
    </project>

Running the JUnit test

To run the test:

  1. Switch to JBoss perspective to free up more workspace.

  2. Select the project root, CBRroute, in the Project Explorer.

  3. Open the context menu.

  4. Select Run As > JUnit Test.

    [Note]Note

    By default, JUnit view opens in the sidebar. (To provide a better view, drag it to the bottom, right panel that displays the Console, Servers, and Properties tabs.)

  5. If the test runs successfully, you'll see something like this:

    Figure 6. Successful JUnit run

    JUnit success

    If the test fails, you'll see something like this:

    Figure 7. Failed JUnit run

    JUnit failure

    [Note]Note

    JUnit will fail if your execution environment is not set to Java SE 8 or 7. The message bar at the top of the JUnit tab will display an error message indicating that it cannot find the correct SDK.

    To resolve the issue, open the project's context menu, and select Run As > Run Configurations > JRE tab . Click the Environments button next to the Execution environment field to locate and select a Java SE 8 or 7 environment.

  6. Examine the output and take action to resolve any test failures.

    To see more of the errors displayed in the JUnit panel, click Maximize button on the panel's menu bar to maximize the view.

    Before you run the JUnit test case again, delete any JUnit-generated test messages from the CBRroute project's /src/data folder in Project Explorer (see Figure 5, “Trace-generated messages”).

Further reading

To learn more about JUnit testing: