com.disney.studio.cucumber.slices.plugin:cucumber-slices-maven-plugin

The Cucumber Slices Plugin is designed to parse Cucumber feature files with 1 or more scenarios into many feature files, each with 1 scenario per feature file. Each parsed feature file is associated with a Cucumber runner file that is generated at runtime. The Cucumber runner files can be executed in parallel using Maven's Surefire or Failsafe Plugin.

License

License

Categories

Categories

Maven Build Tools Cucumber Application Testing & Monitoring
GroupId

GroupId

com.disney.studio.cucumber.slices.plugin
ArtifactId

ArtifactId

cucumber-slices-maven-plugin
Last Version

Last Version

1.8.2
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

com.disney.studio.cucumber.slices.plugin:cucumber-slices-maven-plugin
The Cucumber Slices Plugin is designed to parse Cucumber feature files with 1 or more scenarios into many feature files, each with 1 scenario per feature file. Each parsed feature file is associated with a Cucumber runner file that is generated at runtime. The Cucumber runner files can be executed in parallel using Maven's Surefire or Failsafe Plugin.
Project URL

Project URL

https://github.com/DisneyStudios/cucumber-slices-maven-plugin
Source Code Management

Source Code Management

https://github.com/DisneyStudios/cucumber-slices-maven-plugin/tree/master

Download cucumber-slices-maven-plugin

How to add to project

<plugin>
    <groupId>com.disney.studio.cucumber.slices.plugin</groupId>
    <artifactId>cucumber-slices-maven-plugin</artifactId>
    <version>1.8.2</version>
</plugin>

Dependencies

compile (22)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 2.0
org.codehaus.plexus : plexus-utils jar 3.0.16
info.cukes : cucumber-groovy jar 1.2.4
info.cukes : cucumber-junit jar 1.2.4
org.codehaus.groovy : groovy jar 2.5.14
org.codehaus.groovy : groovy-bsf jar 2.5.14
org.codehaus.groovy : groovy-cli-picocli jar 2.5.14
org.codehaus.groovy : groovy-cli-commons jar 2.5.14
org.codehaus.groovy : groovy-console jar 2.5.14
org.codehaus.groovy : groovy-datetime jar 2.5.14
org.codehaus.groovy : groovy-docgenerator jar 2.5.14
org.codehaus.groovy : groovy-groovydoc jar 2.5.14
org.codehaus.groovy : groovy-groovysh jar 2.5.14
org.codehaus.groovy : groovy-jmx jar 2.5.14
org.codehaus.groovy : groovy-json jar 2.5.14
org.codehaus.groovy : groovy-jsr223 jar 2.5.14
org.codehaus.groovy : groovy-macro jar 2.5.14
org.codehaus.groovy : groovy-nio jar 2.5.14
org.codehaus.groovy : groovy-sql jar 2.5.14
org.codehaus.groovy : groovy-xml jar 2.5.14
org.slf4j : slf4j-api jar 1.7.2
org.slf4j : slf4j-log4j12 jar 1.7.2

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.2

test (1)

Group / Artifact Type Version
junit : junit jar 4.13.1

Project Modules

There are no modules declared in this project.

cucumber-slices-maven-plugin

The Cucumber Slices Plugin is designed to parse Cucumber feature files with 1 or more scenarios into many feature files, each with 1 scenario per feature file. Each of the parsed feature files is associated with a Cucumber runner that is automatically generated at runtime.

The plugin can be used in combination with either the Maven Surefire Plugin or the Maven Failsafe Plugin to run each of the generated feature files in parallel. Further information on how to configure these plugins to run Cucumber feature files in parallel is discussed in the Running Scenarios In Parallel section.

Installation

