by Renato Athaydes
- 3rd of August 2014 - Release of version 1.2! This release includes full support for @Unroll, amongst other small improvements.
- 3rd of July 2014 - After a long delay, I have finally published the 1.1 release on a public repo, thanks to @JayStGelais
contribution. So now
spock-reports
is available on Bintray's JCenter! - 14th of September 2013 - Release of version 1.1 with some minor bug fixes and improvements in the information shown in reports.
Please check the release notes in the file
releases/Release_Notes.txt
. - Today, the 6th of August 2013, I am proud to release version 1.0 of this project! I have made sure to make it as stable
as possible so that you can start reading proper reports for your Spock specifications without worries.
You can find the jar in the
releases
directory! Download it, place it in your classpath and you're done! By default, the reports will be saved in the directorybuild/spock-reports
, but you can change that if you want, just check below. I hope you find this project as useful as I have (I actually developed this out of my own need for it!). - I wrote a blog post about the motivation behind this project. Please check it out!
This project is a global extension for Spock to create test (or, in Spock terms, Specifications) reports. Currently, the only available report creator generates a HTML report for each Specification, as well as a summary of all Specifications that have been run (index.html).
I am using CodePen to design the HTML feature report, which contains detailed information about each Specification run by Spock, including the examples given (Where block) and their results, if any, and the summary report, which summarizes the results of all Specification runs. Click on the links to see the reports used for testing.
If you don't like the styles, you can use your own css stylesheets (see the customization section below). I welcome feedback on how to improve the report looks!
To enable this Spock extension, you only need to declare a dependency to it (if using Maven, Ivy, Gradle etc) or, in other words, add the jar to the classpath.
In Maven:
Enable the JCenter repository:
<repository>
<id>jcenter</id>
<name>JCenter Repo</name>
<url>http://jcenter.bintray.com</url>
</repository>
Add spock-reports
to your <dependencies>
:
<dependency>
<groupId>com.athaydes</groupId>
<artifactId>spock-reports</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
In Gradle:
repositories {
jcenter()
}
dependencies {
testCompile 'com.athaydes:spock-reports:1.2'
}
If you prefer, you can just download the jar from the releases directory or JCenter (newer releases available only on JCenter).
The only dependencies of this project are on Groovy (version 2.0+) and Spock, but if you're using Spock (version 0.7-groovy-2.0+), you'll already have both!
You can provide custom configuration in a properties file located at the following location (relative to the classpath):
META-INF/services/com.athaydes.spockframework.report.IReportCreator.properties
Here's the default properties file:
# Name of the implementation class of the report creator
# Currently supported classes are:
# 1. com.athaydes.spockframework.report.internal.HtmlReportCreator
com.athaydes.spockframework.report.IReportCreator=com.athaydes.spockframework.report.internal.HtmlReportCreator
# Set properties of the report creator
# For the HtmlReportCreator, the only settable properties
# are the location of the css files to be used - relative to the classpath
com.athaydes.spockframework.report.internal.HtmlReportCreator.featureReportCss=spock-feature-report.css
com.athaydes.spockframework.report.internal.HtmlReportCreator.summaryReportCss=spock-summary-report.css
# Output directory (where the spock reports will be created) - relative to working directory
com.athaydes.spockframework.report.outputDir=build/spock-reports
# If set to true, hides blocks which do not have any description
com.athaydes.spockframework.report.hideEmptyBlocks=false
Notice that the location of the css file is relative to the classpath! That means that you have the freedom to place the css files in a separate jar, for example.
The output directory, on the other hand, is relative to the working directory.
For Maven projects which use the defaults, you might want to change it to target/spock-reports
.