geb-spock-reports is a library to integrate Geb screenshots into spock-reports.
Add jcenter()
to the repositories in your build.gradle
.
repositories {
jcenter()
}
Add dependencies.
dependencies {
testCompile 'com.aoe:geb-spock-reports:0.1.2'
// required spock libraries
testCompile "org.spockframework:spock-core:1.1-groovy-2.4-rc-2"
testCompile ("com.athaydes:spock-reports:1.3.1") { transitive = false }
// required geb libraries
testCompile "org.gebish:geb-spock:1.1.1"
// you may also need selenium support
testCompile "org.seleniumhq.selenium:selenium-firefox-driver:2.52.0"
testCompile "org.seleniumhq.selenium:selenium-support:2.52.0"
// recommended for logging
testCompile 'org.slf4j:slf4j-api:1.7.13'
testCompile 'org.slf4j:slf4j-simple:1.7.13'
}
Create a GebConfig.groovy
in src/test/resources
.
See Book of Geb for further configuration.
import com.aoe.gebspockreports.GebReportingListener
reportingListener = new GebReportingListener()
reportsDir = 'build/geb-spock-reports'
Create a properties file named
src/test/resources/META-INF/services/com.athaydes.spockframework.report.IReportCreator.properties
The following properties are required.
# output directory relative to working directory
com.athaydes.spockframework.report.outputDir=build/geb-spock-reports
# let's use the TemplateReportCreator to utilize our custom template
com.athaydes.spockframework.report.IReportCreator=com.athaydes.spockframework.report.template.TemplateReportCreator
# specific properties to the TemplateReportCreator
com.athaydes.spockframework.report.template.TemplateReportCreator.specTemplateFile=/templates/spec-template.html
com.athaydes.spockframework.report.template.TemplateReportCreator.reportFileExtension=html
com.athaydes.spockframework.report.template.TemplateReportCreator.summaryTemplateFile=/templates/summary-template.html
com.athaydes.spockframework.report.template.TemplateReportCreator.summaryFileName=index.html
See the spock-reports documentation for further configuration.
Important: Make sure that the reportDir
in GebConfig.groovy
matches the outputDir
in the .properties
file!
This project is licensed under the Apache Software License, Version 2.0.
See LICENSE
for more information.
Copyright 2017 Tilman Ginzel, AOE GmbH
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.