Simply add the following to the plugins section of your POM file

        <plugins>
            <plugin>
                <groupId>com.disney.studio.cucumber.slices.plugin</groupId>
                <artifactId>cucumber-slices-maven-plugin</artifactId>
                <version>[include latest version here]</version>
                <executions>
                    <execution>
                        <phase>generate-test-resources</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <cucumberTags>
                                <param>@regression</param>
                            </cucumberTags>
                            <templatesDirectory>src/test/resources/templates</templatesDirectory>
                            <parallelRunnersDirectory>src/test/groovy/parallel_runners</parallelRunnersDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>

Configuration Settings

Cucumber Slices supports the following <configuration> settings

parallelRunnersDirectory: A directory that shall contain the Cucumber runner class files. The files contained within this directory are created at runtime. The directory MUST exist somewhere on the test classpath because the files within the directory need to be compiled during the test-compile phase.

  • default value: NONE
  • property: parallelRunnersDirectory
  • required: YES

templatesDirectory: A directory whose contents contain references to templates used within the plugin. This directory MUST contain the file labeled cuke_runner_template.txt. An example of the template file (Groovy-specific) is contained in the example_template directory within the root of this repository.

  • default value: NONE
  • property: templatesDirectory
  • required: YES

featuresDirectory: A directory containing the Cucumber feature files. The directory MUST be in the root of the runtime classpath

  • default value: src/test/resources/features
  • property: featuresDirectory
  • required: YES

cucumberTags: A list of tags used by the plugin to filter which scenarios shall be read

  • default value: NONE
  • property: cucumberTags
  • required: NO

cucumberRunnerExtension: The file extension which defines the Cucumber runner class generated at runtime. Accepted values are groovy or java.

  • default value: groovy
  • property: cucumberRunnerExtension
  • required: NO

The property values listed in each of the configuration settings can be used in place of the POM file settings. For instance, you may execute the following Maven command

mvn com.disney.studio.cucumber.slices.plugin:cucumber-slices-maven-plugin:generate generate-test-resources -DparallelRunnersDirectory="src/test/groovy/parallel_runners" -DtemplatesDirectory="src/test/resources/templates" -DcucumberTags="@tagname"

Setup

After installing the plugin within your POM file,

  1. Download a copy of the cuke_runner_template.txt from this repositories example_template directory.
  2. Place a copy of the downloaded file within the templatesDirectory you've defined in your POM file. It should be noted, that the example cuke_runner_template.txt file is based on Groovy code.
  3. Open the cuke_runner_template.txt file you copied to the templates directory in Step 2, and change the glue statement to point to where your Cucumber step files are located

DO NOT remove or change lines associated with the tags labeled <feature file> or <runner index>. These will be used internally at runtime.

Groovy Example of cuke_runner_template.txt

import cucumber.api.CucumberOptions
import cucumber.api.junit.Cucumber
import org.junit.runner.RunWith

@RunWith(Cucumber.class)
@CucumberOptions (
        features = ["classpath:parallel_features/<feature file>"]
        , monochrome = true
        , format = ["pretty", "json:target/cucumber-report/cucumber<runner index>.json", "rerun:rerun.txt", "junit:target/cucumber-report/cucumber<runner index>.xml"]
        , glue = ["src/test/groovy/path/to/your/steps"]
        , tags = ["~@manual"]
)
class ParallelRunner<runner index> {
}

Java Example of cuke_runner_template.txt

package [your package name here];

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(
    features={"classpath:parallel_features/<feature file>"}
    , monochrome = true
    , format = {"pretty", "json:target/cucumber-report/cucumber<runner index>.json", "rerun:rerun.txt", "junit:target/cucumber-report/cucumber<runner index>.xml"}
    , glue = {"com.mycompany.cucumber.stepdefinitions"} // package name where the step definition classes are kept
    , tags = {"~@manual"}
    )
public class ParallelRunner<runner index> {
}

The following is a breakdown of the tags noted in the template

<feature file>: this tag represents the feature file name that shall be created at runtime. Example: the-search-for-cheese-072410-64.feature. The resulting feature file name is a combination of the feature's name and the scenario's name, along with a timestamp.

