Java jenkins plugin for cucumber-jvm reporting
Go to file
R. Tyler Croy a66b05c42d version bump 2013-02-19 12:07:03 -08:00
.README added png file instead of gif and added js chart examples to readme 2012-07-08 20:46:44 +01:00
src/main Updated version to match newest cucumber-report. 2012-10-08 17:05:33 -05:00
.gitignore Fixed issue #17 - no scenario or no steps now is handled ok 2012-06-15 15:17:06 +01:00
README.md moved report generation out of plugin and into separate library to allow it to be shared more easily with other projects 2012-07-08 20:45:47 +01:00
cucumber-reports.iml moved report generation out of plugin and into separate library to allow it to be shared more easily with other projects 2012-07-08 20:45:47 +01:00
pom.xml version bump 2013-02-19 12:07:03 -08:00
velocity.log Fixed issue #17 - no scenario or no steps now is handled ok 2012-06-15 15:17:06 +01:00

README.md

Publish pretty cucumber-jvm reports on Jenkins

This is a Java Jenkins plugin which publishes pretty html reports showing the results of cucumber-jvm runs. It also works for the ruby versions of cucumber - not just the cucumber-jvm. To use with regular cucumber just make sure to run cucumber like this: cucumber --format json -o cucumber.json

Background

Cucumber-JVM is a test automation tool following the principles of Behavioural Driven Design and living documentation. Specifications are written in a concise human readable form and executed in continuous integration.

This plugin allows Jenkins to publish the results as pretty html reports hosted by the Jenkins build server. In order for this plugin to work you must be using the JUnit runner and generating a json report. The plugin converts the json report into an overview html linking to separate feature file htmls with stats and results.

Install

  1. Get Jenkins.

  2. Install the [cucumber-jvm-reports-java] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/downloads) plugin.

  3. Restart Jenkins.

Read this if you need further [detailed install and configuration] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/wiki/Detailed-Configuration) instructions

Release Notes

Release notes are here

Use

You must use a Freestyle project type in jenkins.

With the cucumber-jvm-reports plugin installed in Jenkins, you simply check the "Publish cucumber results as a report" box in the publish section of the build config:

![check the publish cucumber-jvm-reports box] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/publish-box.png)

If you need more control over the plugin you can click the Advanced button for more options:

![check the publish cucumber-jvm-reports box] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/advanced-publish-box.png)

  1. Leave empty for the plugin to automagically find your json files or enter the path to the json reports relative to the workspace if for some reason the automagic doesn't work for you
  2. Leave empty unless your jenkins is installed on a different url to the default hostname:port - see the wiki for further info on this option
  3. Tick if you want Skipped steps to cause the build to fail - see further down for more info on this
  4. Tick if you want Not Implemented/Pending steps to cause the build to fail - see further down for more info on this

When a build runs that publishes cucumber-jvm results it will put a link in the sidepanel to the cucumber reports. There is a feature overview page:

![feature overview page] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/feature-overview.png)

And there are also feature specific results pages:

![feature specific page passing] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/feature-passed.png)

And useful information for failures:

![feature specific page passing] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/feature-failed.png)

If you have tags in your cucumber features you can see a tag overview:

![Tag overview] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/tag-overview.png)

And you can drill down into tag specific reports:

![Tag report] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/tag-report.png)

Advanced Configuration Options

There are 2 advanced configuration options that can affect the outcome of the build status. Click on the Advanced tab in the configuration screen:

![Advanced Configuration] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/advanced_options.png)

The first setting is Skipped steps fail the build - so if you tick this any steps that are skipped during executions will be marked as failed and will cause the build to fail:

![Skipped Fails] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/skipped_fails.png)

The second setting is Not Implemented steps fail the build - so if you tick this any steps that are not implemented will be marked as failed and will cause the build to fail:

![Not Implemented Fails] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/pending_fails.png)

If you check both skipped and not implemented fails the build then your report will look something like this:

![Not Implemented and Skipped Fails] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/pending_skipped_fails.png)

Finally if you don't check either of these options then skipped or not implemented steps will not fail the build and the report will look something like this:

![Build Passes on Skipped and Not Implemented] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/skipped_pending_no_fail.png)

There is also an option to turn off the default flash charts - if you check this then you will get javascript charts using graphael javascript charting library.

Javascript Charts on Feature Overview:

![JS Feature Overview] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/js-feature-overview.png)

Javascript Charts on Tag Overview:

![JS Feature Overview] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/raw/master/.README/js-tag-overview.png)

Make sure you have configured cucumber-jvm to run with the JUnit runner and to generate a json report: (note - you can add other formatters in if you like e.g. pretty - but only the json formatter is required for the reports to work)

package net.masterthought.example;

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

@RunWith(Cucumber.class)
@Cucumber.Options(format = {"json:target/cucumber.json"})
public class ATMTest {
}

Develop

Interested in contributing to the Jenkins cucumber-jvm-reports plugin? Great! Start [here] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java).