template.macros.scenario.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluecumber-report-plugin
Show all versions of cluecumber-report-plugin
Plugin for generating clear Cucumber BDD test result reports.
<#--
Copyright 2019 trivago N.V.
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.
-->
<#import "../macros/common.ftl" as common>
<#macro table status numberOfScenarios>
<#assign skippedRequested = status == "skipped">
<#assign failedRequested = status == "failed">
<#assign passedRequested = status == "passed">
<#assign allRequested = status == "all">
<#if
(skippedRequested && hasSkippedScenarios()) ||
(failedRequested && hasFailedScenarios()) ||
(passedRequested && hasPassedScenarios()) ||
allRequested
>
<#switch status>
<#case "skipped">
${numberOfScenarios}
<@common.pluralize word="skipped Scenario" unitCount=numberOfScenarios/>
<@common.status status="skipped"/>
<#break>
<#case "failed">
${numberOfScenarios}
<@common.pluralize word="failed Scenario" unitCount=numberOfScenarios/>
<@common.status status="failed"/>
<#break>
<#case "passed">
${numberOfScenarios}
<@common.pluralize word="passed Scenario" unitCount=numberOfScenarios/>
<@common.status status="passed"/>
<#break>
<#case "all">
Scenario Sequence (${numberOfScenarios})
<#break>
#switch>
<#if allRequested>
#
#if>
Feature
Scenario
Started
Duration
<#if allRequested>
Status
#if>
<#list reports as report>
<#assign tooltipText = "">
<#if report.description?has_content>
<#assign tooltipText = "${report.description} | ">
#if>
<#assign tooltipText = "${tooltipText}${report.uri}">
<#list report.elements as element>
<#if (skippedRequested && element.skipped) || (failedRequested && element.failed) || (passedRequested && element.passed) || allRequested>
<#if allRequested>
${element.scenarioIndex}
#if>
${report.name?html}
${element.name?html}
<#if element.failed>
${element.firstExceptionClass}
#if>
${element.startDateString}
${element.startTimeString}
${element.returnTotalDurationString()}
<#if allRequested>
<@common.status status=element.status.statusString/>
#if>
#if>
#list>
#list>
#if>
#macro>
<#macro attachments step>
<#if step.embeddings??>
<#list step.embeddings as attachment>
<#assign attachmentID = attachment.hashCode()?string["0"]>
Toggle |
<#if attachment.name != "">
${attachment.name} (${attachment.mimeType} attachment)
<#else>
${attachment.mimeType} attachment
#if>
#list>
#if>
#macro>
<#macro errorMessage step>
<#if step.result.hasErrorMessage()>
${step.result.returnErrorMessageWithClickableLinks()}
#if>
#macro>
<#macro output step>
<#if step.hasOutputs()>
${step.returnEscapedOutputs()?join("
")}
#if>
#macro>
<#macro stepHooks hooks>
<#list hooks as hook>
<#if hook.hasContent()>
${hook.glueMethodName}
${hook.result.returnDurationString()}
<@common.status status=hook.consolidatedStatusString/>
<@scenario.errorMessage step=hook/>
<@scenario.output step=hook/>
<@scenario.attachments step=hook/>
#if>
#list>
#macro>