<runner index>: this tag represents the value of a counter that is used to designate a unique Cucumber Runner class. Example: ParallelRunner0, ParallelRunner1, etc. There should be 1 ParallelRunner class generated for each feature file created at runtime.

Disassemble and Reassemble Process Details

The process of parsing and reassembling the feature files is outlined below:

  1. At runtime, during Maven's generate-test-resources or generate-test-sources phase, the generate goal is executed
  2. During execution,
    1. Read in all of the Cucumber feature files
    2. Parse the plain text files into JSON
    3. Extract from the JSON data structure the following elements
      1. Feature statement
      2. Background statement
      3. Scenario statement or Scenario Outline statement
      4. Given, When, and Then statements
      5. Examples statements
    4. Reassemble these statements and write the results out to a single feature file using Gherkin syntax
    5. Write a single Cucumber runner that contains a reference to the feature file created in Step iv
  3. Using Maven's Failsafe Plugin, fork JVMs
  4. Each fork looks for a Cucumber Runner class and then executes the single scenario

Although not required, using the Cucumber Slices Plugin after the test-compile lifecycle phase is NOT RECOMMENDED. The purpose behind the plugin is to generate (at runtime), Cucumber Feature files and Cucumber Runners, by reading from an existing set of feature files. In order for the plugin to work properly, it is REQUIRED that the execution phase takes place before the test-compile phase -- use either the generate-test-resources or the generate-test-sources phase.

Running Scenarios In Parallel

To execute the Cucumber scenarios in parallel, use of either the Maven Surefire or Maven Failsafe Plugin is required. Configuration is handled within the POM file. For the purposes of the example shown below, we are going to use Maven's Failsafe Plugin contained within a Maven profile -- the same settings should apply to the Surefire Plugin.

<profiles>
    <profile>
        <id>parallel</id>
        <build>
        <plugin>
            <groupId>com.disney.studio.cucumber.slices.plugin</groupId>
            <artifactId>cucumber-slices-maven-plugin</artifactId>
            <version>1.0.0-SNAPSHOT</version>
            <executions>
                <execution>
                    <phase>generate-test-resources</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>

                    <!-- 1 -->
                    <configuration>
                        <cucumberTags>
                            <param>@regression</param>
                        </cucumberTags>
                        <templatesDirectory>src/test/resources/templates</templatesDirectory>
                        <parallelRunnersDirectory>src/test/groovy/parallel_runners</parallelRunnersDirectory>
                    </configuration>

                </execution>
            </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.19.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>integration-test</goal>
                                <goal>verify</goal>
                            </goals>

                            <!-- 2 -->
                            <configuration>
                                <testFailureIgnore>true</testFailureIgnore>
                                <skipITs>false</skipITs>
                                <forkCount>3</forkCount>
                                <reuseForks>false</reuseForks>
                                <argLine>-Duser.language=en</argLine>
                                <argLine>-Xmx512m</argLine>
                                <argLine>-Xms512m</argLine>
                                <argLine>-XX:MaxPermSize=512m</argLine>
                                <argLine>-Dfile.encoding=UTF-8</argLine>
                                <argLine>-Dcucumber.options="--tags @regression"</argLine>
                                <includes>
                                    <include>**/ParallelRunner*.class</include>
                                </includes>
                            </configuration>

                        </execution>
                    </executions>
            </plugin>
        </build>
    </profile>
</profiles>

Here is a breakdown of each of the plugins <configuration> sections:

  1. As already noted, the Cucumber Slices Plugin supports configuration parameters such as <cucumberTags>, <templatesDirectory> and <parallelRunnersDirectory> -- see the Configuration Setting section for more details
  2. The Failsafe Plugin supports a number of configuration parameters. The settings to keep in mind are the following
    1. <forkCount>: the number of scenarios to run in parallel
    2. <argLine>-Dcucumber.options="--tags @regression"</argLine>: the Cucumber Options to pass off to Maven's plugin at runtime. The --tags section MUST match the tags supplied to the Cucumber Slices Plugin.
    3. <includes>: this section informs Maven's Failsafe Plugin that we would like to include classes that match the pattern defined. In our case, the pattern in the example, **/ParallelRunner*.class, would match the Cucumber Runner classes (ParallelRunner0, ParallelRunner1, ParallelRunnerN), that are generated by the Cucumber Slices Plugin during the generate-test-resources lifecycle phase.

See Failsafe's documentation, Fork Options and Parallel Test Execution, for further details about parallel testing.

Test Run Output & Reports

The output of each test run is contained within the project's target directory. This includes all of the Failsafe output as well as the output from Cucumber.

To demonstrate what the output looks like, let's assume we've used the Groovy template file contained in the Setup section above. Within this template, the format parameter is ["pretty", "json:target/cucumber-report/cucumber<runner index>.json", "rerun:rerun.txt", "junit:target/cucumber-report/cucumber<runner index>.xml"]. The Cucumber JSON files and the JUnit files are automatically written to the target/cucumber-report directory at runtime. The image below captures the test run's output

Sample Output

As shown, contained within the cucumber-report directory are each of the JSON and XML files -- one for each scenario.

IMPORTANT: The Cucumber Slices Plugin is not designed to aggregate the test output into a single report. There are other plugins that can assist in this (e.g., Masterthought's Cucumber Reporting Plugin)

FAQs

Q1. How does this plugin differ from the cucumber-jvm-parallel-plugin?

The cucumber-jvm-parallel-plugin automatically generates a Cucumber JUnit runner for each feature file found within your project. The Cucumber Slices Plugin automatically generates a Cucumber JUnit runner for each of the scenarios contained within the feature file. To better explain the difference, let's walk through an example.

Example

JVM Parallel vs Slices

Let's say we start with 2 feature files -- one with 5 scenarios and the other with 10 scenarios. The Cucumber Slices Plugin automatically generates 15 feature files (1 scenario per feature file). This leads to the possibility of setting aside 2, 3, 4 or 15 JVM forks, with each of the forked processes running one of the scenarios contained in the feature file.

On the other hand, the cucumber-jvm-parallel-plugin would run, at most, 2 JVM forks -- one for each feature file.

Q2. Can I use this plugin within Maven's test phase?

No. The plugin must be used prior to the test-compile phase. For further information see the Disassemble and Reassemble Process Details section.

Q3. How do I use this plugin with a project developed in Java?

Configure the Cucumber Slices Plugin with the cucumberRunnerExtension option.

        <plugins>
            <plugin>
                <groupId>com.disney.studio.cucumber.slices.plugin</groupId>
                <artifactId>cucumber-slices-maven-plugin</artifactId>
                <version>[include latest version here]</version>
                <executions>
                    <execution>
                        <phase>generate-test-resources</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <cucumberTags>
                                <param>@regression</param>
                            </cucumberTags>
                            <templatesDirectory>src/test/resources/templates</templatesDirectory>
                            <parallelRunnersDirectory>src/test/groovy/parallel_runners</parallelRunnersDirectory>
                            <cucumberRunnerExtension>java</cucumberRunnerExtension>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>

Also, as noted in the Setup section, remember to alter the default cuke_runner_template file to reflect your Java code.

Contributing

Before contributing code to Cucumber Slices, we ask that you sign a Contributor License Agreement (CLA). At the root of this repository you can find the two possible CLAs:

  1. USD_CLA_Corporate.pdf: please sign this one for corporate use
  2. USD_CLA_Individual.pdf: please sign this one if you're an individual contributor

Once your CLA is signed, send it to [email protected] (please make sure to include your github username) and wait for confirmation that we've received it. After that, you can submit pull requests.

Versions

Version
1.8.2
1.8.1
1.8.0
1.7.0
1.6.0
1.5.1
1.5.0
1.4.0